import * as pulumi from "@pulumi/pulumi"; import * as enums from "../../types/enums"; /** * Creates an Annotation * Note - this resource's API doesn't support deletion. When deleted, the resource will persist * on Google Cloud even though it will be deleted from Pulumi state. */ export declare class Annotation extends pulumi.CustomResource { /** * Get an existing Annotation 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Annotation; /** * Returns true if the given object is an instance of Annotation. 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 Annotation; /** * Create time stamp. */ readonly createTime: pulumi.Output; /** * Labels as key value pairs. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * name of resource. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Optional. An optional request ID to identify requests. */ readonly requestId: pulumi.Output; /** * Type of an annotation. */ readonly type: pulumi.Output; /** * Update time stamp. */ readonly updateTime: pulumi.Output; /** * Create a Annotation 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?: AnnotationArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Annotation resource. */ export interface AnnotationArgs { /** * Labels as key value pairs. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; /** * name of resource. */ name?: pulumi.Input; project?: pulumi.Input; /** * Optional. An optional request ID to identify requests. */ requestId?: pulumi.Input; /** * Type of an annotation. */ type?: pulumi.Input; }