import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Get a dictionary of cluster networks and available uplinks on the given nodes. This API is not supported for XEN hypervisor type. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * // ## fetch Network info for unconfigured node * const node_network_info = new nutanix.ClustersUnconfiguredNodeNetworksV2("node-network-info", { * extId: "0005b6b0-0b0b-0000-0000-000000000000", * requestType: "expand_cluster", * nodeLists: [{ * cvmIps: [{ * ipv4s: [{ * value: "10.73.23.55", * }], * }], * hypervisorIps: [{ * ipv4s: [{ * value: "10.33.44.12", * }], * }], * }], * }); * ``` * */ export declare class ClustersUnconfiguredNodeNetworksV2 extends pulumi.CustomResource { /** * Get an existing ClustersUnconfiguredNodeNetworksV2 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?: ClustersUnconfiguredNodeNetworksV2State, opts?: pulumi.CustomResourceOptions): ClustersUnconfiguredNodeNetworksV2; /** * Returns true if the given object is an instance of ClustersUnconfiguredNodeNetworksV2. 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 ClustersUnconfiguredNodeNetworksV2; readonly expand: pulumi.Output; /** * -(Required) Cluster UUID. */ readonly extId: pulumi.Output; /** * -(Required) List of nodes for which the network information is required. */ readonly nodeLists: pulumi.Output; readonly nodesNetworkingDetails: pulumi.Output; /** * -(Optional) Request type */ readonly requestType: pulumi.Output; /** * Create a ClustersUnconfiguredNodeNetworksV2 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: ClustersUnconfiguredNodeNetworksV2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ClustersUnconfiguredNodeNetworksV2 resources. */ export interface ClustersUnconfiguredNodeNetworksV2State { expand?: pulumi.Input; /** * -(Required) Cluster UUID. */ extId?: pulumi.Input; /** * -(Required) List of nodes for which the network information is required. */ nodeLists?: pulumi.Input[] | undefined>; nodesNetworkingDetails?: pulumi.Input[] | undefined>; /** * -(Optional) Request type */ requestType?: pulumi.Input; } /** * The set of arguments for constructing a ClustersUnconfiguredNodeNetworksV2 resource. */ export interface ClustersUnconfiguredNodeNetworksV2Args { expand?: pulumi.Input; /** * -(Required) Cluster UUID. */ extId: pulumi.Input; /** * -(Required) List of nodes for which the network information is required. */ nodeLists: pulumi.Input[]>; /** * -(Optional) Request type */ requestType?: pulumi.Input; } //# sourceMappingURL=clustersUnconfiguredNodeNetworksV2.d.ts.map