import * as pulumi from "@pulumi/pulumi"; /** * Gets information about a specific tag of a Container Registry image. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const myImageTag = scaleway.getRegistryImageTag({ * imageId: "22222222-2222-2222-2222-222222222222", * name: "my-tag-name", * }); * ``` */ export declare function getRegistryImageTag(args: GetRegistryImageTagArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRegistryImageTag. */ export interface GetRegistryImageTagArgs { /** * The ID of the registry image. */ imageId: string; /** * The name of the registry image tag. */ name?: string; /** * The ID of the project the image tag is associated with. */ projectId?: string; /** * The region in which the registry image tag exists. */ region?: string; /** * The ID of the registry image tag. */ tagId?: string; } /** * A collection of values returned by getRegistryImageTag. */ export interface GetRegistryImageTagResult { /** * The date and time when the registry image tag was created. */ readonly createdAt: string; /** * Hash of the tag content. Several tags of the same image may have the same digest. */ readonly digest: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly imageId: string; readonly name?: string; /** * The organization ID the image tag is associated with. */ readonly organizationId: string; readonly projectId: string; readonly region: string; /** * The status of the registry image tag. */ readonly status: string; readonly tagId?: string; /** * The date and time of the last update to the registry image tag. */ readonly updatedAt: string; } /** * Gets information about a specific tag of a Container Registry image. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const myImageTag = scaleway.getRegistryImageTag({ * imageId: "22222222-2222-2222-2222-222222222222", * name: "my-tag-name", * }); * ``` */ export declare function getRegistryImageTagOutput(args: GetRegistryImageTagOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRegistryImageTag. */ export interface GetRegistryImageTagOutputArgs { /** * The ID of the registry image. */ imageId: pulumi.Input; /** * The name of the registry image tag. */ name?: pulumi.Input; /** * The ID of the project the image tag is associated with. */ projectId?: pulumi.Input; /** * The region in which the registry image tag exists. */ region?: pulumi.Input; /** * The ID of the registry image tag. */ tagId?: pulumi.Input; }