import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about an existing Container Group instance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.containerservice.getGroup({ * name: "existing", * resourceGroupName: "existing", * }); * export const id = example.then(example => example.id); * export const ipAddress = example.then(example => example.ipAddress); * export const fqdn = example.then(example => example.fqdn); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.ContainerInstance` - 2025-09-01 */ export declare function getGroup(args: GetGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getGroup. */ export interface GetGroupArgs { /** * The name of this Container Group instance. */ name: string; /** * The name of the Resource Group where the Container Group instance exists. */ resourceGroupName: string; /** * A list of Availability Zones in which this Container Group is located. */ zones?: string[]; } /** * A collection of values returned by getGroup. */ export interface GetGroupResult { /** * The FQDN of the Container Group instance derived from `dnsNameLabel`. */ readonly fqdn: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A `identity` block as defined below. */ readonly identities: outputs.containerservice.GetGroupIdentity[]; /** * The IP address allocated to the Container Group instance. */ readonly ipAddress: string; /** * The Azure Region where the Container Group instance exists. */ readonly location: string; readonly name: string; readonly resourceGroupName: string; /** * The subnet resource IDs for a container group. */ readonly subnetIds: string[]; /** * A mapping of tags assigned to the Container Group instance. */ readonly tags: { [key: string]: string; }; /** * A list of Availability Zones in which this Container Group is located. */ readonly zones?: string[]; } /** * Use this data source to access information about an existing Container Group instance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.containerservice.getGroup({ * name: "existing", * resourceGroupName: "existing", * }); * export const id = example.then(example => example.id); * export const ipAddress = example.then(example => example.ipAddress); * export const fqdn = example.then(example => example.fqdn); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.ContainerInstance` - 2025-09-01 */ export declare function getGroupOutput(args: GetGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getGroup. */ export interface GetGroupOutputArgs { /** * The name of this Container Group instance. */ name: pulumi.Input; /** * The name of the Resource Group where the Container Group instance exists. */ resourceGroupName: pulumi.Input; /** * A list of Availability Zones in which this Container Group is located. */ zones?: pulumi.Input[]>; }