import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Container Registry scope map. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.containerservice.getRegistryScopeMap({ * name: "example-scope-map", * resourceGroupName: "example-resource-group", * containerRegistryName: "example-registry", * }); * export const actions = example.then(example => example.actions); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.ContainerRegistry` - 2025-11-01 */ export declare function getRegistryScopeMap(args: GetRegistryScopeMapArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRegistryScopeMap. */ export interface GetRegistryScopeMapArgs { /** * 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 getRegistryScopeMap. */ export interface GetRegistryScopeMapResult { /** * The actions for the Scope Map. */ readonly actions: string[]; readonly containerRegistryName: string; readonly description: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly resourceGroupName: string; } /** * Use this data source to access information about an existing Container Registry scope map. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.containerservice.getRegistryScopeMap({ * name: "example-scope-map", * resourceGroupName: "example-resource-group", * containerRegistryName: "example-registry", * }); * export const actions = example.then(example => example.actions); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.ContainerRegistry` - 2025-11-01 */ export declare function getRegistryScopeMapOutput(args: GetRegistryScopeMapOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRegistryScopeMap. */ export interface GetRegistryScopeMapOutputArgs { /** * 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; }