file_workspaces_no_subscriptions
Creates, updates, deletes, gets or lists a file_workspaces_no_subscriptions
resource.
Overview
Name | file_workspaces_no_subscriptions |
Type | Resource |
Id | azure.support.file_workspaces_no_subscriptions |
Fields
- vw_file_workspaces_no_subscriptions
- file_workspaces_no_subscriptions
Name | Datatype | Description |
---|---|---|
created_on | text | field from the properties object |
expiration_time | text | field from the properties object |
fileWorkspaceName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Describes the properties of a file workspace. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | fileWorkspaceName | Gets details for a specific file workspace. |
create | INSERT | fileWorkspaceName | Creates a new file workspace. |
SELECT
examples
Gets details for a specific file workspace.
- vw_file_workspaces_no_subscriptions
- file_workspaces_no_subscriptions
SELECT
created_on,
expiration_time,
fileWorkspaceName
FROM azure.support.vw_file_workspaces_no_subscriptions
WHERE fileWorkspaceName = '{{ fileWorkspaceName }}';
SELECT
properties
FROM azure.support.file_workspaces_no_subscriptions
WHERE fileWorkspaceName = '{{ fileWorkspaceName }}';
INSERT
example
Use the following StackQL query and manifest file to create a new file_workspaces_no_subscriptions
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.support.file_workspaces_no_subscriptions (
fileWorkspaceName
)
SELECT
'{{ fileWorkspaceName }}'
;
- name: your_resource_model_name
props: []