1. Packages
  2. Nutanix
  3. API Docs
  4. getPcRestorePointV2
Nutanix v0.8.0 published on Sunday, May 11, 2025 by Piers Karsenbarg

nutanix.getPcRestorePointV2

Explore with Pulumi AI

nutanix logo
Nutanix v0.8.0 published on Sunday, May 11, 2025 by Piers Karsenbarg

    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:

    ExtId string
    Restore point ID for the backup created in cluster/object store.
    RestorableDomainManagerExtId string
    A unique identifier for the domain manager.
    RestoreSourceExtId string
    A unique identifier obtained from the restore source API that corresponds to the details provided for the restore source.
    ExtId string
    Restore point ID for the backup created in cluster/object store.
    RestorableDomainManagerExtId string
    A unique identifier for the domain manager.
    RestoreSourceExtId string
    A unique identifier obtained from the restore source API that corresponds to the details provided for the restore source.
    extId String
    Restore point ID for the backup created in cluster/object store.
    restorableDomainManagerExtId String
    A unique identifier for the domain manager.
    restoreSourceExtId String
    A unique identifier obtained from the restore source API that corresponds to the details provided for the restore source.
    extId string
    Restore point ID for the backup created in cluster/object store.
    restorableDomainManagerExtId string
    A unique identifier for the domain manager.
    restoreSourceExtId string
    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_manager_ext_id str
    A unique identifier for the domain manager.
    restore_source_ext_id str
    A unique identifier obtained from the restore source API that corresponds to the details provided for the restore source.
    extId String
    Restore point ID for the backup created in cluster/object store.
    restorableDomainManagerExtId String
    A unique identifier for the domain manager.
    restoreSourceExtId String
    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:

    CreationTime string
    The UTC date and time in ISO-8601 format when the Restore point was created.
    DomainManagers List<PiersKarsenbarg.Nutanix.Outputs.GetPcRestorePointV2DomainManager>
    Domain manager (Prism Central) details.
    ExtId 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<PiersKarsenbarg.Nutanix.Outputs.GetPcRestorePointV2Link>
    • 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.
    RestorableDomainManagerExtId string
    RestoreSourceExtId string
    TenantId 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).
    CreationTime string
    The UTC date and time in ISO-8601 format when the Restore point was created.
    DomainManagers []GetPcRestorePointV2DomainManager
    Domain manager (Prism Central) details.
    ExtId 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 []GetPcRestorePointV2Link
    • 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.
    RestorableDomainManagerExtId string
    RestoreSourceExtId string
    TenantId 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).
    creationTime String
    The UTC date and time in ISO-8601 format when the Restore point was created.
    domainManagers List<GetPcRestorePointV2DomainManager>
    Domain manager (Prism Central) details.
    extId 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<GetPcRestorePointV2Link>
    • 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.
    restorableDomainManagerExtId String
    restoreSourceExtId String
    tenantId 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).
    creationTime string
    The UTC date and time in ISO-8601 format when the Restore point was created.
    domainManagers GetPcRestorePointV2DomainManager[]
    Domain manager (Prism Central) details.
    extId 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 GetPcRestorePointV2Link[]
    • 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.
    restorableDomainManagerExtId string
    restoreSourceExtId string
    tenantId 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[GetPcRestorePointV2DomainManager]
    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[GetPcRestorePointV2Link]
    • 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_manager_ext_id str
    restore_source_ext_id str
    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).
    creationTime String
    The UTC date and time in ISO-8601 format when the Restore point was created.
    domainManagers List<Property Map>
    Domain manager (Prism Central) details.
    extId 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.
    restorableDomainManagerExtId String
    restoreSourceExtId String
    tenantId 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<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerConfig>
    • Domain manager (Prism Central) cluster configuration details.
    ExtId string
    Restore point ID for the backup created in cluster/object store.
    HostingClusterExtId string
    • The external identifier of the cluster hosting the domain manager (Prism Central) instance.
    IsRegisteredWithHostingCluster bool
    • Boolean value indicating if the domain manager (Prism Central) is registered with the hosting cluster, that is, Prism Element.
    Networks List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetwork>
    • Domain manager (Prism Central) network configuration details.
    NodeExtIds List<string>
    • Domain manager (Prism Central) nodes external identifier.
    ShouldEnableHighAvailability bool
    • This configuration enables Prism Central to be deployed in scale-out mode.
    TenantId 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 []GetPcRestorePointV2DomainManagerConfig
    • Domain manager (Prism Central) cluster configuration details.
    ExtId string
    Restore point ID for the backup created in cluster/object store.
    HostingClusterExtId string
    • The external identifier of the cluster hosting the domain manager (Prism Central) instance.
    IsRegisteredWithHostingCluster bool
    • Boolean value indicating if the domain manager (Prism Central) is registered with the hosting cluster, that is, Prism Element.
    Networks []GetPcRestorePointV2DomainManagerNetwork
    • Domain manager (Prism Central) network configuration details.
    NodeExtIds []string
    • Domain manager (Prism Central) nodes external identifier.
    ShouldEnableHighAvailability bool
    • This configuration enables Prism Central to be deployed in scale-out mode.
    TenantId 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<GetPcRestorePointV2DomainManagerConfig>
    • Domain manager (Prism Central) cluster configuration details.
    extId String
    Restore point ID for the backup created in cluster/object store.
    hostingClusterExtId String
    • The external identifier of the cluster hosting the domain manager (Prism Central) instance.
    isRegisteredWithHostingCluster Boolean
    • Boolean value indicating if the domain manager (Prism Central) is registered with the hosting cluster, that is, Prism Element.
    networks List<GetPcRestorePointV2DomainManagerNetwork>
    • Domain manager (Prism Central) network configuration details.
    nodeExtIds List<String>
    • Domain manager (Prism Central) nodes external identifier.
    shouldEnableHighAvailability Boolean
    • This configuration enables Prism Central to be deployed in scale-out mode.
    tenantId 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 GetPcRestorePointV2DomainManagerConfig[]
    • Domain manager (Prism Central) cluster configuration details.
    extId string
    Restore point ID for the backup created in cluster/object store.
    hostingClusterExtId string
    • The external identifier of the cluster hosting the domain manager (Prism Central) instance.
    isRegisteredWithHostingCluster boolean
    • Boolean value indicating if the domain manager (Prism Central) is registered with the hosting cluster, that is, Prism Element.
    networks GetPcRestorePointV2DomainManagerNetwork[]
    • Domain manager (Prism Central) network configuration details.
    nodeExtIds string[]
    • Domain manager (Prism Central) nodes external identifier.
    shouldEnableHighAvailability boolean
    • This configuration enables Prism Central to be deployed in scale-out mode.
    tenantId 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[GetPcRestorePointV2DomainManagerConfig]
    • Domain manager (Prism Central) cluster configuration details.
    ext_id str
    Restore point ID for the backup created in cluster/object store.
    hosting_cluster_ext_id str
    • The external identifier of the cluster hosting the domain manager (Prism Central) instance.
    is_registered_with_hosting_cluster bool
    • Boolean value indicating if the domain manager (Prism Central) is registered with the hosting cluster, that is, Prism Element.
    networks Sequence[GetPcRestorePointV2DomainManagerNetwork]
    • Domain manager (Prism Central) network configuration details.
    node_ext_ids Sequence[str]
    • Domain manager (Prism Central) nodes external identifier.
    should_enable_high_availability bool
    • 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.
    extId String
    Restore point ID for the backup created in cluster/object store.
    hostingClusterExtId String
    • The external identifier of the cluster hosting the domain manager (Prism Central) instance.
    isRegisteredWithHostingCluster Boolean
    • 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.
    nodeExtIds List<String>
    • Domain manager (Prism Central) nodes external identifier.
    shouldEnableHighAvailability Boolean
    • This configuration enables Prism Central to be deployed in scale-out mode.
    tenantId 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

    BootstrapConfig PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerConfigBootstrapConfig
    • Bootstrap configuration details for the domain manager (Prism Central).
    BuildInfo PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerConfigBuildInfo
    -Currently representing the build information to be used for the cluster creation.
    Name string
    • Name of the domain manager (Prism Central).
    ResourceConfigs List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerConfigResourceConfig>
    • 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.
    ShouldEnableLockdownMode bool
    • 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<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerConfigCredential>
    BootstrapConfig GetPcRestorePointV2DomainManagerConfigBootstrapConfig
    • Bootstrap configuration details for the domain manager (Prism Central).
    BuildInfo GetPcRestorePointV2DomainManagerConfigBuildInfo
    -Currently representing the build information to be used for the cluster creation.
    Name string
    • Name of the domain manager (Prism Central).
    ResourceConfigs []GetPcRestorePointV2DomainManagerConfigResourceConfig
    • 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.
    ShouldEnableLockdownMode bool
    • 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 []GetPcRestorePointV2DomainManagerConfigCredential
    bootstrapConfig GetPcRestorePointV2DomainManagerConfigBootstrapConfig
    • Bootstrap configuration details for the domain manager (Prism Central).
    buildInfo GetPcRestorePointV2DomainManagerConfigBuildInfo
    -Currently representing the build information to be used for the cluster creation.
    name String
    • Name of the domain manager (Prism Central).
    resourceConfigs List<GetPcRestorePointV2DomainManagerConfigResourceConfig>
    • 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.
    shouldEnableLockdownMode Boolean
    • 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<GetPcRestorePointV2DomainManagerConfigCredential>
    bootstrapConfig GetPcRestorePointV2DomainManagerConfigBootstrapConfig
    • Bootstrap configuration details for the domain manager (Prism Central).
    buildInfo GetPcRestorePointV2DomainManagerConfigBuildInfo
    -Currently representing the build information to be used for the cluster creation.
    name string
    • Name of the domain manager (Prism Central).
    resourceConfigs GetPcRestorePointV2DomainManagerConfigResourceConfig[]
    • 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.
    shouldEnableLockdownMode boolean
    • 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 GetPcRestorePointV2DomainManagerConfigCredential[]
    bootstrap_config GetPcRestorePointV2DomainManagerConfigBootstrapConfig
    • Bootstrap configuration details for the domain manager (Prism Central).
    build_info GetPcRestorePointV2DomainManagerConfigBuildInfo
    -Currently representing the build information to be used for the cluster creation.
    name str
    • Name of the domain manager (Prism Central).
    resource_configs Sequence[GetPcRestorePointV2DomainManagerConfigResourceConfig]
    • 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_lockdown_mode bool
    • 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[GetPcRestorePointV2DomainManagerConfigCredential]
    bootstrapConfig Property Map
    • Bootstrap configuration details for the domain manager (Prism Central).
    buildInfo Property Map
    -Currently representing the build information to be used for the cluster creation.
    name String
    • Name of the domain manager (Prism Central).
    resourceConfigs 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.
    shouldEnableLockdownMode Boolean
    • 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

    environmentInfo Property Map
    • Environment information for the domain manager (Prism Central) cluster.
    cloudInitConfigs List<Property Map>

    GetPcRestorePointV2DomainManagerConfigBootstrapConfigCloudInitConfig

    GetPcRestorePointV2DomainManagerConfigBootstrapConfigCloudInitConfigCloudInitScript

    GetPcRestorePointV2DomainManagerConfigBootstrapConfigCloudInitConfigCloudInitScriptCustomKeyValue

    GetPcRestorePointV2DomainManagerConfigBootstrapConfigCloudInitConfigCloudInitScriptCustomKeyValueKeyValuePair

    Name string
    • Name of the domain manager (Prism Central).
    Values []GetPcRestorePointV2DomainManagerConfigBootstrapConfigCloudInitConfigCloudInitScriptCustomKeyValueKeyValuePairValue
    • The fully qualified domain name of the host.
    name String
    • Name of the domain manager (Prism Central).
    values List<GetPcRestorePointV2DomainManagerConfigBootstrapConfigCloudInitConfigCloudInitScriptCustomKeyValueKeyValuePairValue>
    • The fully qualified domain name of the host.
    name string
    • Name of the domain manager (Prism Central).
    values GetPcRestorePointV2DomainManagerConfigBootstrapConfigCloudInitConfigCloudInitScriptCustomKeyValueKeyValuePairValue[]
    • The fully qualified domain name of the host.
    name str
    • Name of the domain manager (Prism Central).
    values Sequence[GetPcRestorePointV2DomainManagerConfigBootstrapConfigCloudInitConfigCloudInitScriptCustomKeyValueKeyValuePairValue]
    • 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 Boolean
    integer Number
    integerLists List<Number>
    mapOfStrings List<Property Map>
    object Map<String>
    string String
    stringLists 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

    ProviderType 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.
    ProvisioningType 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.
    ProviderType 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.
    ProvisioningType 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.
    providerType 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.
    provisioningType 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.
    providerType 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.
    provisioningType 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.
    providerType 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.
    provisioningType 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

    Password string
    Username string
    Password string
    Username string
    password String
    username String
    password string
    username string
    password String
    username String

    GetPcRestorePointV2DomainManagerConfigResourceConfig

    ContainerExtIds List<string>
    • The external identifier of the container that will be used to create the domain manager (Prism Central) cluster.
    DataDiskSizeBytes int
    • This property is used for readOnly purposes to display Prism Central data disk size allocation at a cluster level.
    MemorySizeBytes int
    • This property is used for readOnly purposes to display Prism Central RAM allocation at the cluster level.
    NumVcpus int
    • This property is used for readOnly purposes to display Prism Central number of VCPUs allocation.
    ContainerExtIds []string
    • The external identifier of the container that will be used to create the domain manager (Prism Central) cluster.
    DataDiskSizeBytes int
    • This property is used for readOnly purposes to display Prism Central data disk size allocation at a cluster level.
    MemorySizeBytes int
    • This property is used for readOnly purposes to display Prism Central RAM allocation at the cluster level.
    NumVcpus int
    • This property is used for readOnly purposes to display Prism Central number of VCPUs allocation.
    containerExtIds List<String>
    • The external identifier of the container that will be used to create the domain manager (Prism Central) cluster.
    dataDiskSizeBytes Integer
    • This property is used for readOnly purposes to display Prism Central data disk size allocation at a cluster level.
    memorySizeBytes Integer
    • This property is used for readOnly purposes to display Prism Central RAM allocation at the cluster level.
    numVcpus Integer
    • This property is used for readOnly purposes to display Prism Central number of VCPUs allocation.
    containerExtIds string[]
    • The external identifier of the container that will be used to create the domain manager (Prism Central) cluster.
    dataDiskSizeBytes number
    • This property is used for readOnly purposes to display Prism Central data disk size allocation at a cluster level.
    memorySizeBytes number
    • This property is used for readOnly purposes to display Prism Central RAM allocation at the cluster level.
    numVcpus number
    • This property is used for readOnly purposes to display Prism Central number of VCPUs allocation.
    container_ext_ids Sequence[str]
    • The external identifier of the container that will be used to create the domain manager (Prism Central) cluster.
    data_disk_size_bytes int
    • This property is used for readOnly purposes to display Prism Central data disk size allocation at a cluster level.
    memory_size_bytes int
    • 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.
    containerExtIds List<String>
    • The external identifier of the container that will be used to create the domain manager (Prism Central) cluster.
    dataDiskSizeBytes Number
    • This property is used for readOnly purposes to display Prism Central data disk size allocation at a cluster level.
    memorySizeBytes Number
    • This property is used for readOnly purposes to display Prism Central RAM allocation at the cluster level.
    numVcpus Number
    • This property is used for readOnly purposes to display Prism Central number of VCPUs allocation.

    GetPcRestorePointV2DomainManagerNetwork

    ExternalNetworks List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkExternalNetwork>
    • 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.
    InternalNetworks PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkInternalNetworks
    NameServers List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkNameServer>
    • 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.
    NtpServers List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkNtpServer>
    • 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.
    ExternalAddress PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkExternalAddress
    • An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
    ExternalNetworks []GetPcRestorePointV2DomainManagerNetworkExternalNetwork
    • 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.
    InternalNetworks GetPcRestorePointV2DomainManagerNetworkInternalNetworks
    NameServers []GetPcRestorePointV2DomainManagerNetworkNameServer
    • 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.
    NtpServers []GetPcRestorePointV2DomainManagerNetworkNtpServer
    • 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.
    ExternalAddress GetPcRestorePointV2DomainManagerNetworkExternalAddress
    • An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
    externalNetworks List<GetPcRestorePointV2DomainManagerNetworkExternalNetwork>
    • 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.
    internalNetworks GetPcRestorePointV2DomainManagerNetworkInternalNetworks
    nameServers List<GetPcRestorePointV2DomainManagerNetworkNameServer>
    • 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.
    ntpServers List<GetPcRestorePointV2DomainManagerNetworkNtpServer>
    • 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.
    externalAddress GetPcRestorePointV2DomainManagerNetworkExternalAddress
    • An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
    externalNetworks GetPcRestorePointV2DomainManagerNetworkExternalNetwork[]
    • 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.
    internalNetworks GetPcRestorePointV2DomainManagerNetworkInternalNetworks
    nameServers GetPcRestorePointV2DomainManagerNetworkNameServer[]
    • 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.
    ntpServers GetPcRestorePointV2DomainManagerNetworkNtpServer[]
    • 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.
    externalAddress GetPcRestorePointV2DomainManagerNetworkExternalAddress
    • An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
    external_networks Sequence[GetPcRestorePointV2DomainManagerNetworkExternalNetwork]
    • 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 GetPcRestorePointV2DomainManagerNetworkInternalNetworks
    name_servers Sequence[GetPcRestorePointV2DomainManagerNetworkNameServer]
    • 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[GetPcRestorePointV2DomainManagerNetworkNtpServer]
    • 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 GetPcRestorePointV2DomainManagerNetworkExternalAddress
    • An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
    externalNetworks 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.
    internalNetworks Property Map
    nameServers 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.
    ntpServers 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.
    externalAddress Property Map
    • An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.

    GetPcRestorePointV2DomainManagerNetworkExternalAddress

    Ipv4s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkExternalAddressIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkExternalAddressIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    Ipv4s []GetPcRestorePointV2DomainManagerNetworkExternalAddressIpv4
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s []GetPcRestorePointV2DomainManagerNetworkExternalAddressIpv6
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s List<GetPcRestorePointV2DomainManagerNetworkExternalAddressIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s List<GetPcRestorePointV2DomainManagerNetworkExternalAddressIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s GetPcRestorePointV2DomainManagerNetworkExternalAddressIpv4[]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s GetPcRestorePointV2DomainManagerNetworkExternalAddressIpv6[]
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s Sequence[GetPcRestorePointV2DomainManagerNetworkExternalAddressIpv4]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s Sequence[GetPcRestorePointV2DomainManagerNetworkExternalAddressIpv6]
    • 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength Number
    • The prefix length of the network to which this host IPv4/IPv6 address belongs.

    GetPcRestorePointV2DomainManagerNetworkExternalNetwork

    DefaultGateway PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGateway
    • An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
    IpRanges List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRange>
    • Range of IPs used for Prism Central network setup.
    NetworkExtId string
    • The network external identifier to which Domain Manager (Prism Central) is to be deployed or is already configured.
    SubnetMask PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMask
    • An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
    DefaultGateway GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGateway
    • An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
    IpRanges []GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRange
    • Range of IPs used for Prism Central network setup.
    NetworkExtId string
    • The network external identifier to which Domain Manager (Prism Central) is to be deployed or is already configured.
    SubnetMask GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMask
    • An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
    defaultGateway GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGateway
    • An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
    ipRanges List<GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRange>
    • Range of IPs used for Prism Central network setup.
    networkExtId String
    • The network external identifier to which Domain Manager (Prism Central) is to be deployed or is already configured.
    subnetMask GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMask
    • An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
    defaultGateway GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGateway
    • An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
    ipRanges GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRange[]
    • Range of IPs used for Prism Central network setup.
    networkExtId string
    • The network external identifier to which Domain Manager (Prism Central) is to be deployed or is already configured.
    subnetMask GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMask
    • 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 GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGateway
    • 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[GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRange]
    • Range of IPs used for Prism Central network setup.
    network_ext_id str
    • The network external identifier to which Domain Manager (Prism Central) is to be deployed or is already configured.
    subnet_mask GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMask
    • An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
    defaultGateway 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.
    ipRanges List<Property Map>
    • Range of IPs used for Prism Central network setup.
    networkExtId String
    • The network external identifier to which Domain Manager (Prism Central) is to be deployed or is already configured.
    subnetMask 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<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGatewayFqdn>
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    Ipv4s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGatewayIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGatewayIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    Fqdns []GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGatewayFqdn
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    Ipv4s []GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGatewayIpv4
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s []GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGatewayIpv6
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    fqdns List<GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGatewayFqdn>
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    ipv4s List<GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGatewayIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s List<GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGatewayIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    fqdns GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGatewayFqdn[]
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    ipv4s GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGatewayIpv4[]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGatewayIpv6[]
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    fqdns Sequence[GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGatewayFqdn]
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    ipv4s Sequence[GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGatewayIpv4]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s Sequence[GetPcRestorePointV2DomainManagerNetworkExternalNetworkDefaultGatewayIpv6]
    • 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength Number
    • The prefix length of the network to which this host IPv4/IPv6 address belongs.

    GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRange

    begin Property Map
    • The beginning IP address of the range.
    end Property Map
    • The ending IP address of the range.

    GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeBegin

    Ipv4s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeBeginIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeBeginIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    Ipv4s []GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeBeginIpv4
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s []GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeBeginIpv6
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s List<GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeBeginIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s List<GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeBeginIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeBeginIpv4[]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeBeginIpv6[]
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s Sequence[GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeBeginIpv4]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s Sequence[GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeBeginIpv6]
    • 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength Number
    • The prefix length of the network to which this host IPv4/IPv6 address belongs.

    GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeEnd

    Ipv4s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeEndIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeEndIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    Ipv4s []GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeEndIpv4
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s []GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeEndIpv6
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s List<GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeEndIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s List<GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeEndIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeEndIpv4[]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeEndIpv6[]
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s Sequence[GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeEndIpv4]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s Sequence[GetPcRestorePointV2DomainManagerNetworkExternalNetworkIpRangeEndIpv6]
    • 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength Number
    • The prefix length of the network to which this host IPv4/IPv6 address belongs.

    GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMask

    Fqdns List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMaskFqdn>
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    Ipv4s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMaskIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMaskIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    Fqdns []GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMaskFqdn
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    Ipv4s []GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMaskIpv4
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s []GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMaskIpv6
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    fqdns List<GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMaskFqdn>
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    ipv4s List<GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMaskIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s List<GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMaskIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    fqdns GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMaskFqdn[]
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    ipv4s GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMaskIpv4[]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMaskIpv6[]
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    fqdns Sequence[GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMaskFqdn]
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    ipv4s Sequence[GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMaskIpv4]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s Sequence[GetPcRestorePointV2DomainManagerNetworkExternalNetworkSubnetMaskIpv6]
    • 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength Number
    • The prefix length of the network to which this host IPv4/IPv6 address belongs.

    GetPcRestorePointV2DomainManagerNetworkInternalNetworks

    DefaultGateway PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGateway
    • An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
    IpRanges List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRange>
    • Range of IPs used for Prism Central network setup.
    SubnetMask PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMask
    • An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
    DefaultGateway GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGateway
    • An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
    IpRanges []GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRange
    • Range of IPs used for Prism Central network setup.
    SubnetMask GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMask
    • An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
    defaultGateway GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGateway
    • An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
    ipRanges List<GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRange>
    • Range of IPs used for Prism Central network setup.
    subnetMask GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMask
    • An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
    defaultGateway GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGateway
    • An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
    ipRanges GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRange[]
    • Range of IPs used for Prism Central network setup.
    subnetMask GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMask
    • 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 GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGateway
    • 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[GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRange]
    • Range of IPs used for Prism Central network setup.
    subnet_mask GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMask
    • An unique address that identifies a device on the internet or a local network in IPv4/IPv6 format or a Fully Qualified Domain Name.
    defaultGateway 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.
    ipRanges List<Property Map>
    • Range of IPs used for Prism Central network setup.
    subnetMask 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<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGatewayFqdn>
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    Ipv4s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGatewayIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGatewayIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    Fqdns []GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGatewayFqdn
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    Ipv4s []GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGatewayIpv4
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s []GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGatewayIpv6
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    fqdns List<GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGatewayFqdn>
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    ipv4s List<GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGatewayIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s List<GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGatewayIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    fqdns GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGatewayFqdn[]
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    ipv4s GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGatewayIpv4[]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGatewayIpv6[]
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    fqdns Sequence[GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGatewayFqdn]
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    ipv4s Sequence[GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGatewayIpv4]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s Sequence[GetPcRestorePointV2DomainManagerNetworkInternalNetworksDefaultGatewayIpv6]
    • 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength Number
    • The prefix length of the network to which this host IPv4/IPv6 address belongs.

    GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRange

    begin Property Map
    • The beginning IP address of the range.
    end Property Map
    • The ending IP address of the range.

    GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeBegin

    Ipv4s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeBeginIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeBeginIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    Ipv4s []GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeBeginIpv4
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s []GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeBeginIpv6
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s List<GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeBeginIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s List<GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeBeginIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeBeginIpv4[]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeBeginIpv6[]
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s Sequence[GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeBeginIpv4]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s Sequence[GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeBeginIpv6]
    • 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength Number
    • The prefix length of the network to which this host IPv4/IPv6 address belongs.

    GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeEnd

    Ipv4s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeEndIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeEndIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    Ipv4s []GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeEndIpv4
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s []GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeEndIpv6
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s List<GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeEndIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s List<GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeEndIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeEndIpv4[]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeEndIpv6[]
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s Sequence[GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeEndIpv4]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s Sequence[GetPcRestorePointV2DomainManagerNetworkInternalNetworksIpRangeEndIpv6]
    • 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength Number
    • The prefix length of the network to which this host IPv4/IPv6 address belongs.

    GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMask

    Fqdns List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMaskFqdn>
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    Ipv4s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMaskIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMaskIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    Fqdns []GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMaskFqdn
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    Ipv4s []GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMaskIpv4
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s []GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMaskIpv6
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    fqdns List<GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMaskFqdn>
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    ipv4s List<GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMaskIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s List<GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMaskIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    fqdns GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMaskFqdn[]
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    ipv4s GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMaskIpv4[]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMaskIpv6[]
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    fqdns Sequence[GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMaskFqdn]
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    ipv4s Sequence[GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMaskIpv4]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s Sequence[GetPcRestorePointV2DomainManagerNetworkInternalNetworksSubnetMaskIpv6]
    • 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength Number
    • The prefix length of the network to which this host IPv4/IPv6 address belongs.

    GetPcRestorePointV2DomainManagerNetworkNameServer

    Fqdns List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkNameServerFqdn>
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    Ipv4s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkNameServerIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkNameServerIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    Fqdns []GetPcRestorePointV2DomainManagerNetworkNameServerFqdn
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    Ipv4s []GetPcRestorePointV2DomainManagerNetworkNameServerIpv4
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s []GetPcRestorePointV2DomainManagerNetworkNameServerIpv6
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    fqdns List<GetPcRestorePointV2DomainManagerNetworkNameServerFqdn>
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    ipv4s List<GetPcRestorePointV2DomainManagerNetworkNameServerIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s List<GetPcRestorePointV2DomainManagerNetworkNameServerIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    fqdns GetPcRestorePointV2DomainManagerNetworkNameServerFqdn[]
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    ipv4s GetPcRestorePointV2DomainManagerNetworkNameServerIpv4[]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s GetPcRestorePointV2DomainManagerNetworkNameServerIpv6[]
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    fqdns Sequence[GetPcRestorePointV2DomainManagerNetworkNameServerFqdn]
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    ipv4s Sequence[GetPcRestorePointV2DomainManagerNetworkNameServerIpv4]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s Sequence[GetPcRestorePointV2DomainManagerNetworkNameServerIpv6]
    • 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength Number
    • The prefix length of the network to which this host IPv4/IPv6 address belongs.

    GetPcRestorePointV2DomainManagerNetworkNtpServer

    Fqdns List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkNtpServerFqdn>
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    Ipv4s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkNtpServerIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s List<PiersKarsenbarg.Nutanix.Inputs.GetPcRestorePointV2DomainManagerNetworkNtpServerIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    Fqdns []GetPcRestorePointV2DomainManagerNetworkNtpServerFqdn
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    Ipv4s []GetPcRestorePointV2DomainManagerNetworkNtpServerIpv4
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s []GetPcRestorePointV2DomainManagerNetworkNtpServerIpv6
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    fqdns List<GetPcRestorePointV2DomainManagerNetworkNtpServerFqdn>
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    ipv4s List<GetPcRestorePointV2DomainManagerNetworkNtpServerIpv4>
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s List<GetPcRestorePointV2DomainManagerNetworkNtpServerIpv6>
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    fqdns GetPcRestorePointV2DomainManagerNetworkNtpServerFqdn[]
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    ipv4s GetPcRestorePointV2DomainManagerNetworkNtpServerIpv4[]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s GetPcRestorePointV2DomainManagerNetworkNtpServerIpv6[]
    • An unique address that identifies a device on the internet or a local network in IPv6 format.
    fqdns Sequence[GetPcRestorePointV2DomainManagerNetworkNtpServerFqdn]
    • A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
    ipv4s Sequence[GetPcRestorePointV2DomainManagerNetworkNtpServerIpv4]
    • An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s Sequence[GetPcRestorePointV2DomainManagerNetworkNtpServerIpv6]
    • 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength Number
    • The prefix length of the network to which this host IPv4/IPv6 address belongs.
    Href string
    • The URL at which the entity described by the link can be accessed.
    Rel string
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    Href string
    • The URL at which the entity described by the link can be accessed.
    Rel string
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    href String
    • The URL at which the entity described by the link can be accessed.
    rel String
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    href string
    • The URL at which the entity described by the link can be accessed.
    rel string
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    href str
    • The URL at which the entity described by the link can be accessed.
    rel str
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    href String
    • The URL at which the entity described by the link can be accessed.
    rel String
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.

    Package Details

    Repository
    nutanix pierskarsenbarg/pulumi-nutanix
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the nutanix Terraform Provider.
    nutanix logo
    Nutanix v0.8.0 published on Sunday, May 11, 2025 by Piers Karsenbarg