UNPKG

@pulumi/gcp

Version:

A Pulumi package for creating and managing Google Cloud Platform resources.

115 lines 5.1 kB
import * as pulumi from "@pulumi/pulumi"; export declare class TagBindingCollection extends pulumi.CustomResource { /** * Get an existing TagBindingCollection 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<pulumi.ID>, state?: TagBindingCollectionState, opts?: pulumi.CustomResourceOptions): TagBindingCollection; /** * Returns true if the given object is an instance of TagBindingCollection. 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 TagBindingCollection; /** * (Output) The most recent state of all direct tags on the resource, as reported by the API. * This includes the tags configured through Terraform, Google system tags, and tags attached by other clients. */ readonly activeTags: pulumi.Output<{ [key: string]: string; }>; /** * The full resource name of the resource to which the tags are bound. E.g. //cloudresourcemanager.googleapis.com/projects/123 */ readonly fullResourceName: pulumi.Output<string>; /** * The location of the TagBindingCollection. */ readonly location: pulumi.Output<string | undefined>; /** * The name of the TagBindingCollection, in the format: * locations/{location}/tagBindingCollections/{encoded_full_resource_name} */ readonly name: pulumi.Output<string>; /** * A map of tag keys to values directly bound to this resource, specified in namespaced format. * For example: * "123/environment": "production" * Keys must be namespaced names of TagKeys, and values must be short names of TagValues. * This field is non-authoritative. Terraform will only manage the precise tags present in this map. */ readonly tags: pulumi.Output<{ [key: string]: string; }>; /** * Create a TagBindingCollection 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: TagBindingCollectionArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering TagBindingCollection resources. */ export interface TagBindingCollectionState { /** * (Output) The most recent state of all direct tags on the resource, as reported by the API. * This includes the tags configured through Terraform, Google system tags, and tags attached by other clients. */ activeTags?: pulumi.Input<{ [key: string]: pulumi.Input<string>; } | undefined>; /** * The full resource name of the resource to which the tags are bound. E.g. //cloudresourcemanager.googleapis.com/projects/123 */ fullResourceName?: pulumi.Input<string | undefined>; /** * The location of the TagBindingCollection. */ location?: pulumi.Input<string | undefined>; /** * The name of the TagBindingCollection, in the format: * locations/{location}/tagBindingCollections/{encoded_full_resource_name} */ name?: pulumi.Input<string | undefined>; /** * A map of tag keys to values directly bound to this resource, specified in namespaced format. * For example: * "123/environment": "production" * Keys must be namespaced names of TagKeys, and values must be short names of TagValues. * This field is non-authoritative. Terraform will only manage the precise tags present in this map. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input<string>; } | undefined>; } /** * The set of arguments for constructing a TagBindingCollection resource. */ export interface TagBindingCollectionArgs { /** * The full resource name of the resource to which the tags are bound. E.g. //cloudresourcemanager.googleapis.com/projects/123 */ fullResourceName: pulumi.Input<string>; /** * The location of the TagBindingCollection. */ location?: pulumi.Input<string | undefined>; /** * A map of tag keys to values directly bound to this resource, specified in namespaced format. * For example: * "123/environment": "production" * Keys must be namespaced names of TagKeys, and values must be short names of TagValues. * This field is non-authoritative. Terraform will only manage the precise tags present in this map. */ tags: pulumi.Input<{ [key: string]: pulumi.Input<string>; }>; } //# sourceMappingURL=tagBindingCollection.d.ts.map