import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Create a Template from the given VM identifier. A Template stores the VM configuration and disks from the source VM. */ export declare class TemplateV2 extends pulumi.CustomResource { /** * Get an existing TemplateV2 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, state?: TemplateV2State, opts?: pulumi.CustomResourceOptions): TemplateV2; /** * Returns true if the given object is an instance of TemplateV2. 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 TemplateV2; readonly categoryExtIds: pulumi.Output; readonly createTime: pulumi.Output; readonly createdBies: pulumi.Output; readonly extId: pulumi.Output; /** * Status of a guest update. */ readonly guestUpdateStatuses: pulumi.Output; readonly links: pulumi.Output; /** * The user defined description of a Template. */ readonly templateDescription: pulumi.Output; /** * The user defined name of a Template. */ readonly templateName: pulumi.Output; /** * A model that represents an object instance that is accessible through an API endpoint. Instances of this type get an extId field that contains the globally unique identifier for that instance. Externally accessible instances are always tenant aware and, therefore, extend the TenantAwareModel */ readonly templateVersionSpec: pulumi.Output; readonly tenantId: pulumi.Output; readonly updateTime: pulumi.Output; readonly updatedBies: pulumi.Output; /** * Create a TemplateV2 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: TemplateV2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering TemplateV2 resources. */ export interface TemplateV2State { categoryExtIds?: pulumi.Input[] | undefined>; createTime?: pulumi.Input; createdBies?: pulumi.Input[] | undefined>; extId?: pulumi.Input; /** * Status of a guest update. */ guestUpdateStatuses?: pulumi.Input[] | undefined>; links?: pulumi.Input[] | undefined>; /** * The user defined description of a Template. */ templateDescription?: pulumi.Input; /** * The user defined name of a Template. */ templateName?: pulumi.Input; /** * A model that represents an object instance that is accessible through an API endpoint. Instances of this type get an extId field that contains the globally unique identifier for that instance. Externally accessible instances are always tenant aware and, therefore, extend the TenantAwareModel */ templateVersionSpec?: pulumi.Input; tenantId?: pulumi.Input; updateTime?: pulumi.Input; updatedBies?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a TemplateV2 resource. */ export interface TemplateV2Args { categoryExtIds?: pulumi.Input[] | undefined>; createdBies?: pulumi.Input[] | undefined>; /** * Status of a guest update. */ guestUpdateStatuses?: pulumi.Input[] | undefined>; /** * The user defined description of a Template. */ templateDescription?: pulumi.Input; /** * The user defined name of a Template. */ templateName: pulumi.Input; /** * A model that represents an object instance that is accessible through an API endpoint. Instances of this type get an extId field that contains the globally unique identifier for that instance. Externally accessible instances are always tenant aware and, therefore, extend the TenantAwareModel */ templateVersionSpec: pulumi.Input; updatedBies?: pulumi.Input[] | undefined>; } //# sourceMappingURL=templateV2.d.ts.map