import * as pulumi from "@pulumi/pulumi"; /** * Retrieves a TagValue. This method will return `PERMISSION_DENIED` if the value does not exist or the user does not have permission to view it. */ export declare function getTagValue(args: GetTagValueArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetTagValueArgs { tagValueId: string; } export interface GetTagValueResult { /** * Creation time. */ readonly createTime: string; /** * Optional. User-assigned description of the TagValue. Must not exceed 256 characters. Read-write. */ readonly description: string; /** * Optional. Entity tag which users can pass to prevent race conditions. This field is always set in server responses. See UpdateTagValueRequest for details. */ readonly etag: string; /** * Immutable. Resource name for TagValue in the format `tagValues/456`. */ readonly name: string; /** * The namespaced name of the TagValue. Can be in the form `{organization_id}/{tag_key_short_name}/{tag_value_short_name}` or `{project_id}/{tag_key_short_name}/{tag_value_short_name}` or `{project_number}/{tag_key_short_name}/{tag_value_short_name}`. */ readonly namespacedName: string; /** * Immutable. The resource name of the new TagValue's parent TagKey. Must be of the form `tagKeys/{tag_key_id}`. */ readonly parent: string; /** * Immutable. User-assigned short name for TagValue. The short name should be unique for TagValues within the same parent TagKey. The short name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between. */ readonly shortName: string; /** * Update time. */ readonly updateTime: string; } /** * Retrieves a TagValue. This method will return `PERMISSION_DENIED` if the value does not exist or the user does not have permission to view it. */ export declare function getTagValueOutput(args: GetTagValueOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetTagValueOutputArgs { tagValueId: pulumi.Input; }