import * as pulumi from "@pulumi/pulumi"; export declare class Defaulttemplate extends pulumi.CustomResource { /** * Get an existing Defaulttemplate 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?: DefaulttemplateState, opts?: pulumi.CustomResourceOptions): Defaulttemplate; /** * Returns true if the given object is an instance of Defaulttemplate. 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 Defaulttemplate; /** * @SUMMARY Foreman representation of default Template. Default Templates serve as an identification string that defines * autonomy, authority, or control for a portion of a network. */ readonly __meta_: pulumi.Output; /** * ID of the operating system to assign this Default Template to */ readonly operatingsystemId: pulumi.Output; /** * Id of the Provisioning Template */ readonly provisioningtemplateId: pulumi.Output; /** * Template Kind Id to define the Default Template */ readonly templatekindId: pulumi.Output; /** * Create a Defaulttemplate 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?: DefaulttemplateArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Defaulttemplate resources. */ export interface DefaulttemplateState { /** * @SUMMARY Foreman representation of default Template. Default Templates serve as an identification string that defines * autonomy, authority, or control for a portion of a network. */ __meta_?: pulumi.Input; /** * ID of the operating system to assign this Default Template to */ operatingsystemId?: pulumi.Input; /** * Id of the Provisioning Template */ provisioningtemplateId?: pulumi.Input; /** * Template Kind Id to define the Default Template */ templatekindId?: pulumi.Input; } /** * The set of arguments for constructing a Defaulttemplate resource. */ export interface DefaulttemplateArgs { /** * ID of the operating system to assign this Default Template to */ operatingsystemId?: pulumi.Input; /** * Id of the Provisioning Template */ provisioningtemplateId?: pulumi.Input; /** * Template Kind Id to define the Default Template */ templatekindId?: pulumi.Input; }