orchestrator_instance_service_details
Creates, updates, deletes, gets or lists a orchestrator_instance_service_details
resource.
Overview
Name | orchestrator_instance_service_details |
Type | Resource |
Id | azure.delegated_network.orchestrator_instance_service_details |
Fields
- vw_orchestrator_instance_service_details
- orchestrator_instance_service_details
Name | Datatype | Description |
---|---|---|
id | text | An identifier that represents the resource. |
name | text | The name of the resource. |
api_server_endpoint | text | field from the properties object |
cluster_root_ca | text | field from the properties object |
controller_details | text | field from the properties object |
identity | text | field from the properties object |
kind | text | The kind of workbook. Choices are user and shared. |
location | text | Location of the resource. |
orchestrator_app_id | text | field from the properties object |
orchestrator_tenant_id | text | field from the properties object |
private_link_resource_id | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resourceName | text | field from the properties object |
resource_guid | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | The resource tags. |
type | text | The type of resource. |
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 |
---|---|---|---|
get | SELECT | resourceGroupName, resourceName, subscriptionId | Gets details about the orchestrator instance. |
SELECT
examples
Gets details about the orchestrator instance.
- vw_orchestrator_instance_service_details
- orchestrator_instance_service_details
SELECT
id,
name,
api_server_endpoint,
cluster_root_ca,
controller_details,
identity,
kind,
location,
orchestrator_app_id,
orchestrator_tenant_id,
private_link_resource_id,
provisioning_state,
resourceGroupName,
resourceName,
resource_guid,
subscriptionId,
tags,
type
FROM azure.delegated_network.vw_orchestrator_instance_service_details
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
identity,
kind,
location,
properties,
tags,
type
FROM azure.delegated_network.orchestrator_instance_service_details
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';