import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Dev Center Attached Network. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.devcenter.getAttachedNetwork({ * name: exampleAzurermDevCenterAttachedNetwork.name, * devCenterId: exampleAzurermDevCenterAttachedNetwork.devCenterId, * }); * 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 getAttachedNetwork(args: GetAttachedNetworkArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAttachedNetwork. */ export interface GetAttachedNetworkArgs { /** * The ID of the associated Dev Center. */ devCenterId: string; /** * The name of this Dev Center Attached Network. */ name: string; } /** * A collection of values returned by getAttachedNetwork. */ export interface GetAttachedNetworkResult { readonly devCenterId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; /** * The ID of the attached Dev Center Network Connection. */ readonly networkConnectionId: string; } /** * Use this data source to access information about an existing Dev Center Attached Network. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.devcenter.getAttachedNetwork({ * name: exampleAzurermDevCenterAttachedNetwork.name, * devCenterId: exampleAzurermDevCenterAttachedNetwork.devCenterId, * }); * 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 getAttachedNetworkOutput(args: GetAttachedNetworkOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAttachedNetwork. */ export interface GetAttachedNetworkOutputArgs { /** * The ID of the associated Dev Center. */ devCenterId: pulumi.Input; /** * The name of this Dev Center Attached Network. */ name: pulumi.Input; }