import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages a Container Registry Token Password associated with a scope map. For more information on scope maps and their tokens see the [product documentation](https://learn.microsoft.com/en-us/azure/container-registry/container-registry-repository-scoped-permissions). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resource-group", * location: "West Europe", * }); * const exampleRegistry = new azure.containerservice.Registry("example", { * name: "example-registry", * resourceGroupName: example.name, * location: example.location, * sku: "Basic", * adminEnabled: false, * georeplicationLocations: [ * "East US", * "West Europe", * ], * }); * const exampleRegistryScopeMap = new azure.containerservice.RegistryScopeMap("example", { * name: "example-scope-map", * containerRegistryName: exampleRegistry.name, * resourceGroupName: example.name, * actions: [ * "repositories/repo1/content/read", * "repositories/repo1/content/write", * ], * }); * const exampleRegistryToken = new azure.containerservice.RegistryToken("example", { * name: "exampletoken", * containerRegistryName: exampleRegistry.name, * resourceGroupName: example.name, * scopeMapId: exampleRegistryScopeMap.id, * }); * const exampleTokenPassword = new azure.containerservice.TokenPassword("example", { * containerRegistryTokenId: exampleRegistryToken.id, * password1: { * expiry: "2023-03-22T17:57:36+08:00", * }, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.ContainerRegistry` - 2025-11-01 * * ## Import * * Container Registry Token Passwords can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:containerservice/tokenPassword:TokenPassword example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/group1/providers/Microsoft.ContainerRegistry/registries/registry1/tokens/token1/passwords/password * ``` */ export declare class TokenPassword extends pulumi.CustomResource { /** * Get an existing TokenPassword resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: TokenPasswordState, opts?: pulumi.CustomResourceOptions): TokenPassword; /** * Returns true if the given object is an instance of TokenPassword. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is TokenPassword; /** * The ID of the Container Registry Token that this Container Registry Token Password resides in. Changing this forces a new Container Registry Token Password to be created. */ readonly containerRegistryTokenId: pulumi.Output; /** * One `password` block as defined below. */ readonly password1: pulumi.Output; /** * One `password` block as defined below. */ readonly password2: pulumi.Output; /** * Create a TokenPassword resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: TokenPasswordArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering TokenPassword resources. */ export interface TokenPasswordState { /** * The ID of the Container Registry Token that this Container Registry Token Password resides in. Changing this forces a new Container Registry Token Password to be created. */ containerRegistryTokenId?: pulumi.Input; /** * One `password` block as defined below. */ password1?: pulumi.Input; /** * One `password` block as defined below. */ password2?: pulumi.Input; } /** * The set of arguments for constructing a TokenPassword resource. */ export interface TokenPasswordArgs { /** * The ID of the Container Registry Token that this Container Registry Token Password resides in. Changing this forces a new Container Registry Token Password to be created. */ containerRegistryTokenId: pulumi.Input; /** * One `password` block as defined below. */ password1: pulumi.Input; /** * One `password` block as defined below. */ password2?: pulumi.Input; }