Skip to main content

orchestrator_instance_service_details

Creates, updates, deletes, gets or lists an orchestrator_instance_service_details resource.

Overview

Nameorchestrator_instance_service_details
TypeResource
Idazure.delegated_network.orchestrator_instance_service_details

Fields

The following fields are returned by SELECT queries:

OK. The operation was successful.

NameDatatypeDescription
idstringAn identifier that represents the resource.
namestringThe name of the resource.
identityobjectThe identity of the orchestrator
kindstringThe kind of workbook. Choices are user and shared.
locationstringLocation of the resource.
propertiesobjectProperties of the provision operation request.
tagsobjectThe resource tags.
typestringThe type of resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, resourceName, subscriptionIdGets details about the orchestrator instance.

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.

NameDatatypeDescription
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
resourceNamestringThe name of the resource. It must be a minimum of 3 characters, and a maximum of 63.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Gets details about the orchestrator instance.

SELECT
id,
name,
identity,
kind,
location,
properties,
tags,
type
FROM azure.delegated_network.orchestrator_instance_service_details
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;