@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.85 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets details about the orchestrator instance.
*
* Uses Azure REST API version 2023-06-27-preview.
*
* 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](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getOrchestratorInstanceServiceDetails(args: GetOrchestratorInstanceServiceDetailsArgs, opts?: pulumi.InvokeOptions): Promise<GetOrchestratorInstanceServiceDetailsResult>;
export interface GetOrchestratorInstanceServiceDetailsArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The name of the resource. It must be a minimum of 3 characters, and a maximum of 63.
*/
resourceName: string;
}
/**
* Represents an instance of a orchestrator.
*/
export interface GetOrchestratorInstanceServiceDetailsResult {
/**
* K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
*/
readonly apiServerEndpoint?: string;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* RootCA certificate of kubernetes cluster base64 encoded
*/
readonly clusterRootCA?: string;
/**
* Properties of the controller.
*/
readonly controllerDetails: outputs.delegatednetwork.ControllerDetailsResponse;
/**
* An identifier that represents the resource.
*/
readonly id: string;
/**
* The identity of the orchestrator
*/
readonly identity?: outputs.delegatednetwork.OrchestratorIdentityResponse;
/**
* The kind of workbook. Choices are user and shared.
*/
readonly kind: string;
/**
* Location of the resource.
*/
readonly location?: string;
/**
* The name of the resource.
*/
readonly name: string;
/**
* AAD ID used with apiserver
*/
readonly orchestratorAppId?: string;
/**
* TenantID of server App ID
*/
readonly orchestratorTenantId?: string;
/**
* private link arm resource id. Either one of apiServerEndpoint or privateLinkResourceId can be specified
*/
readonly privateLinkResourceId?: string;
/**
* The current state of orchestratorInstance resource.
*/
readonly provisioningState: string;
/**
* Resource guid.
*/
readonly resourceGuid: string;
/**
* The resource tags.
*/
readonly tags?: {
[key: string]: string;
};
/**
* The type of resource.
*/
readonly type: string;
}
/**
* Gets details about the orchestrator instance.
*
* Uses Azure REST API version 2023-06-27-preview.
*
* 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](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getOrchestratorInstanceServiceDetailsOutput(args: GetOrchestratorInstanceServiceDetailsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOrchestratorInstanceServiceDetailsResult>;
export interface GetOrchestratorInstanceServiceDetailsOutputArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the resource. It must be a minimum of 3 characters, and a maximum of 63.
*/
resourceName: pulumi.Input<string>;
}