import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Configures IPMI IP address on BMC of nodes. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const impi_1 = new nutanix.FoundationIpmiConfig("impi-1", { * ipmiUser: "username", * ipmiNetmask: "10.xx.xx.xx", * blocks: [{ * nodes: [ * { * ipmiMac: "ff:ff:ff:ff:ff:ff", * ipmiConfigureNow: true, * ipmiIp: "10.xx.xx.xx", * }, * { * ipmiMac: "ff:ff:ff:ff:ff:ff", * ipmiConfigureNow: true, * ipmiIp: "10.xx.xx.xx", * }, * ], * blockId: "xyz", * }], * ipmiGateway: "10.xx.xx.xx", * ipmiPassword: "XXXXX", * }); * ``` * * * ## Error * * Incase of error, terraform will error out and display error for every failed ipmi configuration respective to its ipmi_ip. * * ## lifecycle * * * `Update` : - Resource will trigger new resource create call for any kind of update in resource block. * * `Delete` : - Delete will be a soft delete. * * See detailed information in [Nutanix Foundation IPMI Config](https://www.nutanix.dev/api_references/foundation/#/b3A6MjIyMjMzNzI-configure-bmc-i-pv4). */ export declare class FoundationIpmiConfig extends pulumi.CustomResource { /** * Get an existing FoundationIpmiConfig 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?: FoundationIpmiConfigState, opts?: pulumi.CustomResourceOptions): FoundationIpmiConfig; /** * Returns true if the given object is an instance of FoundationIpmiConfig. 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 FoundationIpmiConfig; /** * - (Required) List of blocks. */ readonly blocks: pulumi.Output; /** * - (Required) IPMI gateway. */ readonly ipmiGateway: pulumi.Output; /** * - (Required) IPMI netmask. */ readonly ipmiNetmask: pulumi.Output; /** * - (Required) IPMI password. */ readonly ipmiPassword: pulumi.Output; /** * - (Required) IPMI username. */ readonly ipmiUser: pulumi.Output; /** * Create a FoundationIpmiConfig 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: FoundationIpmiConfigArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering FoundationIpmiConfig resources. */ export interface FoundationIpmiConfigState { /** * - (Required) List of blocks. */ blocks?: pulumi.Input[] | undefined>; /** * - (Required) IPMI gateway. */ ipmiGateway?: pulumi.Input; /** * - (Required) IPMI netmask. */ ipmiNetmask?: pulumi.Input; /** * - (Required) IPMI password. */ ipmiPassword?: pulumi.Input; /** * - (Required) IPMI username. */ ipmiUser?: pulumi.Input; } /** * The set of arguments for constructing a FoundationIpmiConfig resource. */ export interface FoundationIpmiConfigArgs { /** * - (Required) List of blocks. */ blocks: pulumi.Input[]>; /** * - (Required) IPMI gateway. */ ipmiGateway: pulumi.Input; /** * - (Required) IPMI netmask. */ ipmiNetmask: pulumi.Input; /** * - (Required) IPMI password. */ ipmiPassword: pulumi.Input; /** * - (Required) IPMI username. */ ipmiUser: pulumi.Input; } //# sourceMappingURL=foundationIpmiConfig.d.ts.map