@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.08 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Gets details about the specified dnc controller.
*
* 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 getControllerDetails(args: GetControllerDetailsArgs, opts?: pulumi.InvokeOptions): Promise<GetControllerDetailsResult>;
export interface GetControllerDetailsArgs {
/**
* 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 DNC controller.
*/
export interface GetControllerDetailsResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* dnc application id should be used by customer to authenticate with dnc gateway.
*/
readonly dncAppId: string;
/**
* dnc endpoint url that customers can use to connect to
*/
readonly dncEndpoint: string;
/**
* tenant id of dnc application id
*/
readonly dncTenantId: string;
/**
* An identifier that represents the resource.
*/
readonly id: string;
/**
* Location of the resource.
*/
readonly location?: string;
/**
* The name of the resource.
*/
readonly name: string;
/**
* The current state of dnc controller resource.
*/
readonly provisioningState: string;
/**
* The purpose of the dnc controller resource.
*/
readonly purpose?: 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 specified dnc controller.
*
* 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 getControllerDetailsOutput(args: GetControllerDetailsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetControllerDetailsResult>;
export interface GetControllerDetailsOutputArgs {
/**
* 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>;
}