import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class Provisioningtemplate extends pulumi.CustomResource { /** * Get an existing Provisioningtemplate 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?: ProvisioningtemplateState, opts?: pulumi.CustomResourceOptions): Provisioningtemplate; /** * Returns true if the given object is an instance of Provisioningtemplate. 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 Provisioningtemplate; /** * @SUMMARY Provisioning templates are scripts used to describe how to bootstrap and install the operating system on the * host. */ readonly __meta_: pulumi.Output; /** * Notes and comments for auditing purposes. */ readonly auditComment: pulumi.Output; /** * A description of the provisioning template. */ readonly description: pulumi.Output; /** * Whether or not the template is locked for editing. */ readonly locked: pulumi.Output; /** * Name of the provisioning template. @EXAMPLE "AutoYaST default" */ readonly name: pulumi.Output; /** * IDs of the operating systems associated with this provisioning template. */ readonly operatingsystemIds: pulumi.Output; /** * Whether or not the provisioning template is a snippet be used by other templates. */ readonly snippet: pulumi.Output; /** * The markup and code of the provisioning template. @EXAMPLE "void" */ readonly template: pulumi.Output; /** * How templates are determined: When editing a template, you must assign a list of operating systems which this template * can be used with. Optionally, you can restrict a template to a list of host groups and/or environments. When a host * requests a template, Foreman will select the best match from the available templates of that type in the following * order: 1. host group and environment 2. host group only 3. environment only 4. operating system default Template * combinations attributes contains an array of hostgroup IDs and environment ID combinations so they can be used in the * provisioning template selection described above. */ readonly templateCombinationsAttributes: pulumi.Output; /** * ID of the template kind which categorizes the provisioning template. Optional for snippets, otherwise required. */ readonly templateKindId: pulumi.Output; /** * Create a Provisioningtemplate 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: ProvisioningtemplateArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Provisioningtemplate resources. */ export interface ProvisioningtemplateState { /** * @SUMMARY Provisioning templates are scripts used to describe how to bootstrap and install the operating system on the * host. */ __meta_?: pulumi.Input; /** * Notes and comments for auditing purposes. */ auditComment?: pulumi.Input; /** * A description of the provisioning template. */ description?: pulumi.Input; /** * Whether or not the template is locked for editing. */ locked?: pulumi.Input; /** * Name of the provisioning template. @EXAMPLE "AutoYaST default" */ name?: pulumi.Input; /** * IDs of the operating systems associated with this provisioning template. */ operatingsystemIds?: pulumi.Input[]>; /** * Whether or not the provisioning template is a snippet be used by other templates. */ snippet?: pulumi.Input; /** * The markup and code of the provisioning template. @EXAMPLE "void" */ template?: pulumi.Input; /** * How templates are determined: When editing a template, you must assign a list of operating systems which this template * can be used with. Optionally, you can restrict a template to a list of host groups and/or environments. When a host * requests a template, Foreman will select the best match from the available templates of that type in the following * order: 1. host group and environment 2. host group only 3. environment only 4. operating system default Template * combinations attributes contains an array of hostgroup IDs and environment ID combinations so they can be used in the * provisioning template selection described above. */ templateCombinationsAttributes?: pulumi.Input[]>; /** * ID of the template kind which categorizes the provisioning template. Optional for snippets, otherwise required. */ templateKindId?: pulumi.Input; } /** * The set of arguments for constructing a Provisioningtemplate resource. */ export interface ProvisioningtemplateArgs { /** * Notes and comments for auditing purposes. */ auditComment?: pulumi.Input; /** * A description of the provisioning template. */ description?: pulumi.Input; /** * Whether or not the template is locked for editing. */ locked?: pulumi.Input; /** * Name of the provisioning template. @EXAMPLE "AutoYaST default" */ name?: pulumi.Input; /** * IDs of the operating systems associated with this provisioning template. */ operatingsystemIds?: pulumi.Input[]>; /** * Whether or not the provisioning template is a snippet be used by other templates. */ snippet?: pulumi.Input; /** * The markup and code of the provisioning template. @EXAMPLE "void" */ template: pulumi.Input; /** * How templates are determined: When editing a template, you must assign a list of operating systems which this template * can be used with. Optionally, you can restrict a template to a list of host groups and/or environments. When a host * requests a template, Foreman will select the best match from the available templates of that type in the following * order: 1. host group and environment 2. host group only 3. environment only 4. operating system default Template * combinations attributes contains an array of hostgroup IDs and environment ID combinations so they can be used in the * provisioning template selection described above. */ templateCombinationsAttributes?: pulumi.Input[]>; /** * ID of the template kind which categorizes the provisioning template. Optional for snippets, otherwise required. */ templateKindId?: pulumi.Input; }