import * as pulumi from "@pulumi/pulumi"; /** * Perform an inventory operation to identify/scan entities on the cluster that can be updated through LCM. * * ## Example * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * // perform inventory * const inventory = new nutanix.LcmPerformInventoryV2("inventory", {xClusterId: "0005a104-0b0b-4b0b-8005-0b0b0b0b0b0b"}); * ``` * */ export declare class LcmPerformInventoryV2 extends pulumi.CustomResource { /** * Get an existing LcmPerformInventoryV2 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?: LcmPerformInventoryV2State, opts?: pulumi.CustomResourceOptions): LcmPerformInventoryV2; /** * Returns true if the given object is an instance of LcmPerformInventoryV2. 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 LcmPerformInventoryV2; /** * Cluster uuid on which the resource is present or operation is being performed. * * See detailed information in [Nutanix LCM Perform Inventory v4](https://developers.nutanix.com/api-reference?namespace=lifecycle&version=v4.2#tag/Inventory/operation/performInventory) */ readonly xClusterId: pulumi.Output; /** * Create a LcmPerformInventoryV2 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?: LcmPerformInventoryV2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering LcmPerformInventoryV2 resources. */ export interface LcmPerformInventoryV2State { /** * Cluster uuid on which the resource is present or operation is being performed. * * See detailed information in [Nutanix LCM Perform Inventory v4](https://developers.nutanix.com/api-reference?namespace=lifecycle&version=v4.2#tag/Inventory/operation/performInventory) */ xClusterId?: pulumi.Input; } /** * The set of arguments for constructing a LcmPerformInventoryV2 resource. */ export interface LcmPerformInventoryV2Args { /** * Cluster uuid on which the resource is present or operation is being performed. * * See detailed information in [Nutanix LCM Perform Inventory v4](https://developers.nutanix.com/api-reference?namespace=lifecycle&version=v4.2#tag/Inventory/operation/performInventory) */ xClusterId?: pulumi.Input; } //# sourceMappingURL=lcmPerformInventoryV2.d.ts.map