-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathoutput.txt
More file actions
34 lines (28 loc) · 973 Bytes
/
output.txt
File metadata and controls
34 lines (28 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
=== Deploy catalog without update-only fields
>>> [CLI] bundle deploy
Uploading bundle files to /Workspace/Users/[USERNAME]/.bundle/[UNIQUE_NAME]/files...
Deploying resources...
Updating deployment state...
Deployment complete!
=== Assert no PATCH was called during create
>>> print_requests.py //unity-catalog/catalogs --sort
{
"method": "POST",
"path": "/api/2.1/unity-catalog/catalogs",
"body": {
"comment": "Catalog without update-only fields",
"name": "test_catalog_[UNIQUE_NAME]"
}
}
=== Assert catalog is created correctly
>>> [CLI] catalogs get test_catalog_[UNIQUE_NAME]
{
"name": "test_catalog_[UNIQUE_NAME]",
"comment": "Catalog without update-only fields"
}
>>> [CLI] bundle destroy --auto-approve
The following resources will be deleted:
delete resources.catalogs.test_catalog
All files and directories at the following location will be deleted: /Workspace/Users/[USERNAME]/.bundle/[UNIQUE_NAME]
Deleting files...
Destroy complete!