experimentation_workspaces
Creates, updates, deletes, gets or lists a experimentation_workspaces
resource.
Overview
Name | experimentation_workspaces |
Type | Resource |
Id | azure_isv.split.experimentation_workspaces |
Fields
- vw_experimentation_workspaces
- experimentation_workspaces
Name | Datatype | Description |
---|---|---|
access_policy | text | field from the properties object |
data_source | text | field from the properties object |
identity | text | Managed service identity (system assigned and/or user assigned identities) |
location | text | The geo-location where the resource lives |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
sku | text | The resource model definition representing SKU |
subscriptionId | text | field from the properties object |
tags | text | Resource tags. |
workspaceName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
identity | object | Managed service identity (system assigned and/or user assigned identities) |
location | string | The geo-location where the resource lives |
properties | object | Properties of the experimentation workspace |
sku | object | The resource model definition representing SKU |
tags | object | Resource tags. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, subscriptionId, workspaceName | Get a ExperimentationWorkspace |
list_by_resource_group | SELECT | resourceGroupName, subscriptionId | List ExperimentationWorkspace resources by resource group |
list_by_subscription | SELECT | subscriptionId | List ExperimentationWorkspace resources by subscription ID |
create | INSERT | resourceGroupName, subscriptionId, workspaceName | Create a ExperimentationWorkspace |
delete | DELETE | resourceGroupName, subscriptionId, workspaceName | Delete a ExperimentationWorkspace |
update | UPDATE | resourceGroupName, subscriptionId, workspaceName | Update a ExperimentationWorkspace |
SELECT
examples
List ExperimentationWorkspace resources by subscription ID
- vw_experimentation_workspaces
- experimentation_workspaces
SELECT
access_policy,
data_source,
identity,
location,
provisioning_state,
resourceGroupName,
sku,
subscriptionId,
tags,
workspaceName
FROM azure_isv.split.vw_experimentation_workspaces
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
identity,
location,
properties,
sku,
tags
FROM azure_isv.split.experimentation_workspaces
WHERE subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new experimentation_workspaces
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure_isv.split.experimentation_workspaces (
resourceGroupName,
subscriptionId,
workspaceName,
properties,
sku,
identity,
tags,
location
)
SELECT
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ workspaceName }}',
'{{ properties }}',
'{{ sku }}',
'{{ identity }}',
'{{ tags }}',
'{{ location }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: provisioningState
value: []
- name: accessPolicy
value:
- name: applicationId
value: string
- name: defaultRole
value: []
- name: dataPlaneEndpoint
value: string
- name: dataSource
value:
- name: logAnalytics
value:
- name: resourceId
value: []
- name: storageAccountResourceId
value: []
- name: enabled
value: boolean
- name: sku
value:
- name: name
value: string
- name: tier
value: []
- name: size
value: string
- name: family
value: string
- name: capacity
value: integer
- name: identity
value:
- name: principalId
value: string
- name: tenantId
value: string
- name: type
value: []
- name: userAssignedIdentities
value: []
- name: tags
value: object
- name: location
value: string
UPDATE
example
Updates a experimentation_workspaces
resource.
/*+ update */
UPDATE azure_isv.split.experimentation_workspaces
SET
properties = '{{ properties }}',
sku = '{{ sku }}',
identity = '{{ identity }}',
tags = '{{ tags }}'
WHERE
resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';
DELETE
example
Deletes the specified experimentation_workspaces
resource.
/*+ delete */
DELETE FROM azure_isv.split.experimentation_workspaces
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';