azure-native.delegatednetwork.OrchestratorInstanceServiceDetails
Explore with Pulumi AI
Represents an instance of a orchestrator.
Uses Azure REST API version 2023-06-27-preview. In version 2.x of the Azure Native provider, it used API version 2021-03-15.
Other available API versions: 2021-03-15, 2023-05-18-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native delegatednetwork [ApiVersion]
. See the version guide for details.
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
This property is required. string - The unique name of the resource.
- args
This property is required. OrchestratorInstanceServiceDetailsArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. 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
This property is required. string - The unique name of the resource.
- args
This property is required. OrchestratorInstanceServiceDetailsArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. OrchestratorInstanceServiceDetailsArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. 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
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:
- Controller
Details This property is required. Pulumi.Azure Native. Delegated Network. Inputs. Controller Details - Properties of the controller.
- Kind
This property is required. string | Pulumi.Azure Native. Delegated Network. Orchestrator Kind - The kind of workbook. Choices are user and shared.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- 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 Changes to this property will trigger replacement.
- 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 This property is required. ControllerDetails Type Args - Properties of the controller.
- Kind
This property is required. string | OrchestratorKind - The kind of workbook. Choices are user and shared.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- 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 Changes to this property will trigger replacement.
- 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 This property is required. ControllerDetails - Properties of the controller.
- kind
This property is required. String | OrchestratorKind - The kind of workbook. Choices are user and shared.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- 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 Changes to this property will trigger replacement.
- 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 This property is required. ControllerDetails - Properties of the controller.
- kind
This property is required. string | OrchestratorKind - The kind of workbook. Choices are user and shared.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- 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 Changes to this property will trigger replacement.
- 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 This property is required. ControllerDetails Args - Properties of the controller.
- kind
This property is required. str | OrchestratorKind - The kind of workbook. Choices are user and shared.
- resource_
group_ name This property is required. Changes to this property will trigger replacement.
- 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 Changes to this property will trigger replacement.
- 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 This property is required. Property Map - Properties of the controller.
- kind
This property is required. String | "Kubernetes" - The kind of workbook. Choices are user and shared.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- 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 Changes to this property will trigger replacement.
- 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:
- Azure
Api stringVersion - The Azure API version of the 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.
- Azure
Api stringVersion - The Azure API version of the 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.
- azure
Api StringVersion - The Azure API version of the 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.
- azure
Api stringVersion - The Azure API version of the 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.
- azure_
api_ strversion - The Azure API version of the 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.
- azure
Api StringVersion - The Azure API version of the 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 This property is required. string - The principal id of the system assigned identity which is used by orchestrator.
- Tenant
Id This property is required. 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 This property is required. string - The principal id of the system assigned identity which is used by orchestrator.
- Tenant
Id This property is required. 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 This property is required. String - The principal id of the system assigned identity which is used by orchestrator.
- tenant
Id This property is required. 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 This property is required. string - The principal id of the system assigned identity which is used by orchestrator.
- tenant
Id This property is required. 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 This property is required. str - The principal id of the system assigned identity which is used by orchestrator.
- tenant_
id This property is required. 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 This property is required. String - The principal id of the system assigned identity which is used by orchestrator.
- tenant
Id This property is required. 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