import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a composite type. */ export declare class CompositeType extends pulumi.CustomResource { /** * Get an existing CompositeType 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): CompositeType; /** * Returns true if the given object is an instance of CompositeType. 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 CompositeType; /** * An optional textual description of the resource; provided by the client when the resource is created. */ readonly description: pulumi.Output; /** * Creation timestamp in RFC3339 text format. */ readonly insertTime: pulumi.Output; /** * Map of labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression: `[a-z]([-a-z0-9]*[a-z0-9])?` Label values must be between 0 and 63 characters long and must conform to the regular expression `([a-z]([-a-z0-9]*[a-z0-9])?)?`. */ readonly labels: pulumi.Output; /** * Name of the composite type, must follow the expression: `[a-z]([-a-z0-9_.]{0,61}[a-z0-9])?`. */ readonly name: pulumi.Output; /** * The Operation that most recently ran, or is currently running, on this composite type. */ readonly operation: pulumi.Output; readonly project: pulumi.Output; /** * Server defined URL for the resource. */ readonly selfLink: pulumi.Output; readonly status: pulumi.Output; /** * Files for the template type. */ readonly templateContents: pulumi.Output; /** * Create a CompositeType 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?: CompositeTypeArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a CompositeType resource. */ export interface CompositeTypeArgs { /** * An optional textual description of the resource; provided by the client when the resource is created. */ description?: pulumi.Input; id?: pulumi.Input; /** * Map of labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression: `[a-z]([-a-z0-9]*[a-z0-9])?` Label values must be between 0 and 63 characters long and must conform to the regular expression `([a-z]([-a-z0-9]*[a-z0-9])?)?`. */ labels?: pulumi.Input[]>; /** * Name of the composite type, must follow the expression: `[a-z]([-a-z0-9_.]{0,61}[a-z0-9])?`. */ name?: pulumi.Input; project?: pulumi.Input; /** * Files for the template type. */ templateContents?: pulumi.Input; }