azure-native.delegatednetwork.OrchestratorInstanceServiceDetails
Explore with Pulumi AI
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 (
delegatednetwork "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={
"id": "/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.DelegatedNetwork/controller/testcontroller",
},
identity={
"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
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 = new AzureNative.DelegatedNetwork.Inputs.ControllerDetailsArgs
{
Id = "string",
},
Kind = "string",
ResourceGroupName = "string",
ApiServerEndpoint = "string",
ClusterRootCA = "string",
Identity = new AzureNative.DelegatedNetwork.Inputs.OrchestratorIdentityArgs
{
Type = AzureNative.DelegatedNetwork.ResourceIdentityType.SystemAssigned,
},
Location = "string",
OrchestratorAppId = "string",
OrchestratorTenantId = "string",
PrivateLinkResourceId = "string",
ResourceName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := delegatednetwork.NewOrchestratorInstanceServiceDetails(ctx, "orchestratorInstanceServiceDetailsResource", &delegatednetwork.OrchestratorInstanceServiceDetailsArgs{
ControllerDetails: &delegatednetwork.ControllerDetailsTypeArgs{
Id: pulumi.String("string"),
},
Kind: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
ApiServerEndpoint: pulumi.String("string"),
ClusterRootCA: pulumi.String("string"),
Identity: &delegatednetwork.OrchestratorIdentityArgs{
Type: delegatednetwork.ResourceIdentityTypeSystemAssigned,
},
Location: pulumi.String("string"),
OrchestratorAppId: pulumi.String("string"),
OrchestratorTenantId: pulumi.String("string"),
PrivateLinkResourceId: pulumi.String("string"),
ResourceName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var orchestratorInstanceServiceDetailsResource = new OrchestratorInstanceServiceDetails("orchestratorInstanceServiceDetailsResource", OrchestratorInstanceServiceDetailsArgs.builder()
.controllerDetails(ControllerDetailsArgs.builder()
.id("string")
.build())
.kind("string")
.resourceGroupName("string")
.apiServerEndpoint("string")
.clusterRootCA("string")
.identity(OrchestratorIdentityArgs.builder()
.type("SystemAssigned")
.build())
.location("string")
.orchestratorAppId("string")
.orchestratorTenantId("string")
.privateLinkResourceId("string")
.resourceName("string")
.tags(Map.of("string", "string"))
.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": azure_native.delegatednetwork.ResourceIdentityType.SYSTEM_ASSIGNED,
},
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: azure_native.delegatednetwork.ResourceIdentityType.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
The OrchestratorInstanceServiceDetails resource accepts the following input properties:
- Controller
Details 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.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Api
Server stringEndpoint - K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
- Cluster
Root 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.
- Orchestrator
App stringId - AAD ID used with apiserver
- Orchestrator
Tenant stringId - TenantID of server App ID
- Private
Link stringResource Id - private link arm resource id. Either one of apiServerEndpoint or privateLinkResourceId can be specified
- Resource
Name 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.
- Controller
Details ControllerDetails Type Args - Properties of the controller.
- Kind
string | Orchestrator
Kind - The kind of workbook. Choices are user and shared.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Api
Server stringEndpoint - K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
- Cluster
Root stringCA - RootCA certificate of kubernetes cluster base64 encoded
- Identity
Orchestrator
Identity Args - The identity of the orchestrator
- Location string
- Location of the resource.
- Orchestrator
App stringId - AAD ID used with apiserver
- Orchestrator
Tenant stringId - TenantID of server App ID
- Private
Link stringResource Id - private link arm resource id. Either one of apiServerEndpoint or privateLinkResourceId can be specified
- Resource
Name 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.
- controller
Details ControllerDetails - Properties of the controller.
- kind
String | Orchestrator
Kind - The kind of workbook. Choices are user and shared.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- api
Server StringEndpoint - K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
- cluster
Root StringCA - RootCA certificate of kubernetes cluster base64 encoded
- identity
Orchestrator
Identity - The identity of the orchestrator
- location String
- Location of the resource.
- orchestrator
App StringId - AAD ID used with apiserver
- orchestrator
Tenant StringId - TenantID of server App ID
- private
Link StringResource Id - private link arm resource id. Either one of apiServerEndpoint or privateLinkResourceId can be specified
- resource
Name 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.
- controller
Details ControllerDetails - Properties of the controller.
- kind
string | Orchestrator
Kind - The kind of workbook. Choices are user and shared.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- api
Server stringEndpoint - K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
- cluster
Root stringCA - RootCA certificate of kubernetes cluster base64 encoded
- identity
Orchestrator
Identity - The identity of the orchestrator
- location string
- Location of the resource.
- orchestrator
App stringId - AAD ID used with apiserver
- orchestrator
Tenant stringId - TenantID of server App ID
- private
Link stringResource Id - private link arm resource id. Either one of apiServerEndpoint or privateLinkResourceId can be specified
- resource
Name 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 | Orchestrator
Kind - 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
Orchestrator
Identity 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.
- controller
Details Property Map - Properties of the controller.
- kind String | "Kubernetes"
- The kind of workbook. Choices are user and shared.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- api
Server StringEndpoint - K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
- cluster
Root StringCA - RootCA certificate of kubernetes cluster base64 encoded
- identity Property Map
- The identity of the orchestrator
- location String
- Location of the resource.
- orchestrator
App StringId - AAD ID used with apiserver
- orchestrator
Tenant StringId - TenantID of server App ID
- private
Link StringResource Id - private link arm resource id. Either one of apiServerEndpoint or privateLinkResourceId can be specified
- resource
Name 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.
- Provisioning
State string - The current state of orchestratorInstance resource.
- Resource
Guid 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.
- Provisioning
State string - The current state of orchestratorInstance resource.
- Resource
Guid 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.
- provisioning
State String - The current state of orchestratorInstance resource.
- resource
Guid 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.
- provisioning
State string - The current state of orchestratorInstance resource.
- resource
Guid 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.
- provisioning
State String - The current state of orchestratorInstance resource.
- resource
Guid 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
Resource
Identity Type - The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters
- type
Resource
Identity Type - The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters
- type
Resource
Identity Type - The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters
- type
Resource
Identity Type - The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters
- type
"System
Assigned" | "None" - The type of identity used for orchestrator cluster. Type 'SystemAssigned' will use an implicitly created identity orchestrator clusters
OrchestratorIdentityResponse, OrchestratorIdentityResponseArgs
- Principal
Id string - The principal id of the system assigned identity which is used by orchestrator.
- Tenant
Id 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 string - The principal id of the system assigned identity which is used by orchestrator.
- Tenant
Id 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 String - The principal id of the system assigned identity which is used by orchestrator.
- tenant
Id 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 string - The principal id of the system assigned identity which is used by orchestrator.
- tenant
Id 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
- principal
Id String - The principal id of the system assigned identity which is used by orchestrator.
- tenant
Id 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
- Orchestrator
Kind Kubernetes - Kubernetes
- Kubernetes
- Kubernetes
- Kubernetes
- Kubernetes
- KUBERNETES
- Kubernetes
- "Kubernetes"
- Kubernetes
ResourceIdentityType, ResourceIdentityTypeArgs
- System
Assigned - SystemAssigned
- None
- None
- Resource
Identity Type System Assigned - SystemAssigned
- Resource
Identity Type None - None
- System
Assigned - SystemAssigned
- None
- None
- System
Assigned - SystemAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- NONE
- None
- "System
Assigned" - 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}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0