azure-native.delegatednetwork.OrchestratorInstanceServiceDetails
Explore with Pulumi AI
Represents an instance of a orchestrator. API Version: 2021-03-15.
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 = "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 (
	delegatednetwork "github.com/pulumi/pulumi-azure-native-sdk/delegatednetwork"
	"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("Kubernetes"),
			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 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(Map.of("id", "/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.DelegatedNetwork/controller/testcontroller"))
            .identity(Map.of("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")
            .build());
    }
}
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: "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",
});
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="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")
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
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OrchestratorInstanceServiceDetails(name: string, args: OrchestratorInstanceServiceDetailsArgs, opts?: CustomResourceOptions);@overload
def OrchestratorInstanceServiceDetails(resource_name: str,
                                       args: OrchestratorInstanceServiceDetailsArgs,
                                       opts: Optional[ResourceOptions] = None)
@overload
def OrchestratorInstanceServiceDetails(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       controller_details: Optional[ControllerDetailsArgs] = None,
                                       kind: Optional[Union[str, OrchestratorKind]] = None,
                                       resource_group_name: Optional[str] = None,
                                       api_server_endpoint: Optional[str] = None,
                                       cluster_root_ca: Optional[str] = None,
                                       identity: Optional[OrchestratorIdentityArgs] = 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_name_: Optional[str] = None,
                                       tags: Optional[Mapping[str, str]] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var orchestratorInstanceServiceDetailsResource = new AzureNative.Delegatednetwork.OrchestratorInstanceServiceDetails("orchestratorInstanceServiceDetailsResource", new()
{
    ControllerDetails = 
    {
        { "id", "string" },
    },
    Kind = "string",
    ResourceGroupName = "string",
    ApiServerEndpoint = "string",
    ClusterRootCA = "string",
    Identity = 
    {
        { "type", "SystemAssigned" },
    },
    Location = "string",
    OrchestratorAppId = "string",
    OrchestratorTenantId = "string",
    PrivateLinkResourceId = "string",
    ResourceName = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := delegatednetwork.NewOrchestratorInstanceServiceDetails(ctx, "orchestratorInstanceServiceDetailsResource", &delegatednetwork.OrchestratorInstanceServiceDetailsArgs{
	ControllerDetails: map[string]interface{}{
		"id": "string",
	},
	Kind:              "string",
	ResourceGroupName: "string",
	ApiServerEndpoint: "string",
	ClusterRootCA:     "string",
	Identity: map[string]interface{}{
		"type": "SystemAssigned",
	},
	Location:              "string",
	OrchestratorAppId:     "string",
	OrchestratorTenantId:  "string",
	PrivateLinkResourceId: "string",
	ResourceName:          "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
})
var orchestratorInstanceServiceDetailsResource = new OrchestratorInstanceServiceDetails("orchestratorInstanceServiceDetailsResource", OrchestratorInstanceServiceDetailsArgs.builder()
    .controllerDetails(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .kind("string")
    .resourceGroupName("string")
    .apiServerEndpoint("string")
    .clusterRootCA("string")
    .identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .location("string")
    .orchestratorAppId("string")
    .orchestratorTenantId("string")
    .privateLinkResourceId("string")
    .resourceName("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
orchestrator_instance_service_details_resource = azure_native.delegatednetwork.OrchestratorInstanceServiceDetails("orchestratorInstanceServiceDetailsResource",
    controller_details={
        id: string,
    },
    kind=string,
    resource_group_name=string,
    api_server_endpoint=string,
    cluster_root_ca=string,
    identity={
        type: SystemAssigned,
    },
    location=string,
    orchestrator_app_id=string,
    orchestrator_tenant_id=string,
    private_link_resource_id=string,
    resource_name_=string,
    tags={
        string: string,
    })
const orchestratorInstanceServiceDetailsResource = new azure_native.delegatednetwork.OrchestratorInstanceServiceDetails("orchestratorInstanceServiceDetailsResource", {
    controllerDetails: {
        id: "string",
    },
    kind: "string",
    resourceGroupName: "string",
    apiServerEndpoint: "string",
    clusterRootCA: "string",
    identity: {
        type: "SystemAssigned",
    },
    location: "string",
    orchestratorAppId: "string",
    orchestratorTenantId: "string",
    privateLinkResourceId: "string",
    resourceName: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:delegatednetwork:OrchestratorInstanceServiceDetails
properties:
    apiServerEndpoint: string
    clusterRootCA: string
    controllerDetails:
        id: string
    identity:
        type: SystemAssigned
    kind: string
    location: string
    orchestratorAppId: string
    orchestratorTenantId: string
    privateLinkResourceId: string
    resourceGroupName: string
    resourceName: string
    tags:
        string: string
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The OrchestratorInstanceServiceDetails resource accepts the following input properties:
- ControllerDetails Pulumi.Azure Native. Delegated Network. Inputs. Controller Details 
- Properties of the controller.
- Kind
string | Pulumi.Azure Native. Delegated Network. Orchestrator Kind 
- The kind of workbook. Choices are user and shared.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ApiServer stringEndpoint 
- K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
- ClusterRoot stringCA 
- RootCA certificate of kubernetes cluster base64 encoded
- Identity
Pulumi.Azure Native. Delegated Network. Inputs. Orchestrator Identity 
- The identity of the orchestrator
- Location string
- Location of the resource.
- OrchestratorApp stringId 
- AAD ID used with apiserver
- OrchestratorTenant stringId 
- TenantID of server App ID
- PrivateLink stringResource Id 
- 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.
- Dictionary<string, string>
- The resource tags.
- ControllerDetails ControllerDetails Type Args 
- Properties of the controller.
- Kind
string | OrchestratorKind 
- The kind of workbook. Choices are user and shared.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ApiServer stringEndpoint 
- K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
- ClusterRoot stringCA 
- RootCA certificate of kubernetes cluster base64 encoded
- Identity
OrchestratorIdentity Args 
- The identity of the orchestrator
- Location string
- Location of the resource.
- OrchestratorApp stringId 
- AAD ID used with apiserver
- OrchestratorTenant stringId 
- TenantID of server App ID
- PrivateLink stringResource Id 
- 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.
- map[string]string
- The resource tags.
- controllerDetails ControllerDetails 
- Properties of the controller.
- kind
String | OrchestratorKind 
- The kind of workbook. Choices are user and shared.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- apiServer StringEndpoint 
- K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
- clusterRoot StringCA 
- RootCA certificate of kubernetes cluster base64 encoded
- identity
OrchestratorIdentity 
- The identity of the orchestrator
- location String
- Location of the resource.
- orchestratorApp StringId 
- AAD ID used with apiserver
- orchestratorTenant StringId 
- TenantID of server App ID
- privateLink StringResource Id 
- 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.
- Map<String,String>
- The resource tags.
- controllerDetails ControllerDetails 
- Properties of the controller.
- kind
string | OrchestratorKind 
- The kind of workbook. Choices are user and shared.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- apiServer stringEndpoint 
- K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
- clusterRoot stringCA 
- RootCA certificate of kubernetes cluster base64 encoded
- identity
OrchestratorIdentity 
- The identity of the orchestrator
- location string
- Location of the resource.
- orchestratorApp stringId 
- AAD ID used with apiserver
- orchestratorTenant stringId 
- TenantID of server App ID
- privateLink stringResource Id 
- 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.
- {[key: string]: string}
- The resource tags.
- controller_details ControllerDetails Args 
- Properties of the controller.
- kind
str | OrchestratorKind 
- The kind of workbook. Choices are user and shared.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- api_server_ strendpoint 
- K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
- cluster_root_ strca 
- RootCA certificate of kubernetes cluster base64 encoded
- identity
OrchestratorIdentity Args 
- The identity of the orchestrator
- location str
- Location of the resource.
- orchestrator_app_ strid 
- AAD ID used with apiserver
- orchestrator_tenant_ strid 
- TenantID of server App ID
- private_link_ strresource_ id 
- 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.
- 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.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- apiServer StringEndpoint 
- K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
- clusterRoot StringCA 
- RootCA certificate of kubernetes cluster base64 encoded
- identity Property Map
- The identity of the orchestrator
- location String
- Location of the resource.
- orchestratorApp StringId 
- AAD ID used with apiserver
- orchestratorTenant StringId 
- TenantID of server App ID
- privateLink StringResource Id 
- 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.
- 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.Azure Native. Delegated Network. Resource Identity Type 
- The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters
- Type
ResourceIdentity Type 
- The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters
- type
ResourceIdentity Type 
- The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters
- type
ResourceIdentity Type 
- The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters
- type
ResourceIdentity Type 
- 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
- OrchestratorKind Kubernetes 
- Kubernetes
- Kubernetes
- Kubernetes
- Kubernetes
- Kubernetes
- KUBERNETES
- Kubernetes
- "Kubernetes"
- Kubernetes
ResourceIdentityType, ResourceIdentityTypeArgs      
- SystemAssigned 
- SystemAssigned
- None
- None
- ResourceIdentity Type System Assigned 
- SystemAssigned
- ResourceIdentity Type None 
- 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/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.DelegatedNetwork/orchestrators/testk8s1 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0