import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Container Registry token. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.containerservice.getRegistryToken({ * name: "exampletoken", * resourceGroupName: "example-resource-group", * containerRegistryName: "example-registry", * }); * export const scopeMapId = example.then(example => example.scopeMapId); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.ContainerRegistry` - 2025-11-01 */ export declare function getRegistryToken(args: GetRegistryTokenArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRegistryToken. */ export interface GetRegistryTokenArgs { /** * The Name of the Container Registry where the token exists. */ containerRegistryName: string; /** * The name of the Container Registry token. */ name: string; /** * The Name of the Resource Group where this Container Registry token exists. */ resourceGroupName: string; } /** * A collection of values returned by getRegistryToken. */ export interface GetRegistryTokenResult { readonly containerRegistryName: string; /** * Whether this Token is enabled. */ readonly enabled: boolean; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly resourceGroupName: string; /** * The Scope Map ID used by the token. */ readonly scopeMapId: string; } /** * Use this data source to access information about an existing Container Registry token. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.containerservice.getRegistryToken({ * name: "exampletoken", * resourceGroupName: "example-resource-group", * containerRegistryName: "example-registry", * }); * export const scopeMapId = example.then(example => example.scopeMapId); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.ContainerRegistry` - 2025-11-01 */ export declare function getRegistryTokenOutput(args: GetRegistryTokenOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRegistryToken. */ export interface GetRegistryTokenOutputArgs { /** * The Name of the Container Registry where the token exists. */ containerRegistryName: pulumi.Input; /** * The name of the Container Registry token. */ name: pulumi.Input; /** * The Name of the Resource Group where this Container Registry token exists. */ resourceGroupName: pulumi.Input; }