import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Container Registry. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.containerservice.getRegistry({ * name: "testacr", * resourceGroupName: "test", * }); * export const loginServer = example.then(example => example.loginServer); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.ContainerRegistry` - 2025-11-01 */ export declare function getRegistry(args: GetRegistryArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRegistry. */ export interface GetRegistryArgs { /** * The name of the Container Registry. */ name: string; /** * The Name of the Resource Group where this Container Registry exists. */ resourceGroupName: string; } /** * A collection of values returned by getRegistry. */ export interface GetRegistryResult { /** * Is the Administrator account enabled for this Container Registry. */ readonly adminEnabled: boolean; /** * The Password associated with the Container Registry Admin account - if the admin account is enabled. */ readonly adminPassword: string; /** * The Username associated with the Container Registry Admin account - if the admin account is enabled. */ readonly adminUsername: string; /** * Whether dedicated data endpoints for this Container Registry are enabled? */ readonly dataEndpointEnabled: boolean; /** * A set of data endpoint hostnames associated with the container registry if data endpoints are enabled. */ readonly dataEndpointHostNames: string[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The Azure Region in which this Container Registry exists. */ readonly location: string; /** * The URL that can be used to log into the container registry. */ readonly loginServer: string; readonly name: string; readonly resourceGroupName: string; /** * The SKU of this Container Registry, such as `Basic`. */ readonly sku: string; /** * A map of tags assigned to the Container Registry. */ readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about an existing Container Registry. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.containerservice.getRegistry({ * name: "testacr", * resourceGroupName: "test", * }); * export const loginServer = example.then(example => example.loginServer); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.ContainerRegistry` - 2025-11-01 */ export declare function getRegistryOutput(args: GetRegistryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRegistry. */ export interface GetRegistryOutputArgs { /** * The name of the Container Registry. */ name: pulumi.Input; /** * The Name of the Resource Group where this Container Registry exists. */ resourceGroupName: pulumi.Input; }