orchestrator_instance_services
Creates, updates, deletes, gets or lists a orchestrator_instance_services
resource.
Overview
Name | orchestrator_instance_services |
Type | Resource |
Id | azure.delegated_network.orchestrator_instance_services |
Fields
Name | Datatype | Description |
---|---|---|
id | string | An identifier that represents the resource. |
name | string | The name of the resource. |
identity | object | |
kind | string | The kind of workbook. Choices are user and shared. |
location | string | Location of the resource. |
properties | object | Properties of orchestrator |
tags | object | The resource tags. |
type | string | The type of resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_resource_group | SELECT | resourceGroupName, subscriptionId | Get all the OrchestratorInstances resources in a resource group. |
list_by_subscription | SELECT | subscriptionId | Get all the orchestratorInstance resources in a subscription. |
create | INSERT | resourceGroupName, resourceName, subscriptionId | Create a orchestrator instance |
delete | DELETE | resourceGroupName, resourceName, subscriptionId | Deletes the Orchestrator Instance |
patch | UPDATE | resourceGroupName, resourceName, subscriptionId | Update Orchestrator Instance |
SELECT
examples
Get all the orchestratorInstance resources in a subscription.
SELECT
id,
name,
identity,
kind,
location,
properties,
tags,
type
FROM azure.delegated_network.orchestrator_instance_services
WHERE subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new orchestrator_instance_services
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.delegated_network.orchestrator_instance_services (
resourceGroupName,
resourceName,
subscriptionId,
location,
kind,
identity,
tags,
properties
)
SELECT
'{{ resourceGroupName }}',
'{{ resourceName }}',
'{{ subscriptionId }}',
'{{ location }}',
'{{ kind }}',
'{{ identity }}',
'{{ tags }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: id
value: string
- name: name
value: string
- name: type
value: string
- name: location
value: string
- name: kind
value: string
- name: identity
value:
- name: principalId
value: string
- name: tenantId
value: string
- name: type
value: string
- name: tags
value: object
- name: properties
value:
- name: resourceGuid
value: string
- name: provisioningState
value: string
- name: orchestratorAppId
value: string
- name: orchestratorTenantId
value: string
- name: clusterRootCA
value: string
- name: apiServerEndpoint
value: string
- name: privateLinkResourceId
value: string
- name: controllerDetails
value:
- name: id
value: string
UPDATE
example
Updates a orchestrator_instance_services
resource.
/*+ update */
UPDATE azure.delegated_network.orchestrator_instance_services
SET
tags = '{{ tags }}'
WHERE
resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
DELETE
example
Deletes the specified orchestrator_instance_services
resource.
/*+ delete */
DELETE FROM azure.delegated_network.orchestrator_instance_services
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';