import * as pulumi from "@pulumi/pulumi"; /** * Onboard nodes from a hardware manager (such as Cisco Intersight) into Foundation Central. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const node = new nutanix.FoundationCentralOnboardNodes("node", {nodeSerial: "ABC12345D6E"}); * ``` * * * ## Error * * Incase of error (such as node serial not found), an error will be generated. * * ## lifecycle * * * `Create` : - Resource will trigger onboarding of the node. * * `delete` : - Node will be removed from FC "imaged nodes" but will still be available in the hardware manager for re-onboarding. */ export declare class FoundationCentralOnboardNodes extends pulumi.CustomResource { /** * Get an existing FoundationCentralOnboardNodes 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?: FoundationCentralOnboardNodesState, opts?: pulumi.CustomResourceOptions): FoundationCentralOnboardNodes; /** * Returns true if the given object is an instance of FoundationCentralOnboardNodes. 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 FoundationCentralOnboardNodes; /** * Block serial number of the node */ readonly blockSerial: pulumi.Output; /** * UUID of the imagedNode in FC */ readonly imagedNodeUuid: pulumi.Output; /** * Model of the node */ readonly model: pulumi.Output; /** * Serial number of the node to onboard */ readonly nodeSerial: pulumi.Output; /** * State of the node (e.g. STATE_ONBOARDED) */ readonly nodeState: pulumi.Output; /** * Type of node (e.g. "on-prem") */ readonly nodeType: pulumi.Output; /** * Create a FoundationCentralOnboardNodes 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: FoundationCentralOnboardNodesArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering FoundationCentralOnboardNodes resources. */ export interface FoundationCentralOnboardNodesState { /** * Block serial number of the node */ blockSerial?: pulumi.Input; /** * UUID of the imagedNode in FC */ imagedNodeUuid?: pulumi.Input; /** * Model of the node */ model?: pulumi.Input; /** * Serial number of the node to onboard */ nodeSerial?: pulumi.Input; /** * State of the node (e.g. STATE_ONBOARDED) */ nodeState?: pulumi.Input; /** * Type of node (e.g. "on-prem") */ nodeType?: pulumi.Input; } /** * The set of arguments for constructing a FoundationCentralOnboardNodes resource. */ export interface FoundationCentralOnboardNodesArgs { /** * Serial number of the node to onboard */ nodeSerial: pulumi.Input; } //# sourceMappingURL=foundationCentralOnboardNodes.d.ts.map