import * as pulumi from "@pulumi/pulumi"; /** * Manages an Azure Container Registry Cache Rule. * * > **Note:** All arguments including the access key will be stored in the raw state as plain-text. * [Read more about sensitive data in state](https://www.terraform.io/docs/state/sensitive-data.html). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const acr = new azure.containerservice.Registry("acr", { * name: "containerRegistry1", * resourceGroupName: example.name, * location: example.location, * sku: "Basic", * }); * const cacheRule = new azure.containerservice.RegistryCacheRule("cache_rule", { * name: "cacherule", * containerRegistryId: acr.id, * targetRepo: "target", * sourceRepo: "docker.io/hello-world", * credentialSetId: pulumi.interpolate`${acr.id}/credentialSets/example`, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.ContainerRegistry` - 2023-07-01 * * ## Import * * Container Registry Cache Rules can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:containerservice/registryCacheRule:RegistryCacheRule example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myRegistry/cacheRules/myCacheRule * ``` */ export declare class RegistryCacheRule extends pulumi.CustomResource { /** * Get an existing RegistryCacheRule 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?: RegistryCacheRuleState, opts?: pulumi.CustomResourceOptions): RegistryCacheRule; /** * Returns true if the given object is an instance of RegistryCacheRule. 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 RegistryCacheRule; /** * The ID of the Container Registry where the Cache Rule should apply. Changing this forces a new resource to be created. */ readonly containerRegistryId: pulumi.Output; /** * The ARM resource ID of the Credential Store which is associated with the Cache Rule. */ readonly credentialSetId: pulumi.Output; /** * Specifies the name of the Container Registry Cache Rule. Only Alphanumeric characters allowed. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * The name of the source repository path. Changing this forces a new resource to be created. */ readonly sourceRepo: pulumi.Output; /** * The name of the new repository path to store artifacts. Changing this forces a new resource to be created. */ readonly targetRepo: pulumi.Output; /** * Create a RegistryCacheRule 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: RegistryCacheRuleArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering RegistryCacheRule resources. */ export interface RegistryCacheRuleState { /** * The ID of the Container Registry where the Cache Rule should apply. Changing this forces a new resource to be created. */ containerRegistryId?: pulumi.Input; /** * The ARM resource ID of the Credential Store which is associated with the Cache Rule. */ credentialSetId?: pulumi.Input; /** * Specifies the name of the Container Registry Cache Rule. Only Alphanumeric characters allowed. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The name of the source repository path. Changing this forces a new resource to be created. */ sourceRepo?: pulumi.Input; /** * The name of the new repository path to store artifacts. Changing this forces a new resource to be created. */ targetRepo?: pulumi.Input; } /** * The set of arguments for constructing a RegistryCacheRule resource. */ export interface RegistryCacheRuleArgs { /** * The ID of the Container Registry where the Cache Rule should apply. Changing this forces a new resource to be created. */ containerRegistryId: pulumi.Input; /** * The ARM resource ID of the Credential Store which is associated with the Cache Rule. */ credentialSetId?: pulumi.Input; /** * Specifies the name of the Container Registry Cache Rule. Only Alphanumeric characters allowed. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The name of the source repository path. Changing this forces a new resource to be created. */ sourceRepo: pulumi.Input; /** * The name of the new repository path to store artifacts. Changing this forces a new resource to be created. */ targetRepo: pulumi.Input; }