experimentation_workspaces
Creates, updates, deletes, gets or lists an experimentation_workspaces
resource.
Overview
Name | experimentation_workspaces |
Type | Resource |
Id | azure_isv.split.experimentation_workspaces |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_resource_group
- list_by_subscription
Azure operation completed successfully.
Name | Datatype | Description |
---|---|---|
identity | object | The managed service identities assigned to this resource. |
location | string | The geo-location where the resource lives |
properties | object | The resource-specific properties for this resource. |
sku | object | The SKU (Stock Keeping Unit) assigned to this resource. |
tags | object | Resource tags. |
Azure operation completed successfully.
Name | Datatype | Description |
---|---|---|
identity | object | The managed service identities assigned to this resource. |
location | string | The geo-location where the resource lives |
properties | object | The resource-specific properties for this resource. |
sku | object | The SKU (Stock Keeping Unit) assigned to this resource. |
tags | object | Resource tags. |
Azure operation completed successfully.
Name | Datatype | Description |
---|---|---|
identity | object | The managed service identities assigned to this resource. |
location | string | The geo-location where the resource lives |
properties | object | The resource-specific properties for this resource. |
sku | object | The SKU (Stock Keeping Unit) assigned to this resource. |
tags | object | Resource tags. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , workspaceName | Get a ExperimentationWorkspace | |
list_by_resource_group | select | subscriptionId , resourceGroupName | List ExperimentationWorkspace resources by resource group | |
list_by_subscription | select | subscriptionId | List ExperimentationWorkspace resources by subscription ID | |
create | insert | subscriptionId , resourceGroupName , workspaceName | Create a ExperimentationWorkspace | |
update | update | subscriptionId , resourceGroupName , workspaceName | Update a ExperimentationWorkspace | |
delete | delete | subscriptionId , resourceGroupName , workspaceName | Delete a ExperimentationWorkspace |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
workspaceName | string | The name of the ExperimentationWorkspace resource |
SELECT
examples
- get
- list_by_resource_group
- list_by_subscription
Get a ExperimentationWorkspace
SELECT
identity,
location,
properties,
sku,
tags
FROM azure_isv.split.experimentation_workspaces
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
;
List ExperimentationWorkspace resources by resource group
SELECT
identity,
location,
properties,
sku,
tags
FROM azure_isv.split.experimentation_workspaces
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
;
List ExperimentationWorkspace resources by subscription ID
SELECT
identity,
location,
properties,
sku,
tags
FROM azure_isv.split.experimentation_workspaces
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;
INSERT
examples
- create
- Manifest
Create a ExperimentationWorkspace
INSERT INTO azure_isv.split.experimentation_workspaces (
data__properties,
data__sku,
data__identity,
data__tags,
data__location,
subscriptionId,
resourceGroupName,
workspaceName
)
SELECT
'{{ properties }}',
'{{ sku }}',
'{{ identity }}',
'{{ tags }}',
'{{ location }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ workspaceName }}'
RETURNING
identity,
location,
properties,
sku,
tags
;
# Description fields are for documentation purposes
- name: experimentation_workspaces
props:
- name: subscriptionId
value: string (uuid)
description: Required parameter for the experimentation_workspaces resource.
- name: resourceGroupName
value: string
description: Required parameter for the experimentation_workspaces resource.
- name: workspaceName
value: string
description: Required parameter for the experimentation_workspaces resource.
- name: properties
value: object
description: |
The resource-specific properties for this resource.
- name: sku
value: object
description: |
The SKU (Stock Keeping Unit) assigned to this resource.
- name: identity
value: object
description: |
The managed service identities assigned to this resource.
- name: tags
value: object
description: |
Resource tags.
- name: location
value: string
description: |
The geo-location where the resource lives
UPDATE
examples
- update
Update a ExperimentationWorkspace
UPDATE azure_isv.split.experimentation_workspaces
SET
data__properties = '{{ properties }}',
data__sku = '{{ sku }}',
data__identity = '{{ identity }}',
data__tags = '{{ tags }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND workspaceName = '{{ workspaceName }}' --required
RETURNING
identity,
location,
properties,
sku,
tags;
DELETE
examples
- delete
Delete a ExperimentationWorkspace
DELETE FROM azure_isv.split.experimentation_workspaces
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND workspaceName = '{{ workspaceName }}' --required
;