1. Packages
  2. Azure Native
  3. API Docs
  4. delegatednetwork
  5. OrchestratorInstanceServiceDetails
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

azure-native.delegatednetwork.OrchestratorInstanceServiceDetails

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

    Represents an instance of a orchestrator. Azure REST API version: 2021-03-15. Prior API version in Azure Native 1.x: 2021-03-15.

    Other available API versions: 2023-05-18-preview, 2023-06-27-preview.

    Example Usage

    Create orchestrator instance

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var orchestratorInstanceServiceDetails = new AzureNative.DelegatedNetwork.OrchestratorInstanceServiceDetails("orchestratorInstanceServiceDetails", new()
        {
            ApiServerEndpoint = "https://testk8s.cloudapp.net",
            ClusterRootCA = "ddsadsad344mfdsfdl",
            ControllerDetails = new AzureNative.DelegatedNetwork.Inputs.ControllerDetailsArgs
            {
                Id = "/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.DelegatedNetwork/controller/testcontroller",
            },
            Identity = new AzureNative.DelegatedNetwork.Inputs.OrchestratorIdentityArgs
            {
                Type = AzureNative.DelegatedNetwork.ResourceIdentityType.SystemAssigned,
            },
            Kind = AzureNative.DelegatedNetwork.OrchestratorKind.Kubernetes,
            Location = "West US",
            OrchestratorAppId = "546192d7-503f-477a-9cfe-4efc3ee2b6e1",
            OrchestratorTenantId = "da6192d7-503f-477a-9cfe-4efc3ee2b6c3",
            PrivateLinkResourceId = "/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.Network/privateLinkServices/plresource1",
            ResourceGroupName = "TestRG",
            ResourceName = "testk8s1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/delegatednetwork/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := delegatednetwork.NewOrchestratorInstanceServiceDetails(ctx, "orchestratorInstanceServiceDetails", &delegatednetwork.OrchestratorInstanceServiceDetailsArgs{
    			ApiServerEndpoint: pulumi.String("https://testk8s.cloudapp.net"),
    			ClusterRootCA:     pulumi.String("ddsadsad344mfdsfdl"),
    			ControllerDetails: &delegatednetwork.ControllerDetailsTypeArgs{
    				Id: pulumi.String("/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.DelegatedNetwork/controller/testcontroller"),
    			},
    			Identity: &delegatednetwork.OrchestratorIdentityArgs{
    				Type: delegatednetwork.ResourceIdentityTypeSystemAssigned,
    			},
    			Kind:                  pulumi.String(delegatednetwork.OrchestratorKindKubernetes),
    			Location:              pulumi.String("West US"),
    			OrchestratorAppId:     pulumi.String("546192d7-503f-477a-9cfe-4efc3ee2b6e1"),
    			OrchestratorTenantId:  pulumi.String("da6192d7-503f-477a-9cfe-4efc3ee2b6c3"),
    			PrivateLinkResourceId: pulumi.String("/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.Network/privateLinkServices/plresource1"),
    			ResourceGroupName:     pulumi.String("TestRG"),
    			ResourceName:          pulumi.String("testk8s1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.delegatednetwork.OrchestratorInstanceServiceDetails;
    import com.pulumi.azurenative.delegatednetwork.OrchestratorInstanceServiceDetailsArgs;
    import com.pulumi.azurenative.delegatednetwork.inputs.ControllerDetailsArgs;
    import com.pulumi.azurenative.delegatednetwork.inputs.OrchestratorIdentityArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var orchestratorInstanceServiceDetails = new OrchestratorInstanceServiceDetails("orchestratorInstanceServiceDetails", OrchestratorInstanceServiceDetailsArgs.builder()        
                .apiServerEndpoint("https://testk8s.cloudapp.net")
                .clusterRootCA("ddsadsad344mfdsfdl")
                .controllerDetails(ControllerDetailsArgs.builder()
                    .id("/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.DelegatedNetwork/controller/testcontroller")
                    .build())
                .identity(OrchestratorIdentityArgs.builder()
                    .type("SystemAssigned")
                    .build())
                .kind("Kubernetes")
                .location("West US")
                .orchestratorAppId("546192d7-503f-477a-9cfe-4efc3ee2b6e1")
                .orchestratorTenantId("da6192d7-503f-477a-9cfe-4efc3ee2b6c3")
                .privateLinkResourceId("/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.Network/privateLinkServices/plresource1")
                .resourceGroupName("TestRG")
                .resourceName("testk8s1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    orchestrator_instance_service_details = azure_native.delegatednetwork.OrchestratorInstanceServiceDetails("orchestratorInstanceServiceDetails",
        api_server_endpoint="https://testk8s.cloudapp.net",
        cluster_root_ca="ddsadsad344mfdsfdl",
        controller_details=azure_native.delegatednetwork.ControllerDetailsArgs(
            id="/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.DelegatedNetwork/controller/testcontroller",
        ),
        identity=azure_native.delegatednetwork.OrchestratorIdentityArgs(
            type=azure_native.delegatednetwork.ResourceIdentityType.SYSTEM_ASSIGNED,
        ),
        kind=azure_native.delegatednetwork.OrchestratorKind.KUBERNETES,
        location="West US",
        orchestrator_app_id="546192d7-503f-477a-9cfe-4efc3ee2b6e1",
        orchestrator_tenant_id="da6192d7-503f-477a-9cfe-4efc3ee2b6c3",
        private_link_resource_id="/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.Network/privateLinkServices/plresource1",
        resource_group_name="TestRG",
        resource_name_="testk8s1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const orchestratorInstanceServiceDetails = new azure_native.delegatednetwork.OrchestratorInstanceServiceDetails("orchestratorInstanceServiceDetails", {
        apiServerEndpoint: "https://testk8s.cloudapp.net",
        clusterRootCA: "ddsadsad344mfdsfdl",
        controllerDetails: {
            id: "/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.DelegatedNetwork/controller/testcontroller",
        },
        identity: {
            type: azure_native.delegatednetwork.ResourceIdentityType.SystemAssigned,
        },
        kind: azure_native.delegatednetwork.OrchestratorKind.Kubernetes,
        location: "West US",
        orchestratorAppId: "546192d7-503f-477a-9cfe-4efc3ee2b6e1",
        orchestratorTenantId: "da6192d7-503f-477a-9cfe-4efc3ee2b6c3",
        privateLinkResourceId: "/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.Network/privateLinkServices/plresource1",
        resourceGroupName: "TestRG",
        resourceName: "testk8s1",
    });
    
    resources:
      orchestratorInstanceServiceDetails:
        type: azure-native:delegatednetwork:OrchestratorInstanceServiceDetails
        properties:
          apiServerEndpoint: https://testk8s.cloudapp.net
          clusterRootCA: ddsadsad344mfdsfdl
          controllerDetails:
            id: /subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.DelegatedNetwork/controller/testcontroller
          identity:
            type: SystemAssigned
          kind: Kubernetes
          location: West US
          orchestratorAppId: 546192d7-503f-477a-9cfe-4efc3ee2b6e1
          orchestratorTenantId: da6192d7-503f-477a-9cfe-4efc3ee2b6c3
          privateLinkResourceId: /subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.Network/privateLinkServices/plresource1
          resourceGroupName: TestRG
          resourceName: testk8s1
    

    Create OrchestratorInstanceServiceDetails Resource

    new OrchestratorInstanceServiceDetails(name: string, args: OrchestratorInstanceServiceDetailsArgs, opts?: CustomResourceOptions);
    @overload
    def OrchestratorInstanceServiceDetails(resource_name: str,
                                           opts: Optional[ResourceOptions] = None,
                                           api_server_endpoint: Optional[str] = None,
                                           cluster_root_ca: Optional[str] = None,
                                           controller_details: Optional[ControllerDetailsArgs] = None,
                                           identity: Optional[OrchestratorIdentityArgs] = None,
                                           kind: Optional[Union[str, OrchestratorKind]] = None,
                                           location: Optional[str] = None,
                                           orchestrator_app_id: Optional[str] = None,
                                           orchestrator_tenant_id: Optional[str] = None,
                                           private_link_resource_id: Optional[str] = None,
                                           resource_group_name: Optional[str] = None,
                                           resource_name_: Optional[str] = None,
                                           tags: Optional[Mapping[str, str]] = None)
    @overload
    def OrchestratorInstanceServiceDetails(resource_name: str,
                                           args: OrchestratorInstanceServiceDetailsArgs,
                                           opts: Optional[ResourceOptions] = None)
    func NewOrchestratorInstanceServiceDetails(ctx *Context, name string, args OrchestratorInstanceServiceDetailsArgs, opts ...ResourceOption) (*OrchestratorInstanceServiceDetails, error)
    public OrchestratorInstanceServiceDetails(string name, OrchestratorInstanceServiceDetailsArgs args, CustomResourceOptions? opts = null)
    public OrchestratorInstanceServiceDetails(String name, OrchestratorInstanceServiceDetailsArgs args)
    public OrchestratorInstanceServiceDetails(String name, OrchestratorInstanceServiceDetailsArgs args, CustomResourceOptions options)
    
    type: azure-native:delegatednetwork:OrchestratorInstanceServiceDetails
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args OrchestratorInstanceServiceDetailsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args OrchestratorInstanceServiceDetailsArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args OrchestratorInstanceServiceDetailsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OrchestratorInstanceServiceDetailsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OrchestratorInstanceServiceDetailsArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    OrchestratorInstanceServiceDetails Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The OrchestratorInstanceServiceDetails resource accepts the following input properties:

    ControllerDetails Pulumi.AzureNative.DelegatedNetwork.Inputs.ControllerDetails
    Properties of the controller.
    Kind string | Pulumi.AzureNative.DelegatedNetwork.OrchestratorKind
    The kind of workbook. Choices are user and shared.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ApiServerEndpoint string
    K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
    ClusterRootCA string
    RootCA certificate of kubernetes cluster base64 encoded
    Identity Pulumi.AzureNative.DelegatedNetwork.Inputs.OrchestratorIdentity
    The identity of the orchestrator
    Location string
    Location of the resource.
    OrchestratorAppId string
    AAD ID used with apiserver
    OrchestratorTenantId string
    TenantID of server App ID
    PrivateLinkResourceId string
    private link arm resource id. Either one of apiServerEndpoint or privateLinkResourceId can be specified
    ResourceName string
    The name of the resource. It must be a minimum of 3 characters, and a maximum of 63.
    Tags Dictionary<string, string>
    The resource tags.
    ControllerDetails ControllerDetailsTypeArgs
    Properties of the controller.
    Kind string | OrchestratorKind
    The kind of workbook. Choices are user and shared.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ApiServerEndpoint string
    K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
    ClusterRootCA string
    RootCA certificate of kubernetes cluster base64 encoded
    Identity OrchestratorIdentityArgs
    The identity of the orchestrator
    Location string
    Location of the resource.
    OrchestratorAppId string
    AAD ID used with apiserver
    OrchestratorTenantId string
    TenantID of server App ID
    PrivateLinkResourceId string
    private link arm resource id. Either one of apiServerEndpoint or privateLinkResourceId can be specified
    ResourceName string
    The name of the resource. It must be a minimum of 3 characters, and a maximum of 63.
    Tags map[string]string
    The resource tags.
    controllerDetails ControllerDetails
    Properties of the controller.
    kind String | OrchestratorKind
    The kind of workbook. Choices are user and shared.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    apiServerEndpoint String
    K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
    clusterRootCA String
    RootCA certificate of kubernetes cluster base64 encoded
    identity OrchestratorIdentity
    The identity of the orchestrator
    location String
    Location of the resource.
    orchestratorAppId String
    AAD ID used with apiserver
    orchestratorTenantId String
    TenantID of server App ID
    privateLinkResourceId String
    private link arm resource id. Either one of apiServerEndpoint or privateLinkResourceId can be specified
    resourceName String
    The name of the resource. It must be a minimum of 3 characters, and a maximum of 63.
    tags Map<String,String>
    The resource tags.
    controllerDetails ControllerDetails
    Properties of the controller.
    kind string | OrchestratorKind
    The kind of workbook. Choices are user and shared.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    apiServerEndpoint string
    K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
    clusterRootCA string
    RootCA certificate of kubernetes cluster base64 encoded
    identity OrchestratorIdentity
    The identity of the orchestrator
    location string
    Location of the resource.
    orchestratorAppId string
    AAD ID used with apiserver
    orchestratorTenantId string
    TenantID of server App ID
    privateLinkResourceId string
    private link arm resource id. Either one of apiServerEndpoint or privateLinkResourceId can be specified
    resourceName string
    The name of the resource. It must be a minimum of 3 characters, and a maximum of 63.
    tags {[key: string]: string}
    The resource tags.
    controller_details ControllerDetailsArgs
    Properties of the controller.
    kind str | OrchestratorKind
    The kind of workbook. Choices are user and shared.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    api_server_endpoint str
    K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
    cluster_root_ca str
    RootCA certificate of kubernetes cluster base64 encoded
    identity OrchestratorIdentityArgs
    The identity of the orchestrator
    location str
    Location of the resource.
    orchestrator_app_id str
    AAD ID used with apiserver
    orchestrator_tenant_id str
    TenantID of server App ID
    private_link_resource_id str
    private link arm resource id. Either one of apiServerEndpoint or privateLinkResourceId can be specified
    resource_name str
    The name of the resource. It must be a minimum of 3 characters, and a maximum of 63.
    tags Mapping[str, str]
    The resource tags.
    controllerDetails Property Map
    Properties of the controller.
    kind String | "Kubernetes"
    The kind of workbook. Choices are user and shared.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    apiServerEndpoint String
    K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
    clusterRootCA String
    RootCA certificate of kubernetes cluster base64 encoded
    identity Property Map
    The identity of the orchestrator
    location String
    Location of the resource.
    orchestratorAppId String
    AAD ID used with apiserver
    orchestratorTenantId String
    TenantID of server App ID
    privateLinkResourceId String
    private link arm resource id. Either one of apiServerEndpoint or privateLinkResourceId can be specified
    resourceName String
    The name of the resource. It must be a minimum of 3 characters, and a maximum of 63.
    tags Map<String>
    The resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the OrchestratorInstanceServiceDetails resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource.
    ProvisioningState string
    The current state of orchestratorInstance resource.
    ResourceGuid string
    Resource guid.
    Type string
    The type of resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource.
    ProvisioningState string
    The current state of orchestratorInstance resource.
    ResourceGuid string
    Resource guid.
    Type string
    The type of resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource.
    provisioningState String
    The current state of orchestratorInstance resource.
    resourceGuid String
    Resource guid.
    type String
    The type of resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource.
    provisioningState string
    The current state of orchestratorInstance resource.
    resourceGuid string
    Resource guid.
    type string
    The type of resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource.
    provisioning_state str
    The current state of orchestratorInstance resource.
    resource_guid str
    Resource guid.
    type str
    The type of resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource.
    provisioningState String
    The current state of orchestratorInstance resource.
    resourceGuid String
    Resource guid.
    type String
    The type of resource.

    Supporting Types

    ControllerDetails, ControllerDetailsArgs

    Id string
    controller arm resource id
    Id string
    controller arm resource id
    id String
    controller arm resource id
    id string
    controller arm resource id
    id str
    controller arm resource id
    id String
    controller arm resource id

    ControllerDetailsResponse, ControllerDetailsResponseArgs

    Id string
    controller arm resource id
    Id string
    controller arm resource id
    id String
    controller arm resource id
    id string
    controller arm resource id
    id str
    controller arm resource id
    id String
    controller arm resource id

    OrchestratorIdentity, OrchestratorIdentityArgs

    Type Pulumi.AzureNative.DelegatedNetwork.ResourceIdentityType
    The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters
    Type ResourceIdentityType
    The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters
    type ResourceIdentityType
    The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters
    type ResourceIdentityType
    The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters
    type ResourceIdentityType
    The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters
    type "SystemAssigned" | "None"
    The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters

    OrchestratorIdentityResponse, OrchestratorIdentityResponseArgs

    PrincipalId string
    The principal id of the system assigned identity which is used by orchestrator.
    TenantId string
    The tenant id of the system assigned identity which is used by orchestrator.
    Type string
    The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters
    PrincipalId string
    The principal id of the system assigned identity which is used by orchestrator.
    TenantId string
    The tenant id of the system assigned identity which is used by orchestrator.
    Type string
    The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters
    principalId String
    The principal id of the system assigned identity which is used by orchestrator.
    tenantId String
    The tenant id of the system assigned identity which is used by orchestrator.
    type String
    The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters
    principalId string
    The principal id of the system assigned identity which is used by orchestrator.
    tenantId string
    The tenant id of the system assigned identity which is used by orchestrator.
    type string
    The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters
    principal_id str
    The principal id of the system assigned identity which is used by orchestrator.
    tenant_id str
    The tenant id of the system assigned identity which is used by orchestrator.
    type str
    The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters
    principalId String
    The principal id of the system assigned identity which is used by orchestrator.
    tenantId String
    The tenant id of the system assigned identity which is used by orchestrator.
    type String
    The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters

    OrchestratorKind, OrchestratorKindArgs

    Kubernetes
    Kubernetes
    OrchestratorKindKubernetes
    Kubernetes
    Kubernetes
    Kubernetes
    Kubernetes
    Kubernetes
    KUBERNETES
    Kubernetes
    "Kubernetes"
    Kubernetes

    ResourceIdentityType, ResourceIdentityTypeArgs

    SystemAssigned
    SystemAssigned
    None
    None
    ResourceIdentityTypeSystemAssigned
    SystemAssigned
    ResourceIdentityTypeNone
    None
    SystemAssigned
    SystemAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    None
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    NONE
    None
    "SystemAssigned"
    SystemAssigned
    "None"
    None

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:delegatednetwork:OrchestratorInstanceServiceDetails testk8s1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DelegatedNetwork/orchestrators/{resourceName} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi