Nutanix v0.8.0 published on Sunday, May 11, 2025 by Piers Karsenbarg
nutanix.getPcRestorePointV2
Explore with Pulumi AI
Retrieves detailed information about a specific recovery point and provides essential domain manager information stored in the backup, which is required for the restoration process.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
import * as nutanix from "@pulumi/nutanix";
const pe = new nutanix.Provider("pe", {
username: _var.nutanix_pe_username,
password: _var.nutanix_pe_password,
endpoint: _var.nutanix_pe_endpoint,
port: "9440",
insecure: true,
});
const getRestorePoint = nutanix.getPcRestorePointV2({
restorableDomainManagerExtId: data.nutanix_restorable_pcs_v2.test.restorable_pcs[0].ext_id,
restoreSourceExtId: nutanix_pc_restore_source_v2["cluster-location"].id,
extId: data.nutanix_pc_restore_points_v2.test.restore_points[0].ext_id,
});
import pulumi
import pulumi_nutanix as nutanix
pe = nutanix.Provider("pe",
username=var["nutanix_pe_username"],
password=var["nutanix_pe_password"],
endpoint=var["nutanix_pe_endpoint"],
port="9440",
insecure=True)
get_restore_point = nutanix.get_pc_restore_point_v2(restorable_domain_manager_ext_id=data["nutanix_restorable_pcs_v2"]["test"]["restorable_pcs"][0]["ext_id"],
restore_source_ext_id=nutanix_pc_restore_source_v2["cluster-location"]["id"],
ext_id=data["nutanix_pc_restore_points_v2"]["test"]["restore_points"][0]["ext_id"])
package main
import (
"github.com/pierskarsenbarg/pulumi-nutanix/sdk/go/nutanix"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := nutanix.NewProvider(ctx, "pe", &nutanix.ProviderArgs{
Username: pulumi.Any(_var.Nutanix_pe_username),
Password: pulumi.Any(_var.Nutanix_pe_password),
Endpoint: pulumi.Any(_var.Nutanix_pe_endpoint),
Port: pulumi.String("9440"),
Insecure: pulumi.Bool(true),
})
if err != nil {
return err
}
_, err = nutanix.GetPcRestorePointV2(ctx, &nutanix.GetPcRestorePointV2Args{
RestorableDomainManagerExtId: data.Nutanix_restorable_pcs_v2.Test.Restorable_pcs[0].Ext_id,
RestoreSourceExtId: nutanix_pc_restore_source_v2.ClusterLocation.Id,
ExtId: data.Nutanix_pc_restore_points_v2.Test.Restore_points[0].Ext_id,
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nutanix = PiersKarsenbarg.Nutanix;
using Nutanix = Pulumi.Nutanix;
return await Deployment.RunAsync(() =>
{
var pe = new Nutanix.Provider("pe", new()
{
Username = @var.Nutanix_pe_username,
Password = @var.Nutanix_pe_password,
Endpoint = @var.Nutanix_pe_endpoint,
Port = "9440",
Insecure = true,
});
var getRestorePoint = Nutanix.GetPcRestorePointV2.Invoke(new()
{
RestorableDomainManagerExtId = data.Nutanix_restorable_pcs_v2.Test.Restorable_pcs[0].Ext_id,
RestoreSourceExtId = nutanix_pc_restore_source_v2.Cluster_location.Id,
ExtId = data.Nutanix_pc_restore_points_v2.Test.Restore_points[0].Ext_id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.Provider;
import com.pulumi.nutanix.ProviderArgs;
import com.pulumi.nutanix.NutanixFunctions;
import com.pulumi.nutanix.inputs.GetPcRestorePointV2Args;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var pe = new Provider("pe", ProviderArgs.builder()
.username(var_.nutanix_pe_username())
.password(var_.nutanix_pe_password())
.endpoint(var_.nutanix_pe_endpoint())
.port("9440")
.insecure(true)
.build());
final var getRestorePoint = NutanixFunctions.getPcRestorePointV2(GetPcRestorePointV2Args.builder()
.restorableDomainManagerExtId(data.nutanix_restorable_pcs_v2().test().restorable_pcs()[0].ext_id())
.restoreSourceExtId(nutanix_pc_restore_source_v2.cluster-location().id())
.extId(data.nutanix_pc_restore_points_v2().test().restore_points()[0].ext_id())
.build());
}
}
resources:
pe:
type: pulumi:providers:nutanix
properties:
username: ${var.nutanix_pe_username}
password: ${var.nutanix_pe_password}
endpoint: ${var.nutanix_pe_endpoint}
port: 9440
insecure: true
variables:
getRestorePoint:
fn::invoke:
function: nutanix:getPcRestorePointV2
arguments:
restorableDomainManagerExtId: ${data.nutanix_restorable_pcs_v2.test.restorable_pcs[0].ext_id}
restoreSourceExtId: ${nutanix_pc_restore_source_v2"cluster-location"[%!s(MISSING)].id}
extId: ${data.nutanix_pc_restore_points_v2.test.restore_points[0].ext_id}
Using getPcRestorePointV2
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getPcRestorePointV2(args: GetPcRestorePointV2Args, opts?: InvokeOptions): Promise<GetPcRestorePointV2Result>
function getPcRestorePointV2Output(args: GetPcRestorePointV2OutputArgs, opts?: InvokeOptions): Output<GetPcRestorePointV2Result>
def get_pc_restore_point_v2(ext_id: Optional[str] = None,
restorable_domain_manager_ext_id: Optional[str] = None,
restore_source_ext_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetPcRestorePointV2Result
def get_pc_restore_point_v2_output(ext_id: Optional[pulumi.Input[str]] = None,
restorable_domain_manager_ext_id: Optional[pulumi.Input[str]] = None,
restore_source_ext_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetPcRestorePointV2Result]
func GetPcRestorePointV2(ctx *Context, args *GetPcRestorePointV2Args, opts ...InvokeOption) (*GetPcRestorePointV2Result, error)
func GetPcRestorePointV2Output(ctx *Context, args *GetPcRestorePointV2OutputArgs, opts ...InvokeOption) GetPcRestorePointV2ResultOutput
> Note: This function is named GetPcRestorePointV2
in the Go SDK.
public static class GetPcRestorePointV2
{
public static Task<GetPcRestorePointV2Result> InvokeAsync(GetPcRestorePointV2Args args, InvokeOptions? opts = null)
public static Output<GetPcRestorePointV2Result> Invoke(GetPcRestorePointV2InvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetPcRestorePointV2Result> getPcRestorePointV2(GetPcRestorePointV2Args args, InvokeOptions options)
public static Output<GetPcRestorePointV2Result> getPcRestorePointV2(GetPcRestorePointV2Args args, InvokeOptions options)
fn::invoke:
function: nutanix:index/getPcRestorePointV2:getPcRestorePointV2
arguments:
# arguments dictionary
The following arguments are supported:
- Ext
Id string - Restore point ID for the backup created in cluster/object store.
- Restorable
Domain stringManager Ext Id - A unique identifier for the domain manager.
- Restore
Source stringExt Id - A unique identifier obtained from the restore source API that corresponds to the details provided for the restore source.
- Ext
Id string - Restore point ID for the backup created in cluster/object store.
- Restorable
Domain stringManager Ext Id - A unique identifier for the domain manager.
- Restore
Source stringExt Id - A unique identifier obtained from the restore source API that corresponds to the details provided for the restore source.
- ext
Id String - Restore point ID for the backup created in cluster/object store.
- restorable
Domain StringManager Ext Id - A unique identifier for the domain manager.
- restore
Source StringExt Id - A unique identifier obtained from the restore source API that corresponds to the details provided for the restore source.
- ext
Id string - Restore point ID for the backup created in cluster/object store.
- restorable
Domain stringManager Ext Id - A unique identifier for the domain manager.
- restore
Source stringExt Id - A unique identifier obtained from the restore source API that corresponds to the details provided for the restore source.
- ext_
id str - Restore point ID for the backup created in cluster/object store.
- restorable_
domain_ strmanager_ ext_ id - A unique identifier for the domain manager.
- restore_
source_ strext_ id - A unique identifier obtained from the restore source API that corresponds to the details provided for the restore source.
- ext
Id String - Restore point ID for the backup created in cluster/object store.
- restorable
Domain StringManager Ext Id - A unique identifier for the domain manager.
- restore
Source StringExt Id - A unique identifier obtained from the restore source API that corresponds to the details provided for the restore source.
getPcRestorePointV2 Result
The following output properties are available:
- Creation
Time string - The UTC date and time in ISO-8601 format when the Restore point was created.
- Domain
Managers List<PiersKarsenbarg. Nutanix. Outputs. Get Pc Restore Point V2Domain Manager> - Domain manager (Prism Central) details.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Id string
- The provider-assigned unique ID for this managed resource.
- Links
List<Piers
Karsenbarg. Nutanix. Outputs. Get Pc Restore Point V2Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Restorable
Domain stringManager Ext Id - Restore
Source stringExt Id - Tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- Creation
Time string - The UTC date and time in ISO-8601 format when the Restore point was created.
- Domain
Managers []GetPc Restore Point V2Domain Manager - Domain manager (Prism Central) details.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Id string
- The provider-assigned unique ID for this managed resource.
- Links
[]Get
Pc Restore Point V2Link - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Restorable
Domain stringManager Ext Id - Restore
Source stringExt Id - Tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- creation
Time String - The UTC date and time in ISO-8601 format when the Restore point was created.
- domain
Managers List<GetPc Restore Point V2Domain Manager> - Domain manager (Prism Central) details.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- id String
- The provider-assigned unique ID for this managed resource.
- links
List<Get
Pc Restore Point V2Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- restorable
Domain StringManager Ext Id - restore
Source StringExt Id - tenant
Id String - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- creation
Time string - The UTC date and time in ISO-8601 format when the Restore point was created.
- domain
Managers GetPc Restore Point V2Domain Manager[] - Domain manager (Prism Central) details.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- id string
- The provider-assigned unique ID for this managed resource.
- links
Get
Pc Restore Point V2Link[] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- restorable
Domain stringManager Ext Id - restore
Source stringExt Id - tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- creation_
time str - The UTC date and time in ISO-8601 format when the Restore point was created.
- domain_
managers Sequence[GetPc Restore Point V2Domain Manager] - Domain manager (Prism Central) details.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- id str
- The provider-assigned unique ID for this managed resource.
- links
Sequence[Get
Pc Restore Point V2Link] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- restorable_
domain_ strmanager_ ext_ id - restore_
source_ strext_ id - tenant_
id str - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- creation
Time String - The UTC date and time in ISO-8601 format when the Restore point was created.
- domain
Managers List<Property Map> - Domain manager (Prism Central) details.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- id String
- The provider-assigned unique ID for this managed resource.
- links List<Property Map>
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- restorable
Domain StringManager Ext Id - restore
Source StringExt Id - tenant
Id String - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
Supporting Types
GetPcRestorePointV2DomainManager
- Configs
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Config> - Domain manager (Prism Central) cluster configuration details.
- Ext
Id string - Restore point ID for the backup created in cluster/object store.
- Hosting
Cluster stringExt Id - The external identifier of the cluster hosting the domain manager (Prism Central) instance.
- Is
Registered boolWith Hosting Cluster - Boolean value indicating if the domain manager (Prism Central) is registered with the hosting cluster, that is, Prism Element.
- Networks
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network> - Domain manager (Prism Central) network configuration details.
- Node
Ext List<string>Ids - Domain manager (Prism Central) nodes external identifier.
- Should
Enable boolHigh Availability - This configuration enables Prism Central to be deployed in scale-out mode.
- Tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- Configs
[]Get
Pc Restore Point V2Domain Manager Config - Domain manager (Prism Central) cluster configuration details.
- Ext
Id string - Restore point ID for the backup created in cluster/object store.
- Hosting
Cluster stringExt Id - The external identifier of the cluster hosting the domain manager (Prism Central) instance.
- Is
Registered boolWith Hosting Cluster - Boolean value indicating if the domain manager (Prism Central) is registered with the hosting cluster, that is, Prism Element.
- Networks
[]Get
Pc Restore Point V2Domain Manager Network - Domain manager (Prism Central) network configuration details.
- Node
Ext []stringIds - Domain manager (Prism Central) nodes external identifier.
- Should
Enable boolHigh Availability - This configuration enables Prism Central to be deployed in scale-out mode.
- Tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- configs
List<Get
Pc Restore Point V2Domain Manager Config> - Domain manager (Prism Central) cluster configuration details.
- ext
Id String - Restore point ID for the backup created in cluster/object store.
- hosting
Cluster StringExt Id - The external identifier of the cluster hosting the domain manager (Prism Central) instance.
- is
Registered BooleanWith Hosting Cluster - Boolean value indicating if the domain manager (Prism Central) is registered with the hosting cluster, that is, Prism Element.
- networks
List<Get
Pc Restore Point V2Domain Manager Network> - Domain manager (Prism Central) network configuration details.
- node
Ext List<String>Ids - Domain manager (Prism Central) nodes external identifier.
- should
Enable BooleanHigh Availability - This configuration enables Prism Central to be deployed in scale-out mode.
- tenant
Id String - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- configs
Get
Pc Restore Point V2Domain Manager Config[] - Domain manager (Prism Central) cluster configuration details.
- ext
Id string - Restore point ID for the backup created in cluster/object store.
- hosting
Cluster stringExt Id - The external identifier of the cluster hosting the domain manager (Prism Central) instance.
- is
Registered booleanWith Hosting Cluster - Boolean value indicating if the domain manager (Prism Central) is registered with the hosting cluster, that is, Prism Element.
- networks
Get
Pc Restore Point V2Domain Manager Network[] - Domain manager (Prism Central) network configuration details.
- node
Ext string[]Ids - Domain manager (Prism Central) nodes external identifier.
- should
Enable booleanHigh Availability - This configuration enables Prism Central to be deployed in scale-out mode.
- tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- configs
Sequence[Get
Pc Restore Point V2Domain Manager Config] - Domain manager (Prism Central) cluster configuration details.
- ext_
id str - Restore point ID for the backup created in cluster/object store.
- hosting_
cluster_ strext_ id - The external identifier of the cluster hosting the domain manager (Prism Central) instance.
- is_
registered_ boolwith_ hosting_ cluster - Boolean value indicating if the domain manager (Prism Central) is registered with the hosting cluster, that is, Prism Element.
- networks
Sequence[Get
Pc Restore Point V2Domain Manager Network] - Domain manager (Prism Central) network configuration details.
- node_
ext_ Sequence[str]ids - Domain manager (Prism Central) nodes external identifier.
- should_
enable_ boolhigh_ availability - This configuration enables Prism Central to be deployed in scale-out mode.
- tenant_
id str - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- configs List<Property Map>
- Domain manager (Prism Central) cluster configuration details.
- ext
Id String - Restore point ID for the backup created in cluster/object store.
- hosting
Cluster StringExt Id - The external identifier of the cluster hosting the domain manager (Prism Central) instance.
- is
Registered BooleanWith Hosting Cluster - Boolean value indicating if the domain manager (Prism Central) is registered with the hosting cluster, that is, Prism Element.
- networks List<Property Map>
- Domain manager (Prism Central) network configuration details.
- node
Ext List<String>Ids - Domain manager (Prism Central) nodes external identifier.
- should
Enable BooleanHigh Availability - This configuration enables Prism Central to be deployed in scale-out mode.
- tenant
Id String - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
GetPcRestorePointV2DomainManagerConfig
- Bootstrap
Config PiersKarsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Config Bootstrap Config - Bootstrap configuration details for the domain manager (Prism Central).
- Build
Info PiersKarsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Config Build Info - -Currently representing the build information to be used for the cluster creation.
- Name string
- Name of the domain manager (Prism Central).
- Resource
Configs List<PiersKarsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Config Resource Config> - This configuration is used to provide the resource-related details like container external identifiers, number of VCPUs, memory size, data disk size of the domain manager (Prism Central). In the case of a multi-node setup, the sum of resources like number of VCPUs, memory size and data disk size are provided.
- Should
Enable boolLockdown Mode - A boolean value indicating whether to enable lockdown mode for a cluster.
- Size string
- Domain manager (Prism Central) size is an enumeration of starter, small, large, or extra large starter values. possible values are:
SMALL
: Domain manager (Prism Central) of size small.LARGE
: Domain manager (Prism Central) of size large.EXTRALARGE
: Domain manager (Prism Central) of size extra large.STARTER
: Domain manager (Prism Central) of size starter.
- Credentials
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Config Credential>
- Bootstrap
Config GetPc Restore Point V2Domain Manager Config Bootstrap Config - Bootstrap configuration details for the domain manager (Prism Central).
- Build
Info GetPc Restore Point V2Domain Manager Config Build Info - -Currently representing the build information to be used for the cluster creation.
- Name string
- Name of the domain manager (Prism Central).
- Resource
Configs []GetPc Restore Point V2Domain Manager Config Resource Config - This configuration is used to provide the resource-related details like container external identifiers, number of VCPUs, memory size, data disk size of the domain manager (Prism Central). In the case of a multi-node setup, the sum of resources like number of VCPUs, memory size and data disk size are provided.
- Should
Enable boolLockdown Mode - A boolean value indicating whether to enable lockdown mode for a cluster.
- Size string
- Domain manager (Prism Central) size is an enumeration of starter, small, large, or extra large starter values. possible values are:
SMALL
: Domain manager (Prism Central) of size small.LARGE
: Domain manager (Prism Central) of size large.EXTRALARGE
: Domain manager (Prism Central) of size extra large.STARTER
: Domain manager (Prism Central) of size starter.
- Credentials
[]Get
Pc Restore Point V2Domain Manager Config Credential
- bootstrap
Config GetPc Restore Point V2Domain Manager Config Bootstrap Config - Bootstrap configuration details for the domain manager (Prism Central).
- build
Info GetPc Restore Point V2Domain Manager Config Build Info - -Currently representing the build information to be used for the cluster creation.
- name String
- Name of the domain manager (Prism Central).
- resource
Configs List<GetPc Restore Point V2Domain Manager Config Resource Config> - This configuration is used to provide the resource-related details like container external identifiers, number of VCPUs, memory size, data disk size of the domain manager (Prism Central). In the case of a multi-node setup, the sum of resources like number of VCPUs, memory size and data disk size are provided.
- should
Enable BooleanLockdown Mode - A boolean value indicating whether to enable lockdown mode for a cluster.
- size String
- Domain manager (Prism Central) size is an enumeration of starter, small, large, or extra large starter values. possible values are:
SMALL
: Domain manager (Prism Central) of size small.LARGE
: Domain manager (Prism Central) of size large.EXTRALARGE
: Domain manager (Prism Central) of size extra large.STARTER
: Domain manager (Prism Central) of size starter.
- credentials
List<Get
Pc Restore Point V2Domain Manager Config Credential>
- bootstrap
Config GetPc Restore Point V2Domain Manager Config Bootstrap Config - Bootstrap configuration details for the domain manager (Prism Central).
- build
Info GetPc Restore Point V2Domain Manager Config Build Info - -Currently representing the build information to be used for the cluster creation.
- name string
- Name of the domain manager (Prism Central).
- resource
Configs GetPc Restore Point V2Domain Manager Config Resource Config[] - This configuration is used to provide the resource-related details like container external identifiers, number of VCPUs, memory size, data disk size of the domain manager (Prism Central). In the case of a multi-node setup, the sum of resources like number of VCPUs, memory size and data disk size are provided.
- should
Enable booleanLockdown Mode - A boolean value indicating whether to enable lockdown mode for a cluster.
- size string
- Domain manager (Prism Central) size is an enumeration of starter, small, large, or extra large starter values. possible values are:
SMALL
: Domain manager (Prism Central) of size small.LARGE
: Domain manager (Prism Central) of size large.EXTRALARGE
: Domain manager (Prism Central) of size extra large.STARTER
: Domain manager (Prism Central) of size starter.
- credentials
Get
Pc Restore Point V2Domain Manager Config Credential[]
- bootstrap_
config GetPc Restore Point V2Domain Manager Config Bootstrap Config - Bootstrap configuration details for the domain manager (Prism Central).
- build_
info GetPc Restore Point V2Domain Manager Config Build Info - -Currently representing the build information to be used for the cluster creation.
- name str
- Name of the domain manager (Prism Central).
- resource_
configs Sequence[GetPc Restore Point V2Domain Manager Config Resource Config] - This configuration is used to provide the resource-related details like container external identifiers, number of VCPUs, memory size, data disk size of the domain manager (Prism Central). In the case of a multi-node setup, the sum of resources like number of VCPUs, memory size and data disk size are provided.
- should_
enable_ boollockdown_ mode - A boolean value indicating whether to enable lockdown mode for a cluster.
- size str
- Domain manager (Prism Central) size is an enumeration of starter, small, large, or extra large starter values. possible values are:
SMALL
: Domain manager (Prism Central) of size small.LARGE
: Domain manager (Prism Central) of size large.EXTRALARGE
: Domain manager (Prism Central) of size extra large.STARTER
: Domain manager (Prism Central) of size starter.
- credentials
Sequence[Get
Pc Restore Point V2Domain Manager Config Credential]
- bootstrap
Config Property Map - Bootstrap configuration details for the domain manager (Prism Central).
- build
Info Property Map - -Currently representing the build information to be used for the cluster creation.
- name String
- Name of the domain manager (Prism Central).
- resource
Configs List<Property Map> - This configuration is used to provide the resource-related details like container external identifiers, number of VCPUs, memory size, data disk size of the domain manager (Prism Central). In the case of a multi-node setup, the sum of resources like number of VCPUs, memory size and data disk size are provided.
- should
Enable BooleanLockdown Mode - A boolean value indicating whether to enable lockdown mode for a cluster.
- size String
- Domain manager (Prism Central) size is an enumeration of starter, small, large, or extra large starter values. possible values are:
SMALL
: Domain manager (Prism Central) of size small.LARGE
: Domain manager (Prism Central) of size large.EXTRALARGE
: Domain manager (Prism Central) of size extra large.STARTER
: Domain manager (Prism Central) of size starter.
- credentials List<Property Map>
GetPcRestorePointV2DomainManagerConfigBootstrapConfig
- Environment
Info PiersKarsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Config Bootstrap Config Environment Info - Environment information for the domain manager (Prism Central) cluster.
- Cloud
Init List<PiersConfigs Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Config Bootstrap Config Cloud Init Config>
- Environment
Info GetPc Restore Point V2Domain Manager Config Bootstrap Config Environment Info - Environment information for the domain manager (Prism Central) cluster.
- Cloud
Init []GetConfigs Pc Restore Point V2Domain Manager Config Bootstrap Config Cloud Init Config
- environment
Info GetPc Restore Point V2Domain Manager Config Bootstrap Config Environment Info - Environment information for the domain manager (Prism Central) cluster.
- cloud
Init List<GetConfigs Pc Restore Point V2Domain Manager Config Bootstrap Config Cloud Init Config>
- environment
Info GetPc Restore Point V2Domain Manager Config Bootstrap Config Environment Info - Environment information for the domain manager (Prism Central) cluster.
- cloud
Init GetConfigs Pc Restore Point V2Domain Manager Config Bootstrap Config Cloud Init Config[]
- environment_
info GetPc Restore Point V2Domain Manager Config Bootstrap Config Environment Info - Environment information for the domain manager (Prism Central) cluster.
- cloud_
init_ Sequence[Getconfigs Pc Restore Point V2Domain Manager Config Bootstrap Config Cloud Init Config]
- environment
Info Property Map - Environment information for the domain manager (Prism Central) cluster.
- cloud
Init List<Property Map>Configs
GetPcRestorePointV2DomainManagerConfigBootstrapConfigCloudInitConfig
- cloud
Init List<Property Map>Scripts - metadata String
- datasource
Type String
GetPcRestorePointV2DomainManagerConfigBootstrapConfigCloudInitConfigCloudInitScript
GetPcRestorePointV2DomainManagerConfigBootstrapConfigCloudInitConfigCloudInitScriptCustomKeyValue
GetPcRestorePointV2DomainManagerConfigBootstrapConfigCloudInitConfigCloudInitScriptCustomKeyValueKeyValuePair
- Name string
- Name of the domain manager (Prism Central).
- Values
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Config Bootstrap Config Cloud Init Config Cloud Init Script Custom Key Value Key Value Pair Value> - The fully qualified domain name of the host.
- Name string
- Name of the domain manager (Prism Central).
- Values
[]Get
Pc Restore Point V2Domain Manager Config Bootstrap Config Cloud Init Config Cloud Init Script Custom Key Value Key Value Pair Value - The fully qualified domain name of the host.
- name String
- Name of the domain manager (Prism Central).
- values
List<Get
Pc Restore Point V2Domain Manager Config Bootstrap Config Cloud Init Config Cloud Init Script Custom Key Value Key Value Pair Value> - The fully qualified domain name of the host.
- name string
- Name of the domain manager (Prism Central).
- values
Get
Pc Restore Point V2Domain Manager Config Bootstrap Config Cloud Init Config Cloud Init Script Custom Key Value Key Value Pair Value[] - The fully qualified domain name of the host.
- name str
- Name of the domain manager (Prism Central).
- values
Sequence[Get
Pc Restore Point V2Domain Manager Config Bootstrap Config Cloud Init Config Cloud Init Script Custom Key Value Key Value Pair Value] - The fully qualified domain name of the host.
- name String
- Name of the domain manager (Prism Central).
- values List<Property Map>
- The fully qualified domain name of the host.
GetPcRestorePointV2DomainManagerConfigBootstrapConfigCloudInitConfigCloudInitScriptCustomKeyValueKeyValuePairValue
- Boolean bool
- Integer int
- Integer
Lists List<int> - Map
Of List<PiersStrings Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Config Bootstrap Config Cloud Init Config Cloud Init Script Custom Key Value Key Value Pair Value Map Of String> - Object Dictionary<string, string>
- String string
- String
Lists List<string>
- Boolean bool
- Integer int
- Integer
Lists []int - Map
Of []GetStrings Pc Restore Point V2Domain Manager Config Bootstrap Config Cloud Init Config Cloud Init Script Custom Key Value Key Value Pair Value Map Of String - Object map[string]string
- String string
- String
Lists []string
- boolean_ Boolean
- integer Integer
- integer
Lists List<Integer> - map
Of List<GetStrings Pc Restore Point V2Domain Manager Config Bootstrap Config Cloud Init Config Cloud Init Script Custom Key Value Key Value Pair Value Map Of String> - object Map<String,String>
- string String
- string
Lists List<String>
- boolean boolean
- integer number
- integer
Lists number[] - map
Of GetStrings Pc Restore Point V2Domain Manager Config Bootstrap Config Cloud Init Config Cloud Init Script Custom Key Value Key Value Pair Value Map Of String[] - object {[key: string]: string}
- string string
- string
Lists string[]
- boolean bool
- integer int
- integer_
lists Sequence[int] - map_
of_ Sequence[Getstrings Pc Restore Point V2Domain Manager Config Bootstrap Config Cloud Init Config Cloud Init Script Custom Key Value Key Value Pair Value Map Of String] - object Mapping[str, str]
- string str
- string_
lists Sequence[str]
- boolean Boolean
- integer Number
- integer
Lists List<Number> - map
Of List<Property Map>Strings - object Map<String>
- string String
- string
Lists List<String>
GetPcRestorePointV2DomainManagerConfigBootstrapConfigCloudInitConfigCloudInitScriptCustomKeyValueKeyValuePairValueMapOfString
- Map Dictionary<string, string>
- Map map[string]string
- map Map<String,String>
- map {[key: string]: string}
- map Mapping[str, str]
- map Map<String>
GetPcRestorePointV2DomainManagerConfigBootstrapConfigCloudInitConfigCloudInitScriptUserData
- Value string
- The fully qualified domain name of the host.
- Value string
- The fully qualified domain name of the host.
- value String
- The fully qualified domain name of the host.
- value string
- The fully qualified domain name of the host.
- value str
- The fully qualified domain name of the host.
- value String
- The fully qualified domain name of the host.
GetPcRestorePointV2DomainManagerConfigBootstrapConfigEnvironmentInfo
- Provider
Type string - Enums denoting the provider type of the PC, that is, AHV or ESXi. Following are the supported provider types:
VSPHERE
: Vsphere cloud provider.AZURE
: Azure cloud provider.NTNX
: Nutanix cloud provider.GCP
: GCP cloud provider.AWS
: AWS cloud provider.
- Provisioning
Type string - Enums denoting the instance type of the cloud PC. It indicates whether the PC is created on bare-metal or on a cloud-provisioned VM. Hence, it supports two possible values:
NTNX
: Nutanix instance.NATIVE
: Native instance.
- Type string
- Enums denoting the environment type of the PC, that is, on-prem PC or cloud PC. Following are the supported entity types:
ONPREM
: On-prem environment.NTNX_CLOUD
: Nutanix cloud environment.
- Provider
Type string - Enums denoting the provider type of the PC, that is, AHV or ESXi. Following are the supported provider types:
VSPHERE
: Vsphere cloud provider.AZURE
: Azure cloud provider.NTNX
: Nutanix cloud provider.GCP
: GCP cloud provider.AWS
: AWS cloud provider.
- Provisioning
Type string - Enums denoting the instance type of the cloud PC. It indicates whether the PC is created on bare-metal or on a cloud-provisioned VM. Hence, it supports two possible values:
NTNX
: Nutanix instance.NATIVE
: Native instance.
- Type string
- Enums denoting the environment type of the PC, that is, on-prem PC or cloud PC. Following are the supported entity types:
ONPREM
: On-prem environment.NTNX_CLOUD
: Nutanix cloud environment.
- provider
Type String - Enums denoting the provider type of the PC, that is, AHV or ESXi. Following are the supported provider types:
VSPHERE
: Vsphere cloud provider.AZURE
: Azure cloud provider.NTNX
: Nutanix cloud provider.GCP
: GCP cloud provider.AWS
: AWS cloud provider.
- provisioning
Type String - Enums denoting the instance type of the cloud PC. It indicates whether the PC is created on bare-metal or on a cloud-provisioned VM. Hence, it supports two possible values:
NTNX
: Nutanix instance.NATIVE
: Native instance.
- type String
- Enums denoting the environment type of the PC, that is, on-prem PC or cloud PC. Following are the supported entity types:
ONPREM
: On-prem environment.NTNX_CLOUD
: Nutanix cloud environment.
- provider
Type string - Enums denoting the provider type of the PC, that is, AHV or ESXi. Following are the supported provider types:
VSPHERE
: Vsphere cloud provider.AZURE
: Azure cloud provider.NTNX
: Nutanix cloud provider.GCP
: GCP cloud provider.AWS
: AWS cloud provider.
- provisioning
Type string - Enums denoting the instance type of the cloud PC. It indicates whether the PC is created on bare-metal or on a cloud-provisioned VM. Hence, it supports two possible values:
NTNX
: Nutanix instance.NATIVE
: Native instance.
- type string
- Enums denoting the environment type of the PC, that is, on-prem PC or cloud PC. Following are the supported entity types:
ONPREM
: On-prem environment.NTNX_CLOUD
: Nutanix cloud environment.
- provider_
type str - Enums denoting the provider type of the PC, that is, AHV or ESXi. Following are the supported provider types:
VSPHERE
: Vsphere cloud provider.AZURE
: Azure cloud provider.NTNX
: Nutanix cloud provider.GCP
: GCP cloud provider.AWS
: AWS cloud provider.
- provisioning_
type str - Enums denoting the instance type of the cloud PC. It indicates whether the PC is created on bare-metal or on a cloud-provisioned VM. Hence, it supports two possible values:
NTNX
: Nutanix instance.NATIVE
: Native instance.
- type str
- Enums denoting the environment type of the PC, that is, on-prem PC or cloud PC. Following are the supported entity types:
ONPREM
: On-prem environment.NTNX_CLOUD
: Nutanix cloud environment.
- provider
Type String - Enums denoting the provider type of the PC, that is, AHV or ESXi. Following are the supported provider types:
VSPHERE
: Vsphere cloud provider.AZURE
: Azure cloud provider.NTNX
: Nutanix cloud provider.GCP
: GCP cloud provider.AWS
: AWS cloud provider.
- provisioning
Type String - Enums denoting the instance type of the cloud PC. It indicates whether the PC is created on bare-metal or on a cloud-provisioned VM. Hence, it supports two possible values:
NTNX
: Nutanix instance.NATIVE
: Native instance.
- type String
- Enums denoting the environment type of the PC, that is, on-prem PC or cloud PC. Following are the supported entity types:
ONPREM
: On-prem environment.NTNX_CLOUD
: Nutanix cloud environment.
GetPcRestorePointV2DomainManagerConfigBuildInfo
- Version string
- Software version.
- Version string
- Software version.
- version String
- Software version.
- version string
- Software version.
- version str
- Software version.
- version String
- Software version.
GetPcRestorePointV2DomainManagerConfigCredential
GetPcRestorePointV2DomainManagerConfigResourceConfig
- Container
Ext List<string>Ids - The external identifier of the container that will be used to create the domain manager (Prism Central) cluster.
- Data
Disk intSize Bytes - This property is used for readOnly purposes to display Prism Central data disk size allocation at a cluster level.
- Memory
Size intBytes - This property is used for readOnly purposes to display Prism Central RAM allocation at the cluster level.
- Num
Vcpus int - This property is used for readOnly purposes to display Prism Central number of VCPUs allocation.
- Container
Ext []stringIds - The external identifier of the container that will be used to create the domain manager (Prism Central) cluster.
- Data
Disk intSize Bytes - This property is used for readOnly purposes to display Prism Central data disk size allocation at a cluster level.
- Memory
Size intBytes - This property is used for readOnly purposes to display Prism Central RAM allocation at the cluster level.
- Num
Vcpus int - This property is used for readOnly purposes to display Prism Central number of VCPUs allocation.
- container
Ext List<String>Ids - The external identifier of the container that will be used to create the domain manager (Prism Central) cluster.
- data
Disk IntegerSize Bytes - This property is used for readOnly purposes to display Prism Central data disk size allocation at a cluster level.
- memory
Size IntegerBytes - This property is used for readOnly purposes to display Prism Central RAM allocation at the cluster level.
- num
Vcpus Integer - This property is used for readOnly purposes to display Prism Central number of VCPUs allocation.
- container
Ext string[]Ids - The external identifier of the container that will be used to create the domain manager (Prism Central) cluster.
- data
Disk numberSize Bytes - This property is used for readOnly purposes to display Prism Central data disk size allocation at a cluster level.
- memory
Size numberBytes - This property is used for readOnly purposes to display Prism Central RAM allocation at the cluster level.
- num
Vcpus number - This property is used for readOnly purposes to display Prism Central number of VCPUs allocation.
- container_
ext_ Sequence[str]ids - The external identifier of the container that will be used to create the domain manager (Prism Central) cluster.
- data_
disk_ intsize_ bytes - This property is used for readOnly purposes to display Prism Central data disk size allocation at a cluster level.
- memory_
size_ intbytes - This property is used for readOnly purposes to display Prism Central RAM allocation at the cluster level.
- num_
vcpus int - This property is used for readOnly purposes to display Prism Central number of VCPUs allocation.
- container
Ext List<String>Ids - The external identifier of the container that will be used to create the domain manager (Prism Central) cluster.
- data
Disk NumberSize Bytes - This property is used for readOnly purposes to display Prism Central data disk size allocation at a cluster level.
- memory
Size NumberBytes - This property is used for readOnly purposes to display Prism Central RAM allocation at the cluster level.
- num
Vcpus Number - This property is used for readOnly purposes to display Prism Central number of VCPUs allocation.
GetPcRestorePointV2DomainManagerNetwork
- External
Networks List<PiersKarsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network External Network> - This configuration is used to manage Prism Central.
- Fqdn string
- A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- Internal
Networks PiersKarsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Internal Networks - Name
Servers List<PiersKarsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Name Server> - List of name servers on a cluster. This is part of payload for both cluster create & update operations. For create operation, only ipv4 address / fqdn values are supported currently.
- Ntp
Servers List<PiersKarsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Ntp Server> - List of NTP servers on a cluster. This is part of payload for both cluster create & update operations. For create operation, only ipv4 address / fqdn values are supported currently.
- External
Address PiersKarsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network External Address - An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
- External
Networks []GetPc Restore Point V2Domain Manager Network External Network - This configuration is used to manage Prism Central.
- Fqdn string
- A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- Internal
Networks GetPc Restore Point V2Domain Manager Network Internal Networks - Name
Servers []GetPc Restore Point V2Domain Manager Network Name Server - List of name servers on a cluster. This is part of payload for both cluster create & update operations. For create operation, only ipv4 address / fqdn values are supported currently.
- Ntp
Servers []GetPc Restore Point V2Domain Manager Network Ntp Server - List of NTP servers on a cluster. This is part of payload for both cluster create & update operations. For create operation, only ipv4 address / fqdn values are supported currently.
- External
Address GetPc Restore Point V2Domain Manager Network External Address - An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
- external
Networks List<GetPc Restore Point V2Domain Manager Network External Network> - This configuration is used to manage Prism Central.
- fqdn String
- A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- internal
Networks GetPc Restore Point V2Domain Manager Network Internal Networks - name
Servers List<GetPc Restore Point V2Domain Manager Network Name Server> - List of name servers on a cluster. This is part of payload for both cluster create & update operations. For create operation, only ipv4 address / fqdn values are supported currently.
- ntp
Servers List<GetPc Restore Point V2Domain Manager Network Ntp Server> - List of NTP servers on a cluster. This is part of payload for both cluster create & update operations. For create operation, only ipv4 address / fqdn values are supported currently.
- external
Address GetPc Restore Point V2Domain Manager Network External Address - An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
- external
Networks GetPc Restore Point V2Domain Manager Network External Network[] - This configuration is used to manage Prism Central.
- fqdn string
- A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- internal
Networks GetPc Restore Point V2Domain Manager Network Internal Networks - name
Servers GetPc Restore Point V2Domain Manager Network Name Server[] - List of name servers on a cluster. This is part of payload for both cluster create & update operations. For create operation, only ipv4 address / fqdn values are supported currently.
- ntp
Servers GetPc Restore Point V2Domain Manager Network Ntp Server[] - List of NTP servers on a cluster. This is part of payload for both cluster create & update operations. For create operation, only ipv4 address / fqdn values are supported currently.
- external
Address GetPc Restore Point V2Domain Manager Network External Address - An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
- external_
networks Sequence[GetPc Restore Point V2Domain Manager Network External Network] - This configuration is used to manage Prism Central.
- fqdn str
- A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- internal_
networks GetPc Restore Point V2Domain Manager Network Internal Networks - name_
servers Sequence[GetPc Restore Point V2Domain Manager Network Name Server] - List of name servers on a cluster. This is part of payload for both cluster create & update operations. For create operation, only ipv4 address / fqdn values are supported currently.
- ntp_
servers Sequence[GetPc Restore Point V2Domain Manager Network Ntp Server] - List of NTP servers on a cluster. This is part of payload for both cluster create & update operations. For create operation, only ipv4 address / fqdn values are supported currently.
- external_
address GetPc Restore Point V2Domain Manager Network External Address - An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
- external
Networks List<Property Map> - This configuration is used to manage Prism Central.
- fqdn String
- A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- internal
Networks Property Map - name
Servers List<Property Map> - List of name servers on a cluster. This is part of payload for both cluster create & update operations. For create operation, only ipv4 address / fqdn values are supported currently.
- ntp
Servers List<Property Map> - List of NTP servers on a cluster. This is part of payload for both cluster create & update operations. For create operation, only ipv4 address / fqdn values are supported currently.
- external
Address Property Map - An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
GetPcRestorePointV2DomainManagerNetworkExternalAddress
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network External Address Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network External Address Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- Ipv4s
[]Get
Pc Restore Point V2Domain Manager Network External Address Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
[]Get
Pc Restore Point V2Domain Manager Network External Address Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
List<Get
Pc Restore Point V2Domain Manager Network External Address Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
List<Get
Pc Restore Point V2Domain Manager Network External Address Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
Get
Pc Restore Point V2Domain Manager Network External Address Ipv4[] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Get
Pc Restore Point V2Domain Manager Network External Address Ipv6[] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
Sequence[Get
Pc Restore Point V2Domain Manager Network External Address Ipv4] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Sequence[Get
Pc Restore Point V2Domain Manager Network External Address Ipv6] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv6 format.
GetPcRestorePointV2DomainManagerNetworkExternalAddressIpv4
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkExternalAddressIpv6
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkExternalNetwork
- Default
Gateway PiersKarsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network External Network Default Gateway - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- Ip
Ranges List<PiersKarsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network External Network Ip Range> - Range of IPs used for Prism Central network setup.
- Network
Ext stringId - The network external identifier to which Domain Manager (Prism Central) is to be deployed or is already configured.
- Subnet
Mask PiersKarsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network External Network Subnet Mask - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- Default
Gateway GetPc Restore Point V2Domain Manager Network External Network Default Gateway - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- Ip
Ranges []GetPc Restore Point V2Domain Manager Network External Network Ip Range - Range of IPs used for Prism Central network setup.
- Network
Ext stringId - The network external identifier to which Domain Manager (Prism Central) is to be deployed or is already configured.
- Subnet
Mask GetPc Restore Point V2Domain Manager Network External Network Subnet Mask - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- default
Gateway GetPc Restore Point V2Domain Manager Network External Network Default Gateway - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- ip
Ranges List<GetPc Restore Point V2Domain Manager Network External Network Ip Range> - Range of IPs used for Prism Central network setup.
- network
Ext StringId - The network external identifier to which Domain Manager (Prism Central) is to be deployed or is already configured.
- subnet
Mask GetPc Restore Point V2Domain Manager Network External Network Subnet Mask - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- default
Gateway GetPc Restore Point V2Domain Manager Network External Network Default Gateway - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- ip
Ranges GetPc Restore Point V2Domain Manager Network External Network Ip Range[] - Range of IPs used for Prism Central network setup.
- network
Ext stringId - The network external identifier to which Domain Manager (Prism Central) is to be deployed or is already configured.
- subnet
Mask GetPc Restore Point V2Domain Manager Network External Network Subnet Mask - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- default_
gateway GetPc Restore Point V2Domain Manager Network External Network Default Gateway - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- ip_
ranges Sequence[GetPc Restore Point V2Domain Manager Network External Network Ip Range] - Range of IPs used for Prism Central network setup.
- network_
ext_ strid - The network external identifier to which Domain Manager (Prism Central) is to be deployed or is already configured.
- subnet_
mask GetPc Restore Point V2Domain Manager Network External Network Subnet Mask - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- default
Gateway Property Map - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- ip
Ranges List<Property Map> - Range of IPs used for Prism Central network setup.
- network
Ext StringId - The network external identifier to which Domain Manager (Prism Central) is to be deployed or is already configured.
- subnet
Mask Property Map - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGateway
- Fqdns
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network External Network Default Gateway Fqdn> - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network External Network Default Gateway Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network External Network Default Gateway Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- Fqdns
[]Get
Pc Restore Point V2Domain Manager Network External Network Default Gateway Fqdn - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- Ipv4s
[]Get
Pc Restore Point V2Domain Manager Network External Network Default Gateway Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
[]Get
Pc Restore Point V2Domain Manager Network External Network Default Gateway Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns
List<Get
Pc Restore Point V2Domain Manager Network External Network Default Gateway Fqdn> - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
List<Get
Pc Restore Point V2Domain Manager Network External Network Default Gateway Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
List<Get
Pc Restore Point V2Domain Manager Network External Network Default Gateway Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns
Get
Pc Restore Point V2Domain Manager Network External Network Default Gateway Fqdn[] - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
Get
Pc Restore Point V2Domain Manager Network External Network Default Gateway Ipv4[] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Get
Pc Restore Point V2Domain Manager Network External Network Default Gateway Ipv6[] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns
Sequence[Get
Pc Restore Point V2Domain Manager Network External Network Default Gateway Fqdn] - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
Sequence[Get
Pc Restore Point V2Domain Manager Network External Network Default Gateway Ipv4] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Sequence[Get
Pc Restore Point V2Domain Manager Network External Network Default Gateway Ipv6] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns List<Property Map>
- A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv6 format.
GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGatewayFqdn
- Value string
- The fully qualified domain name of the host.
- Value string
- The fully qualified domain name of the host.
- value String
- The fully qualified domain name of the host.
- value string
- The fully qualified domain name of the host.
- value str
- The fully qualified domain name of the host.
- value String
- The fully qualified domain name of the host.
GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGatewayIpv4
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGatewayIpv6
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRange
- Begin
Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network External Network Ip Range Begin - The beginning IP address of the range.
- End
Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network External Network Ip Range End - The ending IP address of the range.
- Begin
Get
Pc Restore Point V2Domain Manager Network External Network Ip Range Begin - The beginning IP address of the range.
- End
Get
Pc Restore Point V2Domain Manager Network External Network Ip Range End - The ending IP address of the range.
- begin
Get
Pc Restore Point V2Domain Manager Network External Network Ip Range Begin - The beginning IP address of the range.
- end
Get
Pc Restore Point V2Domain Manager Network External Network Ip Range End - The ending IP address of the range.
- begin
Get
Pc Restore Point V2Domain Manager Network External Network Ip Range Begin - The beginning IP address of the range.
- end
Get
Pc Restore Point V2Domain Manager Network External Network Ip Range End - The ending IP address of the range.
- begin
Get
Pc Restore Point V2Domain Manager Network External Network Ip Range Begin - The beginning IP address of the range.
- end
Get
Pc Restore Point V2Domain Manager Network External Network Ip Range End - The ending IP address of the range.
- begin Property Map
- The beginning IP address of the range.
- end Property Map
- The ending IP address of the range.
GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeBegin
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network External Network Ip Range Begin Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network External Network Ip Range Begin Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- Ipv4s
[]Get
Pc Restore Point V2Domain Manager Network External Network Ip Range Begin Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
[]Get
Pc Restore Point V2Domain Manager Network External Network Ip Range Begin Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
List<Get
Pc Restore Point V2Domain Manager Network External Network Ip Range Begin Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
List<Get
Pc Restore Point V2Domain Manager Network External Network Ip Range Begin Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
Get
Pc Restore Point V2Domain Manager Network External Network Ip Range Begin Ipv4[] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Get
Pc Restore Point V2Domain Manager Network External Network Ip Range Begin Ipv6[] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
Sequence[Get
Pc Restore Point V2Domain Manager Network External Network Ip Range Begin Ipv4] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Sequence[Get
Pc Restore Point V2Domain Manager Network External Network Ip Range Begin Ipv6] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv6 format.
GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeBeginIpv4
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeBeginIpv6
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeEnd
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network External Network Ip Range End Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network External Network Ip Range End Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- Ipv4s
[]Get
Pc Restore Point V2Domain Manager Network External Network Ip Range End Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
[]Get
Pc Restore Point V2Domain Manager Network External Network Ip Range End Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
List<Get
Pc Restore Point V2Domain Manager Network External Network Ip Range End Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
List<Get
Pc Restore Point V2Domain Manager Network External Network Ip Range End Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
Get
Pc Restore Point V2Domain Manager Network External Network Ip Range End Ipv4[] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Get
Pc Restore Point V2Domain Manager Network External Network Ip Range End Ipv6[] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
Sequence[Get
Pc Restore Point V2Domain Manager Network External Network Ip Range End Ipv4] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Sequence[Get
Pc Restore Point V2Domain Manager Network External Network Ip Range End Ipv6] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv6 format.
GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeEndIpv4
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeEndIpv6
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMask
- Fqdns
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network External Network Subnet Mask Fqdn> - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network External Network Subnet Mask Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network External Network Subnet Mask Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- Fqdns
[]Get
Pc Restore Point V2Domain Manager Network External Network Subnet Mask Fqdn - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- Ipv4s
[]Get
Pc Restore Point V2Domain Manager Network External Network Subnet Mask Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
[]Get
Pc Restore Point V2Domain Manager Network External Network Subnet Mask Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns
List<Get
Pc Restore Point V2Domain Manager Network External Network Subnet Mask Fqdn> - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
List<Get
Pc Restore Point V2Domain Manager Network External Network Subnet Mask Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
List<Get
Pc Restore Point V2Domain Manager Network External Network Subnet Mask Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns
Get
Pc Restore Point V2Domain Manager Network External Network Subnet Mask Fqdn[] - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
Get
Pc Restore Point V2Domain Manager Network External Network Subnet Mask Ipv4[] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Get
Pc Restore Point V2Domain Manager Network External Network Subnet Mask Ipv6[] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns
Sequence[Get
Pc Restore Point V2Domain Manager Network External Network Subnet Mask Fqdn] - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
Sequence[Get
Pc Restore Point V2Domain Manager Network External Network Subnet Mask Ipv4] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Sequence[Get
Pc Restore Point V2Domain Manager Network External Network Subnet Mask Ipv6] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns List<Property Map>
- A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv6 format.
GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMaskFqdn
- Value string
- The fully qualified domain name of the host.
- Value string
- The fully qualified domain name of the host.
- value String
- The fully qualified domain name of the host.
- value string
- The fully qualified domain name of the host.
- value str
- The fully qualified domain name of the host.
- value String
- The fully qualified domain name of the host.
GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMaskIpv4
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMaskIpv6
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkInternalNetworks
- Default
Gateway PiersKarsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Internal Networks Default Gateway - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- Ip
Ranges List<PiersKarsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Internal Networks Ip Range> - Range of IPs used for Prism Central network setup.
- Subnet
Mask PiersKarsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Internal Networks Subnet Mask - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- Default
Gateway GetPc Restore Point V2Domain Manager Network Internal Networks Default Gateway - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- Ip
Ranges []GetPc Restore Point V2Domain Manager Network Internal Networks Ip Range - Range of IPs used for Prism Central network setup.
- Subnet
Mask GetPc Restore Point V2Domain Manager Network Internal Networks Subnet Mask - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- default
Gateway GetPc Restore Point V2Domain Manager Network Internal Networks Default Gateway - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- ip
Ranges List<GetPc Restore Point V2Domain Manager Network Internal Networks Ip Range> - Range of IPs used for Prism Central network setup.
- subnet
Mask GetPc Restore Point V2Domain Manager Network Internal Networks Subnet Mask - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- default
Gateway GetPc Restore Point V2Domain Manager Network Internal Networks Default Gateway - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- ip
Ranges GetPc Restore Point V2Domain Manager Network Internal Networks Ip Range[] - Range of IPs used for Prism Central network setup.
- subnet
Mask GetPc Restore Point V2Domain Manager Network Internal Networks Subnet Mask - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- default_
gateway GetPc Restore Point V2Domain Manager Network Internal Networks Default Gateway - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- ip_
ranges Sequence[GetPc Restore Point V2Domain Manager Network Internal Networks Ip Range] - Range of IPs used for Prism Central network setup.
- subnet_
mask GetPc Restore Point V2Domain Manager Network Internal Networks Subnet Mask - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- default
Gateway Property Map - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
- ip
Ranges List<Property Map> - Range of IPs used for Prism Central network setup.
- subnet
Mask Property Map - An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGateway
- Fqdns
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Internal Networks Default Gateway Fqdn> - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Internal Networks Default Gateway Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Internal Networks Default Gateway Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- Fqdns
[]Get
Pc Restore Point V2Domain Manager Network Internal Networks Default Gateway Fqdn - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- Ipv4s
[]Get
Pc Restore Point V2Domain Manager Network Internal Networks Default Gateway Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
[]Get
Pc Restore Point V2Domain Manager Network Internal Networks Default Gateway Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns
List<Get
Pc Restore Point V2Domain Manager Network Internal Networks Default Gateway Fqdn> - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
List<Get
Pc Restore Point V2Domain Manager Network Internal Networks Default Gateway Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
List<Get
Pc Restore Point V2Domain Manager Network Internal Networks Default Gateway Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns
Get
Pc Restore Point V2Domain Manager Network Internal Networks Default Gateway Fqdn[] - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
Get
Pc Restore Point V2Domain Manager Network Internal Networks Default Gateway Ipv4[] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Get
Pc Restore Point V2Domain Manager Network Internal Networks Default Gateway Ipv6[] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns
Sequence[Get
Pc Restore Point V2Domain Manager Network Internal Networks Default Gateway Fqdn] - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
Sequence[Get
Pc Restore Point V2Domain Manager Network Internal Networks Default Gateway Ipv4] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Sequence[Get
Pc Restore Point V2Domain Manager Network Internal Networks Default Gateway Ipv6] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns List<Property Map>
- A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv6 format.
GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGatewayFqdn
- Value string
- The fully qualified domain name of the host.
- Value string
- The fully qualified domain name of the host.
- value String
- The fully qualified domain name of the host.
- value string
- The fully qualified domain name of the host.
- value str
- The fully qualified domain name of the host.
- value String
- The fully qualified domain name of the host.
GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGatewayIpv4
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGatewayIpv6
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRange
- Begin
Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Internal Networks Ip Range Begin - The beginning IP address of the range.
- End
Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Internal Networks Ip Range End - The ending IP address of the range.
- Begin
Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range Begin - The beginning IP address of the range.
- End
Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range End - The ending IP address of the range.
- begin
Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range Begin - The beginning IP address of the range.
- end
Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range End - The ending IP address of the range.
- begin
Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range Begin - The beginning IP address of the range.
- end
Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range End - The ending IP address of the range.
- begin
Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range Begin - The beginning IP address of the range.
- end
Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range End - The ending IP address of the range.
- begin Property Map
- The beginning IP address of the range.
- end Property Map
- The ending IP address of the range.
GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeBegin
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Internal Networks Ip Range Begin Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Internal Networks Ip Range Begin Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- Ipv4s
[]Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range Begin Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
[]Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range Begin Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
List<Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range Begin Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
List<Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range Begin Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range Begin Ipv4[] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range Begin Ipv6[] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
Sequence[Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range Begin Ipv4] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Sequence[Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range Begin Ipv6] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv6 format.
GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeBeginIpv4
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeBeginIpv6
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeEnd
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Internal Networks Ip Range End Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Internal Networks Ip Range End Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- Ipv4s
[]Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range End Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
[]Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range End Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
List<Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range End Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
List<Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range End Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range End Ipv4[] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range End Ipv6[] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
Sequence[Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range End Ipv4] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Sequence[Get
Pc Restore Point V2Domain Manager Network Internal Networks Ip Range End Ipv6] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv6 format.
GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeEndIpv4
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeEndIpv6
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMask
- Fqdns
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Internal Networks Subnet Mask Fqdn> - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Internal Networks Subnet Mask Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Internal Networks Subnet Mask Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- Fqdns
[]Get
Pc Restore Point V2Domain Manager Network Internal Networks Subnet Mask Fqdn - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- Ipv4s
[]Get
Pc Restore Point V2Domain Manager Network Internal Networks Subnet Mask Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
[]Get
Pc Restore Point V2Domain Manager Network Internal Networks Subnet Mask Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns
List<Get
Pc Restore Point V2Domain Manager Network Internal Networks Subnet Mask Fqdn> - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
List<Get
Pc Restore Point V2Domain Manager Network Internal Networks Subnet Mask Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
List<Get
Pc Restore Point V2Domain Manager Network Internal Networks Subnet Mask Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns
Get
Pc Restore Point V2Domain Manager Network Internal Networks Subnet Mask Fqdn[] - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
Get
Pc Restore Point V2Domain Manager Network Internal Networks Subnet Mask Ipv4[] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Get
Pc Restore Point V2Domain Manager Network Internal Networks Subnet Mask Ipv6[] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns
Sequence[Get
Pc Restore Point V2Domain Manager Network Internal Networks Subnet Mask Fqdn] - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
Sequence[Get
Pc Restore Point V2Domain Manager Network Internal Networks Subnet Mask Ipv4] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Sequence[Get
Pc Restore Point V2Domain Manager Network Internal Networks Subnet Mask Ipv6] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns List<Property Map>
- A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv6 format.
GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMaskFqdn
- Value string
- The fully qualified domain name of the host.
- Value string
- The fully qualified domain name of the host.
- value String
- The fully qualified domain name of the host.
- value string
- The fully qualified domain name of the host.
- value str
- The fully qualified domain name of the host.
- value String
- The fully qualified domain name of the host.
GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMaskIpv4
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMaskIpv6
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkNameServer
- Fqdns
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Name Server Fqdn> - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Name Server Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Name Server Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- Fqdns
[]Get
Pc Restore Point V2Domain Manager Network Name Server Fqdn - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- Ipv4s
[]Get
Pc Restore Point V2Domain Manager Network Name Server Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
[]Get
Pc Restore Point V2Domain Manager Network Name Server Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns
List<Get
Pc Restore Point V2Domain Manager Network Name Server Fqdn> - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
List<Get
Pc Restore Point V2Domain Manager Network Name Server Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
List<Get
Pc Restore Point V2Domain Manager Network Name Server Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns
Get
Pc Restore Point V2Domain Manager Network Name Server Fqdn[] - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
Get
Pc Restore Point V2Domain Manager Network Name Server Ipv4[] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Get
Pc Restore Point V2Domain Manager Network Name Server Ipv6[] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns
Sequence[Get
Pc Restore Point V2Domain Manager Network Name Server Fqdn] - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
Sequence[Get
Pc Restore Point V2Domain Manager Network Name Server Ipv4] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Sequence[Get
Pc Restore Point V2Domain Manager Network Name Server Ipv6] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns List<Property Map>
- A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv6 format.
GetPcRestorePointV2DomainManagerNetworkNameServerFqdn
- Value string
- The fully qualified domain name of the host.
- Value string
- The fully qualified domain name of the host.
- value String
- The fully qualified domain name of the host.
- value string
- The fully qualified domain name of the host.
- value str
- The fully qualified domain name of the host.
- value String
- The fully qualified domain name of the host.
GetPcRestorePointV2DomainManagerNetworkNameServerIpv4
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkNameServerIpv6
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkNtpServer
- Fqdns
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Ntp Server Fqdn> - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Ntp Server Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Pc Restore Point V2Domain Manager Network Ntp Server Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- Fqdns
[]Get
Pc Restore Point V2Domain Manager Network Ntp Server Fqdn - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- Ipv4s
[]Get
Pc Restore Point V2Domain Manager Network Ntp Server Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
[]Get
Pc Restore Point V2Domain Manager Network Ntp Server Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns
List<Get
Pc Restore Point V2Domain Manager Network Ntp Server Fqdn> - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
List<Get
Pc Restore Point V2Domain Manager Network Ntp Server Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
List<Get
Pc Restore Point V2Domain Manager Network Ntp Server Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns
Get
Pc Restore Point V2Domain Manager Network Ntp Server Fqdn[] - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
Get
Pc Restore Point V2Domain Manager Network Ntp Server Ipv4[] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Get
Pc Restore Point V2Domain Manager Network Ntp Server Ipv6[] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns
Sequence[Get
Pc Restore Point V2Domain Manager Network Ntp Server Fqdn] - A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
Sequence[Get
Pc Restore Point V2Domain Manager Network Ntp Server Ipv4] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Sequence[Get
Pc Restore Point V2Domain Manager Network Ntp Server Ipv6] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- fqdns List<Property Map>
- A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv6 format.
GetPcRestorePointV2DomainManagerNetworkNtpServerFqdn
- Value string
- The fully qualified domain name of the host.
- Value string
- The fully qualified domain name of the host.
- value String
- The fully qualified domain name of the host.
- value string
- The fully qualified domain name of the host.
- value str
- The fully qualified domain name of the host.
- value String
- The fully qualified domain name of the host.
GetPcRestorePointV2DomainManagerNetworkNtpServerIpv4
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2DomainManagerNetworkNtpServerIpv6
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- The fully qualified domain name of the host.
- Prefix
Length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Integer - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- The fully qualified domain name of the host.
- prefix
Length number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- The fully qualified domain name of the host.
- prefix_
length int - The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- The fully qualified domain name of the host.
- prefix
Length Number - The prefix length of the network to which this host IPv4/IPv6 address belongs.
GetPcRestorePointV2Link
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.