import * as pulumi from "@pulumi/pulumi"; export declare class Partitiontable extends pulumi.CustomResource { /** * Get an existing Partitiontable 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?: PartitiontableState, opts?: pulumi.CustomResourceOptions): Partitiontable; /** * Returns true if the given object is an instance of Partitiontable. 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 Partitiontable; /** * @SUMMARY The disk partition layout of the host. */ readonly __meta_: pulumi.Output; /** * Any audit comments to associate with the partition table. The audit comment field is saved with the template auditing to * document the template changes. */ readonly auditComment: pulumi.Output; /** * Description of the partition table */ readonly description: pulumi.Output; /** * IDs of the hosts associated with this partition table. */ readonly hostIds: pulumi.Output; /** * IDs of the hostgroups associated with this partition table. */ readonly hostgroupIds: pulumi.Output; /** * The script that defines the partition table layout. @EXAMPLE "void" */ readonly layout: pulumi.Output; /** * Whether or not this partition table is locked for editing. */ readonly locked: pulumi.Output; /** * The name of the partition table. @EXAMPLE "AutoYaST LVM" */ readonly name: pulumi.Output; /** * IDs of the operating system associated with this partition table. */ readonly operatingsystemIds: pulumi.Output; /** * Operating system family. Values include: `"AIX"`, `"Altlinux"`, `"Archlinux"`, `"Coreos"`, `"Debian"`, `"Freebsd"`, * `"Gentoo"`, `"Junos"`, `"NXOS"`, `"Redhat"`, `"Solaris"`, `"Suse"`, `"Windows"`. */ readonly osFamily: pulumi.Output; /** * Whether or not this partition table is a snippet to be embedded in other partition tables. */ readonly snippet: pulumi.Output; /** * Create a Partitiontable 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: PartitiontableArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Partitiontable resources. */ export interface PartitiontableState { /** * @SUMMARY The disk partition layout of the host. */ __meta_?: pulumi.Input; /** * Any audit comments to associate with the partition table. The audit comment field is saved with the template auditing to * document the template changes. */ auditComment?: pulumi.Input; /** * Description of the partition table */ description?: pulumi.Input; /** * IDs of the hosts associated with this partition table. */ hostIds?: pulumi.Input[]>; /** * IDs of the hostgroups associated with this partition table. */ hostgroupIds?: pulumi.Input[]>; /** * The script that defines the partition table layout. @EXAMPLE "void" */ layout?: pulumi.Input; /** * Whether or not this partition table is locked for editing. */ locked?: pulumi.Input; /** * The name of the partition table. @EXAMPLE "AutoYaST LVM" */ name?: pulumi.Input; /** * IDs of the operating system associated with this partition table. */ operatingsystemIds?: pulumi.Input[]>; /** * Operating system family. Values include: `"AIX"`, `"Altlinux"`, `"Archlinux"`, `"Coreos"`, `"Debian"`, `"Freebsd"`, * `"Gentoo"`, `"Junos"`, `"NXOS"`, `"Redhat"`, `"Solaris"`, `"Suse"`, `"Windows"`. */ osFamily?: pulumi.Input; /** * Whether or not this partition table is a snippet to be embedded in other partition tables. */ snippet?: pulumi.Input; } /** * The set of arguments for constructing a Partitiontable resource. */ export interface PartitiontableArgs { /** * Any audit comments to associate with the partition table. The audit comment field is saved with the template auditing to * document the template changes. */ auditComment?: pulumi.Input; /** * Description of the partition table */ description?: pulumi.Input; /** * IDs of the hosts associated with this partition table. */ hostIds?: pulumi.Input[]>; /** * IDs of the hostgroups associated with this partition table. */ hostgroupIds?: pulumi.Input[]>; /** * The script that defines the partition table layout. @EXAMPLE "void" */ layout: pulumi.Input; /** * Whether or not this partition table is locked for editing. */ locked?: pulumi.Input; /** * The name of the partition table. @EXAMPLE "AutoYaST LVM" */ name?: pulumi.Input; /** * IDs of the operating system associated with this partition table. */ operatingsystemIds?: pulumi.Input[]>; /** * Operating system family. Values include: `"AIX"`, `"Altlinux"`, `"Archlinux"`, `"Coreos"`, `"Debian"`, `"Freebsd"`, * `"Gentoo"`, `"Junos"`, `"NXOS"`, `"Redhat"`, `"Solaris"`, `"Suse"`, `"Windows"`. */ osFamily?: pulumi.Input; /** * Whether or not this partition table is a snippet to be embedded in other partition tables. */ snippet?: pulumi.Input; }