import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Dev Center Network Connection. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.devcenter.getNetworkConnection({ * name: "example", * resourceGroupName: "example-resource-group", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.DevCenter` - 2025-02-01 */ export declare function getNetworkConnection(args: GetNetworkConnectionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNetworkConnection. */ export interface GetNetworkConnectionArgs { /** * The name of this Dev Center Network Connection. */ name: string; /** * The name of the Resource Group where the Dev Center Network Connection exists. */ resourceGroupName: string; } /** * A collection of values returned by getNetworkConnection. */ export interface GetNetworkConnectionResult { /** * The Azure Active Directory Join type. */ readonly domainJoinType: string; /** * The name of the Azure Active Directory domain. */ readonly domainName: string; /** * The username of the Azure Active Directory account (user or service account) that has permissions to create computer objects in Active Directory. */ readonly domainUsername: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The Azure Region where the Dev Center Network Connection exists. */ readonly location: string; readonly name: string; /** * The Azure Active Directory domain Organization Unit (OU). */ readonly organizationUnit: string; readonly resourceGroupName: string; /** * The ID of the Subnet that is used to attach Virtual Machines. */ readonly subnetId: string; /** * A mapping of tags assigned to the Dev Center Network Connection. */ readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about an existing Dev Center Network Connection. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.devcenter.getNetworkConnection({ * name: "example", * resourceGroupName: "example-resource-group", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.DevCenter` - 2025-02-01 */ export declare function getNetworkConnectionOutput(args: GetNetworkConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNetworkConnection. */ export interface GetNetworkConnectionOutputArgs { /** * The name of this Dev Center Network Connection. */ name: pulumi.Input; /** * The name of the Resource Group where the Dev Center Network Connection exists. */ resourceGroupName: pulumi.Input; }