1. Packages
  2. Nutanix
  3. API Docs
  4. getFloatingIpsV2
Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg

nutanix.getFloatingIpsV2

Explore with Pulumi AI

Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg

Provides a datasource to retrieve floating IP with floating_ip_uuid .

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pulumi/nutanix";

const floating_ips = nutanix.getFloatingIpsV2({});
Copy
import pulumi
import pulumi_nutanix as nutanix

floating_ips = nutanix.get_floating_ips_v2()
Copy
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.GetFloatingIpsV2(ctx, &nutanix.GetFloatingIpsV2Args{}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nutanix = Pulumi.Nutanix;

return await Deployment.RunAsync(() => 
{
    var floating_ips = Nutanix.GetFloatingIpsV2.Invoke();

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.NutanixFunctions;
import com.pulumi.nutanix.inputs.GetFloatingIpsV2Args;
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) {
        final var floating-ips = NutanixFunctions.getFloatingIpsV2();

    }
}
Copy
variables:
  floating-ips:
    fn::invoke:
      function: nutanix:getFloatingIpsV2
      arguments: {}
Copy

Using getFloatingIpsV2

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 getFloatingIpsV2(args: GetFloatingIpsV2Args, opts?: InvokeOptions): Promise<GetFloatingIpsV2Result>
function getFloatingIpsV2Output(args: GetFloatingIpsV2OutputArgs, opts?: InvokeOptions): Output<GetFloatingIpsV2Result>
Copy
def get_floating_ips_v2(expand: Optional[str] = None,
                        filter: Optional[str] = None,
                        limit: Optional[int] = None,
                        order_by: Optional[str] = None,
                        page: Optional[int] = None,
                        opts: Optional[InvokeOptions] = None) -> GetFloatingIpsV2Result
def get_floating_ips_v2_output(expand: Optional[pulumi.Input[str]] = None,
                        filter: Optional[pulumi.Input[str]] = None,
                        limit: Optional[pulumi.Input[int]] = None,
                        order_by: Optional[pulumi.Input[str]] = None,
                        page: Optional[pulumi.Input[int]] = None,
                        opts: Optional[InvokeOptions] = None) -> Output[GetFloatingIpsV2Result]
Copy
func GetFloatingIpsV2(ctx *Context, args *GetFloatingIpsV2Args, opts ...InvokeOption) (*GetFloatingIpsV2Result, error)
func GetFloatingIpsV2Output(ctx *Context, args *GetFloatingIpsV2OutputArgs, opts ...InvokeOption) GetFloatingIpsV2ResultOutput
Copy

> Note: This function is named GetFloatingIpsV2 in the Go SDK.

public static class GetFloatingIpsV2 
{
    public static Task<GetFloatingIpsV2Result> InvokeAsync(GetFloatingIpsV2Args args, InvokeOptions? opts = null)
    public static Output<GetFloatingIpsV2Result> Invoke(GetFloatingIpsV2InvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetFloatingIpsV2Result> getFloatingIpsV2(GetFloatingIpsV2Args args, InvokeOptions options)
public static Output<GetFloatingIpsV2Result> getFloatingIpsV2(GetFloatingIpsV2Args args, InvokeOptions options)
Copy
fn::invoke:
  function: nutanix:index/getFloatingIpsV2:getFloatingIpsV2
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Expand string
A URL query parameter that allows clients to request related resources when a resource that satisfies a particular request is retrieved.
Filter string
A URL query parameter that allows clients to filter a collection of resources.
Limit int
A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
OrderBy string
A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default
Page int
A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
Expand string
A URL query parameter that allows clients to request related resources when a resource that satisfies a particular request is retrieved.
Filter string
A URL query parameter that allows clients to filter a collection of resources.
Limit int
A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
OrderBy string
A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default
Page int
A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
expand String
A URL query parameter that allows clients to request related resources when a resource that satisfies a particular request is retrieved.
filter String
A URL query parameter that allows clients to filter a collection of resources.
limit Integer
A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
orderBy String
A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default
page Integer
A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
expand string
A URL query parameter that allows clients to request related resources when a resource that satisfies a particular request is retrieved.
filter string
A URL query parameter that allows clients to filter a collection of resources.
limit number
A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
orderBy string
A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default
page number
A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
expand str
A URL query parameter that allows clients to request related resources when a resource that satisfies a particular request is retrieved.
filter str
A URL query parameter that allows clients to filter a collection of resources.
limit int
A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
order_by str
A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default
page int
A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
expand String
A URL query parameter that allows clients to request related resources when a resource that satisfies a particular request is retrieved.
filter String
A URL query parameter that allows clients to filter a collection of resources.
limit Number
A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
orderBy String
A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default
page Number
A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.

getFloatingIpsV2 Result

The following output properties are available:

FloatingIps List<PiersKarsenbarg.Nutanix.Outputs.GetFloatingIpsV2FloatingIp>
Id string
The provider-assigned unique ID for this managed resource.
Expand string
Filter string
Limit int
OrderBy string
Page int
FloatingIps []GetFloatingIpsV2FloatingIp
Id string
The provider-assigned unique ID for this managed resource.
Expand string
Filter string
Limit int
OrderBy string
Page int
floatingIps List<GetFloatingIpsV2FloatingIp>
id String
The provider-assigned unique ID for this managed resource.
expand String
filter String
limit Integer
orderBy String
page Integer
floatingIps GetFloatingIpsV2FloatingIp[]
id string
The provider-assigned unique ID for this managed resource.
expand string
filter string
limit number
orderBy string
page number
floating_ips Sequence[GetFloatingIpsV2FloatingIp]
id str
The provider-assigned unique ID for this managed resource.
expand str
filter str
limit int
order_by str
page int
floatingIps List<Property Map>
id String
The provider-assigned unique ID for this managed resource.
expand String
filter String
limit Number
orderBy String
page Number

Supporting Types

GetFloatingIpsV2FloatingIp

AssociationStatus This property is required. string
Association status of floating IP.
Associations This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpAssociation>
Association of the Floating IP with either NIC or Private IP
Description This property is required. string
Description for the Floating IP.
ExtId This property is required. string
Floating IP UUID
ExternalSubnetReference This property is required. string
External subnet reference for the Floating IP to be allocated in on-prem only.
ExternalSubnets This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnet>
Networking common base object
FloatingIpValue This property is required. string
Floating IP value in string
FloatingIps This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpFloatingIp>
Floating IP address.
Links This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpLink>
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.
Metadatas This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpMetadata>
Metadata associated with this resource.
Name This property is required. string
Name of the floating IP.
PrivateIp This property is required. string
Private IP value in string
TenantId This property is required. string
A globally unique identifier that represents the tenant that owns this entity.
VmNicReference This property is required. string
VM NIC reference.
VmNics This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpVmNic>
Virtual NIC for projections
VpcReference This property is required. string
VPC reference UUID
Vpcs This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpVpc>
Networking common base object
AssociationStatus This property is required. string
Association status of floating IP.
Associations This property is required. []GetFloatingIpsV2FloatingIpAssociation
Association of the Floating IP with either NIC or Private IP
Description This property is required. string
Description for the Floating IP.
ExtId This property is required. string
Floating IP UUID
ExternalSubnetReference This property is required. string
External subnet reference for the Floating IP to be allocated in on-prem only.
ExternalSubnets This property is required. []GetFloatingIpsV2FloatingIpExternalSubnet
Networking common base object
FloatingIpValue This property is required. string
Floating IP value in string
FloatingIps This property is required. []GetFloatingIpsV2FloatingIpFloatingIp
Floating IP address.
Links This property is required. []GetFloatingIpsV2FloatingIpLink
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.
Metadatas This property is required. []GetFloatingIpsV2FloatingIpMetadata
Metadata associated with this resource.
Name This property is required. string
Name of the floating IP.
PrivateIp This property is required. string
Private IP value in string
TenantId This property is required. string
A globally unique identifier that represents the tenant that owns this entity.
VmNicReference This property is required. string
VM NIC reference.
VmNics This property is required. []GetFloatingIpsV2FloatingIpVmNic
Virtual NIC for projections
VpcReference This property is required. string
VPC reference UUID
Vpcs This property is required. []GetFloatingIpsV2FloatingIpVpc
Networking common base object
associationStatus This property is required. String
Association status of floating IP.
associations This property is required. List<GetFloatingIpsV2FloatingIpAssociation>
Association of the Floating IP with either NIC or Private IP
description This property is required. String
Description for the Floating IP.
extId This property is required. String
Floating IP UUID
externalSubnetReference This property is required. String
External subnet reference for the Floating IP to be allocated in on-prem only.
externalSubnets This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnet>
Networking common base object
floatingIpValue This property is required. String
Floating IP value in string
floatingIps This property is required. List<GetFloatingIpsV2FloatingIpFloatingIp>
Floating IP address.
links This property is required. List<GetFloatingIpsV2FloatingIpLink>
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.
metadatas This property is required. List<GetFloatingIpsV2FloatingIpMetadata>
Metadata associated with this resource.
name This property is required. String
Name of the floating IP.
privateIp This property is required. String
Private IP value in string
tenantId This property is required. String
A globally unique identifier that represents the tenant that owns this entity.
vmNicReference This property is required. String
VM NIC reference.
vmNics This property is required. List<GetFloatingIpsV2FloatingIpVmNic>
Virtual NIC for projections
vpcReference This property is required. String
VPC reference UUID
vpcs This property is required. List<GetFloatingIpsV2FloatingIpVpc>
Networking common base object
associationStatus This property is required. string
Association status of floating IP.
associations This property is required. GetFloatingIpsV2FloatingIpAssociation[]
Association of the Floating IP with either NIC or Private IP
description This property is required. string
Description for the Floating IP.
extId This property is required. string
Floating IP UUID
externalSubnetReference This property is required. string
External subnet reference for the Floating IP to be allocated in on-prem only.
externalSubnets This property is required. GetFloatingIpsV2FloatingIpExternalSubnet[]
Networking common base object
floatingIpValue This property is required. string
Floating IP value in string
floatingIps This property is required. GetFloatingIpsV2FloatingIpFloatingIp[]
Floating IP address.
links This property is required. GetFloatingIpsV2FloatingIpLink[]
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.
metadatas This property is required. GetFloatingIpsV2FloatingIpMetadata[]
Metadata associated with this resource.
name This property is required. string
Name of the floating IP.
privateIp This property is required. string
Private IP value in string
tenantId This property is required. string
A globally unique identifier that represents the tenant that owns this entity.
vmNicReference This property is required. string
VM NIC reference.
vmNics This property is required. GetFloatingIpsV2FloatingIpVmNic[]
Virtual NIC for projections
vpcReference This property is required. string
VPC reference UUID
vpcs This property is required. GetFloatingIpsV2FloatingIpVpc[]
Networking common base object
association_status This property is required. str
Association status of floating IP.
associations This property is required. Sequence[GetFloatingIpsV2FloatingIpAssociation]
Association of the Floating IP with either NIC or Private IP
description This property is required. str
Description for the Floating IP.
ext_id This property is required. str
Floating IP UUID
external_subnet_reference This property is required. str
External subnet reference for the Floating IP to be allocated in on-prem only.
external_subnets This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnet]
Networking common base object
floating_ip_value This property is required. str
Floating IP value in string
floating_ips This property is required. Sequence[GetFloatingIpsV2FloatingIpFloatingIp]
Floating IP address.
links This property is required. Sequence[GetFloatingIpsV2FloatingIpLink]
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.
metadatas This property is required. Sequence[GetFloatingIpsV2FloatingIpMetadata]
Metadata associated with this resource.
name This property is required. str
Name of the floating IP.
private_ip This property is required. str
Private IP value in string
tenant_id This property is required. str
A globally unique identifier that represents the tenant that owns this entity.
vm_nic_reference This property is required. str
VM NIC reference.
vm_nics This property is required. Sequence[GetFloatingIpsV2FloatingIpVmNic]
Virtual NIC for projections
vpc_reference This property is required. str
VPC reference UUID
vpcs This property is required. Sequence[GetFloatingIpsV2FloatingIpVpc]
Networking common base object
associationStatus This property is required. String
Association status of floating IP.
associations This property is required. List<Property Map>
Association of the Floating IP with either NIC or Private IP
description This property is required. String
Description for the Floating IP.
extId This property is required. String
Floating IP UUID
externalSubnetReference This property is required. String
External subnet reference for the Floating IP to be allocated in on-prem only.
externalSubnets This property is required. List<Property Map>
Networking common base object
floatingIpValue This property is required. String
Floating IP value in string
floatingIps This property is required. List<Property Map>
Floating IP address.
links This property is required. 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.
metadatas This property is required. List<Property Map>
Metadata associated with this resource.
name This property is required. String
Name of the floating IP.
privateIp This property is required. String
Private IP value in string
tenantId This property is required. String
A globally unique identifier that represents the tenant that owns this entity.
vmNicReference This property is required. String
VM NIC reference.
vmNics This property is required. List<Property Map>
Virtual NIC for projections
vpcReference This property is required. String
VPC reference UUID
vpcs This property is required. List<Property Map>
Networking common base object

GetFloatingIpsV2FloatingIpAssociation

PrivateIpAssociations This property is required. []GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociation
Association of Floating IP with private IP
VmNicAssociations This property is required. []GetFloatingIpsV2FloatingIpAssociationVmNicAssociation
Association of Floating IP with nic
privateIpAssociations This property is required. List<GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociation>
Association of Floating IP with private IP
vmNicAssociations This property is required. List<GetFloatingIpsV2FloatingIpAssociationVmNicAssociation>
Association of Floating IP with nic
privateIpAssociations This property is required. GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociation[]
Association of Floating IP with private IP
vmNicAssociations This property is required. GetFloatingIpsV2FloatingIpAssociationVmNicAssociation[]
Association of Floating IP with nic
private_ip_associations This property is required. Sequence[GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociation]
Association of Floating IP with private IP
vm_nic_associations This property is required. Sequence[GetFloatingIpsV2FloatingIpAssociationVmNicAssociation]
Association of Floating IP with nic
privateIpAssociations This property is required. List<Property Map>
Association of Floating IP with private IP
vmNicAssociations This property is required. List<Property Map>
Association of Floating IP with nic

GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociation

PrivateIps This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociationPrivateIp>
An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
VpcReference This property is required. string
VPC in which the private IP exists.
PrivateIps This property is required. []GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociationPrivateIp
An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
VpcReference This property is required. string
VPC in which the private IP exists.
privateIps This property is required. List<GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociationPrivateIp>
An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
vpcReference This property is required. String
VPC in which the private IP exists.
privateIps This property is required. GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociationPrivateIp[]
An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
vpcReference This property is required. string
VPC in which the private IP exists.
private_ips This property is required. Sequence[GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociationPrivateIp]
An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
vpc_reference This property is required. str
VPC in which the private IP exists.
privateIps This property is required. List<Property Map>
An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
vpcReference This property is required. String
VPC in which the private IP exists.

GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociationPrivateIp

Ipv4s This property is required. []GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociationPrivateIpIpv4
Reference to IP Configuration
Ipv6s This property is required. []GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociationPrivateIpIpv6
Reference to IP Configuration
ipv4s This property is required. List<GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociationPrivateIpIpv4>
Reference to IP Configuration
ipv6s This property is required. List<GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociationPrivateIpIpv6>
Reference to IP Configuration
ipv4s This property is required. GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociationPrivateIpIpv4[]
Reference to IP Configuration
ipv6s This property is required. GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociationPrivateIpIpv6[]
Reference to IP Configuration
ipv4s This property is required. Sequence[GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociationPrivateIpIpv4]
Reference to IP Configuration
ipv6s This property is required. Sequence[GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociationPrivateIpIpv6]
Reference to IP Configuration
ipv4s This property is required. List<Property Map>
Reference to IP Configuration
ipv6s This property is required. List<Property Map>
Reference to IP Configuration

GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociationPrivateIpIpv4

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpAssociationPrivateIpAssociationPrivateIpIpv6

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpAssociationVmNicAssociation

VmNicReference This property is required. string
VM NIC reference.
VpcReference This property is required. string
VPC reference to which the VM NIC subnet belongs.
VmNicReference This property is required. string
VM NIC reference.
VpcReference This property is required. string
VPC reference to which the VM NIC subnet belongs.
vmNicReference This property is required. String
VM NIC reference.
vpcReference This property is required. String
VPC reference to which the VM NIC subnet belongs.
vmNicReference This property is required. string
VM NIC reference.
vpcReference This property is required. string
VPC reference to which the VM NIC subnet belongs.
vm_nic_reference This property is required. str
VM NIC reference.
vpc_reference This property is required. str
VPC reference to which the VM NIC subnet belongs.
vmNicReference This property is required. String
VM NIC reference.
vpcReference This property is required. String
VPC reference to which the VM NIC subnet belongs.

GetFloatingIpsV2FloatingIpExternalSubnet

BridgeName This property is required. string
ClusterName This property is required. string
ClusterReference This property is required. string
Description This property is required. string
Description for the Floating IP.
DhcpOptions This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetDhcpOption>
DynamicIpAddresses This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetDynamicIpAddress>
ExtId This property is required. string
Floating IP UUID
HypervisorType This property is required. string
IpConfigs This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetIpConfig>
IpPrefix This property is required. string
IpUsages This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetIpUsage>
IsAdvancedNetworking This property is required. bool
IsExternal This property is required. bool
IsNatEnabled This property is required. bool
Links This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetLink>
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.
MigrationState This property is required. string
Name This property is required. string
Name of the floating IP.
NetworkFunctionChainReference This property is required. string
NetworkId This property is required. int
ReservedIpAddresses This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetReservedIpAddress>
SubnetType This property is required. string
VirtualSwitchReference This property is required. string
VirtualSwitches This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitch>
VpcReference This property is required. string
VPC reference UUID
Vpcs This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetVpc>
Networking common base object
BridgeName This property is required. string
ClusterName This property is required. string
ClusterReference This property is required. string
Description This property is required. string
Description for the Floating IP.
DhcpOptions This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetDhcpOption
DynamicIpAddresses This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetDynamicIpAddress
ExtId This property is required. string
Floating IP UUID
HypervisorType This property is required. string
IpConfigs This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetIpConfig
IpPrefix This property is required. string
IpUsages This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetIpUsage
IsAdvancedNetworking This property is required. bool
IsExternal This property is required. bool
IsNatEnabled This property is required. bool
Links This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetLink
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.
MigrationState This property is required. string
Name This property is required. string
Name of the floating IP.
NetworkFunctionChainReference This property is required. string
NetworkId This property is required. int
ReservedIpAddresses This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetReservedIpAddress
SubnetType This property is required. string
VirtualSwitchReference This property is required. string
VirtualSwitches This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitch
VpcReference This property is required. string
VPC reference UUID
Vpcs This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVpc
Networking common base object
bridgeName This property is required. String
clusterName This property is required. String
clusterReference This property is required. String
description This property is required. String
Description for the Floating IP.
dhcpOptions This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetDhcpOption>
dynamicIpAddresses This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetDynamicIpAddress>
extId This property is required. String
Floating IP UUID
hypervisorType This property is required. String
ipConfigs This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetIpConfig>
ipPrefix This property is required. String
ipUsages This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetIpUsage>
isAdvancedNetworking This property is required. Boolean
isExternal This property is required. Boolean
isNatEnabled This property is required. Boolean
links This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetLink>
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.
migrationState This property is required. String
name This property is required. String
Name of the floating IP.
networkFunctionChainReference This property is required. String
networkId This property is required. Integer
reservedIpAddresses This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetReservedIpAddress>
subnetType This property is required. String
virtualSwitchReference This property is required. String
virtualSwitches This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitch>
vpcReference This property is required. String
VPC reference UUID
vpcs This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVpc>
Networking common base object
bridgeName This property is required. string
clusterName This property is required. string
clusterReference This property is required. string
description This property is required. string
Description for the Floating IP.
dhcpOptions This property is required. GetFloatingIpsV2FloatingIpExternalSubnetDhcpOption[]
dynamicIpAddresses This property is required. GetFloatingIpsV2FloatingIpExternalSubnetDynamicIpAddress[]
extId This property is required. string
Floating IP UUID
hypervisorType This property is required. string
ipConfigs This property is required. GetFloatingIpsV2FloatingIpExternalSubnetIpConfig[]
ipPrefix This property is required. string
ipUsages This property is required. GetFloatingIpsV2FloatingIpExternalSubnetIpUsage[]
isAdvancedNetworking This property is required. boolean
isExternal This property is required. boolean
isNatEnabled This property is required. boolean
links This property is required. GetFloatingIpsV2FloatingIpExternalSubnetLink[]
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.
migrationState This property is required. string
name This property is required. string
Name of the floating IP.
networkFunctionChainReference This property is required. string
networkId This property is required. number
reservedIpAddresses This property is required. GetFloatingIpsV2FloatingIpExternalSubnetReservedIpAddress[]
subnetType This property is required. string
virtualSwitchReference This property is required. string
virtualSwitches This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitch[]
vpcReference This property is required. string
VPC reference UUID
vpcs This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVpc[]
Networking common base object
bridge_name This property is required. str
cluster_name This property is required. str
cluster_reference This property is required. str
description This property is required. str
Description for the Floating IP.
dhcp_options This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetDhcpOption]
dynamic_ip_addresses This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetDynamicIpAddress]
ext_id This property is required. str
Floating IP UUID
hypervisor_type This property is required. str
ip_configs This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetIpConfig]
ip_prefix This property is required. str
ip_usages This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetIpUsage]
is_advanced_networking This property is required. bool
is_external This property is required. bool
is_nat_enabled This property is required. bool
links This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetLink]
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.
migration_state This property is required. str
name This property is required. str
Name of the floating IP.
network_function_chain_reference This property is required. str
network_id This property is required. int
reserved_ip_addresses This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetReservedIpAddress]
subnet_type This property is required. str
virtual_switch_reference This property is required. str
virtual_switches This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitch]
vpc_reference This property is required. str
VPC reference UUID
vpcs This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetVpc]
Networking common base object
bridgeName This property is required. String
clusterName This property is required. String
clusterReference This property is required. String
description This property is required. String
Description for the Floating IP.
dhcpOptions This property is required. List<Property Map>
dynamicIpAddresses This property is required. List<Property Map>
extId This property is required. String
Floating IP UUID
hypervisorType This property is required. String
ipConfigs This property is required. List<Property Map>
ipPrefix This property is required. String
ipUsages This property is required. List<Property Map>
isAdvancedNetworking This property is required. Boolean
isExternal This property is required. Boolean
isNatEnabled This property is required. Boolean
links This property is required. 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.
migrationState This property is required. String
name This property is required. String
Name of the floating IP.
networkFunctionChainReference This property is required. String
networkId This property is required. Number
reservedIpAddresses This property is required. List<Property Map>
subnetType This property is required. String
virtualSwitchReference This property is required. String
virtualSwitches This property is required. List<Property Map>
vpcReference This property is required. String
VPC reference UUID
vpcs This property is required. List<Property Map>
Networking common base object

GetFloatingIpsV2FloatingIpExternalSubnetDhcpOption

BootFileName This property is required. string
DomainName This property is required. string
DomainNameServers This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionDomainNameServer>
NtpServers This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionNtpServer>
SearchDomains This property is required. List<string>
TftpServerName This property is required. string
BootFileName This property is required. string
DomainName This property is required. string
DomainNameServers This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionDomainNameServer
NtpServers This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionNtpServer
SearchDomains This property is required. []string
TftpServerName This property is required. string
bootFileName This property is required. String
domainName This property is required. String
domainNameServers This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionDomainNameServer>
ntpServers This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionNtpServer>
searchDomains This property is required. List<String>
tftpServerName This property is required. String
bootFileName This property is required. string
domainName This property is required. string
domainNameServers This property is required. GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionDomainNameServer[]
ntpServers This property is required. GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionNtpServer[]
searchDomains This property is required. string[]
tftpServerName This property is required. string
boot_file_name This property is required. str
domain_name This property is required. str
domain_name_servers This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionDomainNameServer]
ntp_servers This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionNtpServer]
search_domains This property is required. Sequence[str]
tftp_server_name This property is required. str
bootFileName This property is required. String
domainName This property is required. String
domainNameServers This property is required. List<Property Map>
ntpServers This property is required. List<Property Map>
searchDomains This property is required. List<String>
tftpServerName This property is required. String

GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionDomainNameServer

Ipv4s This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionDomainNameServerIpv4
Reference to IP Configuration
Ipv6s This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionDomainNameServerIpv6
Reference to IP Configuration
ipv4s This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionDomainNameServerIpv4>
Reference to IP Configuration
ipv6s This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionDomainNameServerIpv6>
Reference to IP Configuration
ipv4s This property is required. GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionDomainNameServerIpv4[]
Reference to IP Configuration
ipv6s This property is required. GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionDomainNameServerIpv6[]
Reference to IP Configuration
ipv4s This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionDomainNameServerIpv4]
Reference to IP Configuration
ipv6s This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionDomainNameServerIpv6]
Reference to IP Configuration
ipv4s This property is required. List<Property Map>
Reference to IP Configuration
ipv6s This property is required. List<Property Map>
Reference to IP Configuration

GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionDomainNameServerIpv4

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionDomainNameServerIpv6

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionNtpServer

Ipv4s This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionNtpServerIpv4
Reference to IP Configuration
Ipv6s This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionNtpServerIpv6
Reference to IP Configuration
ipv4s This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionNtpServerIpv4>
Reference to IP Configuration
ipv6s This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionNtpServerIpv6>
Reference to IP Configuration
ipv4s This property is required. GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionNtpServerIpv4[]
Reference to IP Configuration
ipv6s This property is required. GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionNtpServerIpv6[]
Reference to IP Configuration
ipv4s This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionNtpServerIpv4]
Reference to IP Configuration
ipv6s This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionNtpServerIpv6]
Reference to IP Configuration
ipv4s This property is required. List<Property Map>
Reference to IP Configuration
ipv6s This property is required. List<Property Map>
Reference to IP Configuration

GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionNtpServerIpv4

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetDhcpOptionNtpServerIpv6

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetDynamicIpAddress

Ipv4s This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetDynamicIpAddressIpv4
Reference to IP Configuration
Ipv6s This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetDynamicIpAddressIpv6
Reference to IP Configuration
ipv4s This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetDynamicIpAddressIpv4>
Reference to IP Configuration
ipv6s This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetDynamicIpAddressIpv6>
Reference to IP Configuration
ipv4s This property is required. GetFloatingIpsV2FloatingIpExternalSubnetDynamicIpAddressIpv4[]
Reference to IP Configuration
ipv6s This property is required. GetFloatingIpsV2FloatingIpExternalSubnetDynamicIpAddressIpv6[]
Reference to IP Configuration
ipv4s This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetDynamicIpAddressIpv4]
Reference to IP Configuration
ipv6s This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetDynamicIpAddressIpv6]
Reference to IP Configuration
ipv4s This property is required. List<Property Map>
Reference to IP Configuration
ipv6s This property is required. List<Property Map>
Reference to IP Configuration

GetFloatingIpsV2FloatingIpExternalSubnetDynamicIpAddressIpv4

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetDynamicIpAddressIpv6

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetIpConfig

Ipv4s This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv4
Reference to IP Configuration
Ipv6s This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv6
Reference to IP Configuration
ipv4s This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv4>
Reference to IP Configuration
ipv6s This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv6>
Reference to IP Configuration
ipv4s This property is required. GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv4[]
Reference to IP Configuration
ipv6s This property is required. GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv6[]
Reference to IP Configuration
ipv4s This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv4]
Reference to IP Configuration
ipv6s This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv6]
Reference to IP Configuration
ipv4s This property is required. List<Property Map>
Reference to IP Configuration
ipv6s This property is required. List<Property Map>
Reference to IP Configuration

GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv4

defaultGatewayIps This property is required. List<Property Map>
dhcpServerAddresses This property is required. List<Property Map>
ipSubnets This property is required. List<Property Map>
poolLists This property is required. List<Property Map>

GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv4DefaultGatewayIp

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv4DhcpServerAddress

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv4IpSubnet

Ips This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv4IpSubnetIp>
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Ips This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv4IpSubnetIp
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv4IpSubnetIp>
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv4IpSubnetIp[]
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv4IpSubnetIp]
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. List<Property Map>
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.

GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv4IpSubnetIp

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv4PoolList

endIps This property is required. List<Property Map>
startIps This property is required. List<Property Map>

GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv4PoolListEndIp

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv4PoolListStartIp

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv6

defaultGatewayIps This property is required. List<Property Map>
dhcpServerAddresses This property is required. List<Property Map>
ipSubnets This property is required. List<Property Map>
poolLists This property is required. List<Property Map>

GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv6DefaultGatewayIp

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv6DhcpServerAddress

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv6IpSubnet

Ips This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv6IpSubnetIp>
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Ips This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv6IpSubnetIp
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv6IpSubnetIp>
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv6IpSubnetIp[]
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv6IpSubnetIp]
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. List<Property Map>
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.

GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv6IpSubnetIp

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv6PoolList

endIps This property is required. List<Property Map>
startIps This property is required. List<Property Map>

GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv6PoolListEndIp

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetIpConfigIpv6PoolListStartIp

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetIpUsage

IpPoolUsages This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetIpUsageIpPoolUsage>
NumAssignedIps This property is required. int
NumFreeIps This property is required. int
NumMacs This property is required. int
IpPoolUsages This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetIpUsageIpPoolUsage
NumAssignedIps This property is required. int
NumFreeIps This property is required. int
NumMacs This property is required. int
ipPoolUsages This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetIpUsageIpPoolUsage>
numAssignedIps This property is required. Integer
numFreeIps This property is required. Integer
numMacs This property is required. Integer
ipPoolUsages This property is required. GetFloatingIpsV2FloatingIpExternalSubnetIpUsageIpPoolUsage[]
numAssignedIps This property is required. number
numFreeIps This property is required. number
numMacs This property is required. number
ip_pool_usages This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetIpUsageIpPoolUsage]
num_assigned_ips This property is required. int
num_free_ips This property is required. int
num_macs This property is required. int
ipPoolUsages This property is required. List<Property Map>
numAssignedIps This property is required. Number
numFreeIps This property is required. Number
numMacs This property is required. Number

GetFloatingIpsV2FloatingIpExternalSubnetIpUsageIpPoolUsage

NumFreeIps This property is required. int
NumTotalIps This property is required. int
Ranges This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetIpUsageIpPoolUsageRange>
NumFreeIps This property is required. int
NumTotalIps This property is required. int
Ranges This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetIpUsageIpPoolUsageRange
numFreeIps This property is required. Integer
numTotalIps This property is required. Integer
ranges This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetIpUsageIpPoolUsageRange>
numFreeIps This property is required. number
numTotalIps This property is required. number
ranges This property is required. GetFloatingIpsV2FloatingIpExternalSubnetIpUsageIpPoolUsageRange[]
num_free_ips This property is required. int
num_total_ips This property is required. int
ranges This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetIpUsageIpPoolUsageRange]
numFreeIps This property is required. Number
numTotalIps This property is required. Number
ranges This property is required. List<Property Map>

GetFloatingIpsV2FloatingIpExternalSubnetIpUsageIpPoolUsageRange

endIps This property is required. List<Property Map>
startIps This property is required. List<Property Map>

GetFloatingIpsV2FloatingIpExternalSubnetIpUsageIpPoolUsageRangeEndIp

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetIpUsageIpPoolUsageRangeStartIp

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
Href This property is required. string
Rel This property is required. string
Href This property is required. string
Rel This property is required. string
href This property is required. String
rel This property is required. String
href This property is required. string
rel This property is required. string
href This property is required. str
rel This property is required. str
href This property is required. String
rel This property is required. String

GetFloatingIpsV2FloatingIpExternalSubnetReservedIpAddress

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitch

BondMode This property is required. bool
Clusters This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchCluster>
Description This property is required. string
Description for the Floating IP.
ExtId This property is required. string
Floating IP UUID
HasDeploymentError This property is required. bool
IsDefault This property is required. bool
Links This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchLink>
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.
Metadatas This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchMetadata>
Metadata associated with this resource.
Mtu This property is required. int
Name This property is required. string
Name of the floating IP.
TenantId This property is required. string
A globally unique identifier that represents the tenant that owns this entity.
BondMode This property is required. bool
Clusters This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchCluster
Description This property is required. string
Description for the Floating IP.
ExtId This property is required. string
Floating IP UUID
HasDeploymentError This property is required. bool
IsDefault This property is required. bool
Links This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchLink
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.
Metadatas This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchMetadata
Metadata associated with this resource.
Mtu This property is required. int
Name This property is required. string
Name of the floating IP.
TenantId This property is required. string
A globally unique identifier that represents the tenant that owns this entity.
bondMode This property is required. Boolean
clusters This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchCluster>
description This property is required. String
Description for the Floating IP.
extId This property is required. String
Floating IP UUID
hasDeploymentError This property is required. Boolean
isDefault This property is required. Boolean
links This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchLink>
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.
metadatas This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchMetadata>
Metadata associated with this resource.
mtu This property is required. Integer
name This property is required. String
Name of the floating IP.
tenantId This property is required. String
A globally unique identifier that represents the tenant that owns this entity.
bondMode This property is required. boolean
clusters This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchCluster[]
description This property is required. string
Description for the Floating IP.
extId This property is required. string
Floating IP UUID
hasDeploymentError This property is required. boolean
isDefault This property is required. boolean
links This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchLink[]
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.
metadatas This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchMetadata[]
Metadata associated with this resource.
mtu This property is required. number
name This property is required. string
Name of the floating IP.
tenantId This property is required. string
A globally unique identifier that represents the tenant that owns this entity.
bond_mode This property is required. bool
clusters This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchCluster]
description This property is required. str
Description for the Floating IP.
ext_id This property is required. str
Floating IP UUID
has_deployment_error This property is required. bool
is_default This property is required. bool
links This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchLink]
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.
metadatas This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchMetadata]
Metadata associated with this resource.
mtu This property is required. int
name This property is required. str
Name of the floating IP.
tenant_id This property is required. str
A globally unique identifier that represents the tenant that owns this entity.
bondMode This property is required. Boolean
clusters This property is required. List<Property Map>
description This property is required. String
Description for the Floating IP.
extId This property is required. String
Floating IP UUID
hasDeploymentError This property is required. Boolean
isDefault This property is required. Boolean
links This property is required. 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.
metadatas This property is required. List<Property Map>
Metadata associated with this resource.
mtu This property is required. Number
name This property is required. String
Name of the floating IP.
tenantId This property is required. String
A globally unique identifier that represents the tenant that owns this entity.

GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchCluster

extId This property is required. String
Floating IP UUID
gatewayIpAddresses This property is required. List<Property Map>
hosts This property is required. List<Property Map>

GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchClusterGatewayIpAddress

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchClusterHost

ExtId This property is required. string
Floating IP UUID
HostNics This property is required. List<string>
InternalBridgeName This property is required. string
IpAddresses This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchClusterHostIpAddress>
RouteTable This property is required. int
ExtId This property is required. string
Floating IP UUID
HostNics This property is required. []string
InternalBridgeName This property is required. string
IpAddresses This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchClusterHostIpAddress
RouteTable This property is required. int
extId This property is required. String
Floating IP UUID
hostNics This property is required. List<String>
internalBridgeName This property is required. String
ipAddresses This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchClusterHostIpAddress>
routeTable This property is required. Integer
extId This property is required. string
Floating IP UUID
hostNics This property is required. string[]
internalBridgeName This property is required. string
ipAddresses This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchClusterHostIpAddress[]
routeTable This property is required. number
ext_id This property is required. str
Floating IP UUID
host_nics This property is required. Sequence[str]
internal_bridge_name This property is required. str
ip_addresses This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchClusterHostIpAddress]
route_table This property is required. int
extId This property is required. String
Floating IP UUID
hostNics This property is required. List<String>
internalBridgeName This property is required. String
ipAddresses This property is required. List<Property Map>
routeTable This property is required. Number

GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchClusterHostIpAddress

Ips This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchClusterHostIpAddressIp>
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Ips This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchClusterHostIpAddressIp
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchClusterHostIpAddressIp>
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchClusterHostIpAddressIp[]
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchClusterHostIpAddressIp]
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. List<Property Map>
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.

GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchClusterHostIpAddressIp

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
Href This property is required. string
Rel This property is required. string
Href This property is required. string
Rel This property is required. string
href This property is required. String
rel This property is required. String
href This property is required. string
rel This property is required. string
href This property is required. str
rel This property is required. str
href This property is required. String
rel This property is required. String

GetFloatingIpsV2FloatingIpExternalSubnetVirtualSwitchMetadata

CategoryIds This property is required. List<ImmutableArray<object>>
OwnerReferenceId This property is required. string
OwnerUserName This property is required. string
ProjectName This property is required. string
ProjectReferenceId This property is required. string
CategoryIds This property is required. [][]interface{}
OwnerReferenceId This property is required. string
OwnerUserName This property is required. string
ProjectName This property is required. string
ProjectReferenceId This property is required. string
categoryIds This property is required. List<List<Object>>
ownerReferenceId This property is required. String
ownerUserName This property is required. String
projectName This property is required. String
projectReferenceId This property is required. String
categoryIds This property is required. any[][]
ownerReferenceId This property is required. string
ownerUserName This property is required. string
projectName This property is required. string
projectReferenceId This property is required. string
category_ids This property is required. Sequence[Sequence[Any]]
owner_reference_id This property is required. str
owner_user_name This property is required. str
project_name This property is required. str
project_reference_id This property is required. str
categoryIds This property is required. List<List<Any>>
ownerReferenceId This property is required. String
ownerUserName This property is required. String
projectName This property is required. String
projectReferenceId This property is required. String

GetFloatingIpsV2FloatingIpExternalSubnetVpc

CommonDhcpOptions This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetVpcCommonDhcpOption>
Description This property is required. string
Description for the Floating IP.
ExtId This property is required. string
Floating IP UUID
ExternalRoutingDomainReference This property is required. string
ExternalSubnets This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnet>
ExternallyRoutablePrefixes This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefix>
Links This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetVpcLink>
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.
Metadatas This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetVpcMetadata>
Metadata associated with this resource.
Name This property is required. string
Name of the floating IP.
SnatIps This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetVpcSnatIp>
TenantId This property is required. string
A globally unique identifier that represents the tenant that owns this entity.
VpcType This property is required. string
CommonDhcpOptions This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVpcCommonDhcpOption
Description This property is required. string
Description for the Floating IP.
ExtId This property is required. string
Floating IP UUID
ExternalRoutingDomainReference This property is required. string
ExternalSubnets This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnet
ExternallyRoutablePrefixes This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefix
Links This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVpcLink
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.
Metadatas This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVpcMetadata
Metadata associated with this resource.
Name This property is required. string
Name of the floating IP.
SnatIps This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVpcSnatIp
TenantId This property is required. string
A globally unique identifier that represents the tenant that owns this entity.
VpcType This property is required. string
commonDhcpOptions This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVpcCommonDhcpOption>
description This property is required. String
Description for the Floating IP.
extId This property is required. String
Floating IP UUID
externalRoutingDomainReference This property is required. String
externalSubnets This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnet>
externallyRoutablePrefixes This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefix>
links This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVpcLink>
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.
metadatas This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVpcMetadata>
Metadata associated with this resource.
name This property is required. String
Name of the floating IP.
snatIps This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVpcSnatIp>
tenantId This property is required. String
A globally unique identifier that represents the tenant that owns this entity.
vpcType This property is required. String
commonDhcpOptions This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVpcCommonDhcpOption[]
description This property is required. string
Description for the Floating IP.
extId This property is required. string
Floating IP UUID
externalRoutingDomainReference This property is required. string
externalSubnets This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnet[]
externallyRoutablePrefixes This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefix[]
links This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVpcLink[]
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.
metadatas This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVpcMetadata[]
Metadata associated with this resource.
name This property is required. string
Name of the floating IP.
snatIps This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVpcSnatIp[]
tenantId This property is required. string
A globally unique identifier that represents the tenant that owns this entity.
vpcType This property is required. string
common_dhcp_options This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetVpcCommonDhcpOption]
description This property is required. str
Description for the Floating IP.
ext_id This property is required. str
Floating IP UUID
external_routing_domain_reference This property is required. str
external_subnets This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnet]
externally_routable_prefixes This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefix]
links This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetVpcLink]
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.
metadatas This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetVpcMetadata]
Metadata associated with this resource.
name This property is required. str
Name of the floating IP.
snat_ips This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetVpcSnatIp]
tenant_id This property is required. str
A globally unique identifier that represents the tenant that owns this entity.
vpc_type This property is required. str
commonDhcpOptions This property is required. List<Property Map>
description This property is required. String
Description for the Floating IP.
extId This property is required. String
Floating IP UUID
externalRoutingDomainReference This property is required. String
externalSubnets This property is required. List<Property Map>
externallyRoutablePrefixes This property is required. List<Property Map>
links This property is required. 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.
metadatas This property is required. List<Property Map>
Metadata associated with this resource.
name This property is required. String
Name of the floating IP.
snatIps This property is required. List<Property Map>
tenantId This property is required. String
A globally unique identifier that represents the tenant that owns this entity.
vpcType This property is required. String

GetFloatingIpsV2FloatingIpExternalSubnetVpcCommonDhcpOption

domainNameServers This property is required. List<Property Map>

GetFloatingIpsV2FloatingIpExternalSubnetVpcCommonDhcpOptionDomainNameServer

ipv4s This property is required. List<Property Map>
Reference to IP Configuration
ipv6s This property is required. List<Property Map>
Reference to IP Configuration

GetFloatingIpsV2FloatingIpExternalSubnetVpcCommonDhcpOptionDomainNameServerIpv4

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetVpcCommonDhcpOptionDomainNameServerIpv6

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnet

ActiveGatewayCount This property is required. int
ActiveGatewayNodes This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnetActiveGatewayNode
ExternalIps This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnetExternalIp
GatewayNodes This property is required. []string
SubnetReference This property is required. string
activeGatewayCount This property is required. Integer
activeGatewayNodes This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnetActiveGatewayNode>
externalIps This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnetExternalIp>
gatewayNodes This property is required. List<String>
subnetReference This property is required. String
activeGatewayCount This property is required. number
activeGatewayNodes This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnetActiveGatewayNode[]
externalIps This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnetExternalIp[]
gatewayNodes This property is required. string[]
subnetReference This property is required. string
activeGatewayCount This property is required. Number
activeGatewayNodes This property is required. List<Property Map>
externalIps This property is required. List<Property Map>
gatewayNodes This property is required. List<String>
subnetReference This property is required. String

GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnetActiveGatewayNode

nodeId This property is required. String
nodeIpAddresses This property is required. List<Property Map>

GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddress

ipv4s This property is required. List<Property Map>
Reference to IP Configuration
ipv6s This property is required. List<Property Map>
Reference to IP Configuration

GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv4

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv6

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnetExternalIp

Ipv4s This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnetExternalIpIpv4
Reference to IP Configuration
Ipv6s This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnetExternalIpIpv6
Reference to IP Configuration
ipv4s This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnetExternalIpIpv4>
Reference to IP Configuration
ipv6s This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnetExternalIpIpv6>
Reference to IP Configuration
ipv4s This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnetExternalIpIpv4[]
Reference to IP Configuration
ipv6s This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnetExternalIpIpv6[]
Reference to IP Configuration
ipv4s This property is required. List<Property Map>
Reference to IP Configuration
ipv6s This property is required. List<Property Map>
Reference to IP Configuration

GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnetExternalIpIpv4

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetVpcExternalSubnetExternalIpIpv6

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefix

Ipv4s This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv4
Reference to IP Configuration
Ipv6s This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv6
Reference to IP Configuration
ipv4s This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv4>
Reference to IP Configuration
ipv6s This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv6>
Reference to IP Configuration
ipv4s This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv4[]
Reference to IP Configuration
ipv6s This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv6[]
Reference to IP Configuration
ipv4s This property is required. List<Property Map>
Reference to IP Configuration
ipv6s This property is required. List<Property Map>
Reference to IP Configuration

GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv4

Ips This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv4Ip>
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Ips This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv4Ip
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv4Ip>
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv4Ip[]
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv4Ip]
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. List<Property Map>
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.

GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv4Ip

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv6

Ips This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv6Ip>
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Ips This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv6Ip
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv6Ip>
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv6Ip[]
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv6Ip]
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. List<Property Map>
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.

GetFloatingIpsV2FloatingIpExternalSubnetVpcExternallyRoutablePrefixIpv6Ip

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
Href This property is required. string
Rel This property is required. string
Href This property is required. string
Rel This property is required. string
href This property is required. String
rel This property is required. String
href This property is required. string
rel This property is required. string
href This property is required. str
rel This property is required. str
href This property is required. String
rel This property is required. String

GetFloatingIpsV2FloatingIpExternalSubnetVpcMetadata

CategoryIds This property is required. List<ImmutableArray<object>>
OwnerReferenceId This property is required. string
OwnerUserName This property is required. string
ProjectName This property is required. string
ProjectReferenceId This property is required. string
CategoryIds This property is required. [][]interface{}
OwnerReferenceId This property is required. string
OwnerUserName This property is required. string
ProjectName This property is required. string
ProjectReferenceId This property is required. string
categoryIds This property is required. List<List<Object>>
ownerReferenceId This property is required. String
ownerUserName This property is required. String
projectName This property is required. String
projectReferenceId This property is required. String
categoryIds This property is required. any[][]
ownerReferenceId This property is required. string
ownerUserName This property is required. string
projectName This property is required. string
projectReferenceId This property is required. string
category_ids This property is required. Sequence[Sequence[Any]]
owner_reference_id This property is required. str
owner_user_name This property is required. str
project_name This property is required. str
project_reference_id This property is required. str
categoryIds This property is required. List<List<Any>>
ownerReferenceId This property is required. String
ownerUserName This property is required. String
projectName This property is required. String
projectReferenceId This property is required. String

GetFloatingIpsV2FloatingIpExternalSubnetVpcSnatIp

Ipv4s This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVpcSnatIpIpv4
Reference to IP Configuration
Ipv6s This property is required. []GetFloatingIpsV2FloatingIpExternalSubnetVpcSnatIpIpv6
Reference to IP Configuration
ipv4s This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVpcSnatIpIpv4>
Reference to IP Configuration
ipv6s This property is required. List<GetFloatingIpsV2FloatingIpExternalSubnetVpcSnatIpIpv6>
Reference to IP Configuration
ipv4s This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVpcSnatIpIpv4[]
Reference to IP Configuration
ipv6s This property is required. GetFloatingIpsV2FloatingIpExternalSubnetVpcSnatIpIpv6[]
Reference to IP Configuration
ipv4s This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetVpcSnatIpIpv4]
Reference to IP Configuration
ipv6s This property is required. Sequence[GetFloatingIpsV2FloatingIpExternalSubnetVpcSnatIpIpv6]
Reference to IP Configuration
ipv4s This property is required. List<Property Map>
Reference to IP Configuration
ipv6s This property is required. List<Property Map>
Reference to IP Configuration

GetFloatingIpsV2FloatingIpExternalSubnetVpcSnatIpIpv4

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpExternalSubnetVpcSnatIpIpv6

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpFloatingIp

Ipv4s This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpFloatingIpIpv4>
Reference to IP Configuration
Ipv6s This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpFloatingIpIpv6>
Reference to IP Configuration
Ipv4s This property is required. []GetFloatingIpsV2FloatingIpFloatingIpIpv4
Reference to IP Configuration
Ipv6s This property is required. []GetFloatingIpsV2FloatingIpFloatingIpIpv6
Reference to IP Configuration
ipv4s This property is required. List<GetFloatingIpsV2FloatingIpFloatingIpIpv4>
Reference to IP Configuration
ipv6s This property is required. List<GetFloatingIpsV2FloatingIpFloatingIpIpv6>
Reference to IP Configuration
ipv4s This property is required. GetFloatingIpsV2FloatingIpFloatingIpIpv4[]
Reference to IP Configuration
ipv6s This property is required. GetFloatingIpsV2FloatingIpFloatingIpIpv6[]
Reference to IP Configuration
ipv4s This property is required. Sequence[GetFloatingIpsV2FloatingIpFloatingIpIpv4]
Reference to IP Configuration
ipv6s This property is required. Sequence[GetFloatingIpsV2FloatingIpFloatingIpIpv6]
Reference to IP Configuration
ipv4s This property is required. List<Property Map>
Reference to IP Configuration
ipv6s This property is required. List<Property Map>
Reference to IP Configuration

GetFloatingIpsV2FloatingIpFloatingIpIpv4

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpFloatingIpIpv6

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
Href This property is required. string
Rel This property is required. string
Href This property is required. string
Rel This property is required. string
href This property is required. String
rel This property is required. String
href This property is required. string
rel This property is required. string
href This property is required. str
rel This property is required. str
href This property is required. String
rel This property is required. String

GetFloatingIpsV2FloatingIpMetadata

CategoryIds This property is required. List<ImmutableArray<object>>
OwnerReferenceId This property is required. string
OwnerUserName This property is required. string
ProjectName This property is required. string
ProjectReferenceId This property is required. string
CategoryIds This property is required. [][]interface{}
OwnerReferenceId This property is required. string
OwnerUserName This property is required. string
ProjectName This property is required. string
ProjectReferenceId This property is required. string
categoryIds This property is required. List<List<Object>>
ownerReferenceId This property is required. String
ownerUserName This property is required. String
projectName This property is required. String
projectReferenceId This property is required. String
categoryIds This property is required. any[][]
ownerReferenceId This property is required. string
ownerUserName This property is required. string
projectName This property is required. string
projectReferenceId This property is required. string
category_ids This property is required. Sequence[Sequence[Any]]
owner_reference_id This property is required. str
owner_user_name This property is required. str
project_name This property is required. str
project_reference_id This property is required. str
categoryIds This property is required. List<List<Any>>
ownerReferenceId This property is required. String
ownerUserName This property is required. String
projectName This property is required. String
projectReferenceId This property is required. String

GetFloatingIpsV2FloatingIpVmNic

PrivateIp This property is required. string
Private IP value in string
PrivateIp This property is required. string
Private IP value in string
privateIp This property is required. String
Private IP value in string
privateIp This property is required. string
Private IP value in string
private_ip This property is required. str
Private IP value in string
privateIp This property is required. String
Private IP value in string

GetFloatingIpsV2FloatingIpVpc

CommonDhcpOptions This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpVpcCommonDhcpOption>
Description This property is required. string
Description for the Floating IP.
ExtId This property is required. string
Floating IP UUID
ExternalRoutingDomainReference This property is required. string
ExternalSubnets This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpVpcExternalSubnet>
ExternallyRoutablePrefixes This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefix>
Links This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpVpcLink>
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.
Metadatas This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpVpcMetadata>
Metadata associated with this resource.
Name This property is required. string
Name of the floating IP.
SnatIps This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpVpcSnatIp>
TenantId This property is required. string
A globally unique identifier that represents the tenant that owns this entity.
VpcType This property is required. string
CommonDhcpOptions This property is required. []GetFloatingIpsV2FloatingIpVpcCommonDhcpOption
Description This property is required. string
Description for the Floating IP.
ExtId This property is required. string
Floating IP UUID
ExternalRoutingDomainReference This property is required. string
ExternalSubnets This property is required. []GetFloatingIpsV2FloatingIpVpcExternalSubnet
ExternallyRoutablePrefixes This property is required. []GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefix
Links This property is required. []GetFloatingIpsV2FloatingIpVpcLink
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.
Metadatas This property is required. []GetFloatingIpsV2FloatingIpVpcMetadata
Metadata associated with this resource.
Name This property is required. string
Name of the floating IP.
SnatIps This property is required. []GetFloatingIpsV2FloatingIpVpcSnatIp
TenantId This property is required. string
A globally unique identifier that represents the tenant that owns this entity.
VpcType This property is required. string
commonDhcpOptions This property is required. List<GetFloatingIpsV2FloatingIpVpcCommonDhcpOption>
description This property is required. String
Description for the Floating IP.
extId This property is required. String
Floating IP UUID
externalRoutingDomainReference This property is required. String
externalSubnets This property is required. List<GetFloatingIpsV2FloatingIpVpcExternalSubnet>
externallyRoutablePrefixes This property is required. List<GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefix>
links This property is required. List<GetFloatingIpsV2FloatingIpVpcLink>
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.
metadatas This property is required. List<GetFloatingIpsV2FloatingIpVpcMetadata>
Metadata associated with this resource.
name This property is required. String
Name of the floating IP.
snatIps This property is required. List<GetFloatingIpsV2FloatingIpVpcSnatIp>
tenantId This property is required. String
A globally unique identifier that represents the tenant that owns this entity.
vpcType This property is required. String
commonDhcpOptions This property is required. GetFloatingIpsV2FloatingIpVpcCommonDhcpOption[]
description This property is required. string
Description for the Floating IP.
extId This property is required. string
Floating IP UUID
externalRoutingDomainReference This property is required. string
externalSubnets This property is required. GetFloatingIpsV2FloatingIpVpcExternalSubnet[]
externallyRoutablePrefixes This property is required. GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefix[]
links This property is required. GetFloatingIpsV2FloatingIpVpcLink[]
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.
metadatas This property is required. GetFloatingIpsV2FloatingIpVpcMetadata[]
Metadata associated with this resource.
name This property is required. string
Name of the floating IP.
snatIps This property is required. GetFloatingIpsV2FloatingIpVpcSnatIp[]
tenantId This property is required. string
A globally unique identifier that represents the tenant that owns this entity.
vpcType This property is required. string
common_dhcp_options This property is required. Sequence[GetFloatingIpsV2FloatingIpVpcCommonDhcpOption]
description This property is required. str
Description for the Floating IP.
ext_id This property is required. str
Floating IP UUID
external_routing_domain_reference This property is required. str
external_subnets This property is required. Sequence[GetFloatingIpsV2FloatingIpVpcExternalSubnet]
externally_routable_prefixes This property is required. Sequence[GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefix]
links This property is required. Sequence[GetFloatingIpsV2FloatingIpVpcLink]
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.
metadatas This property is required. Sequence[GetFloatingIpsV2FloatingIpVpcMetadata]
Metadata associated with this resource.
name This property is required. str
Name of the floating IP.
snat_ips This property is required. Sequence[GetFloatingIpsV2FloatingIpVpcSnatIp]
tenant_id This property is required. str
A globally unique identifier that represents the tenant that owns this entity.
vpc_type This property is required. str
commonDhcpOptions This property is required. List<Property Map>
description This property is required. String
Description for the Floating IP.
extId This property is required. String
Floating IP UUID
externalRoutingDomainReference This property is required. String
externalSubnets This property is required. List<Property Map>
externallyRoutablePrefixes This property is required. List<Property Map>
links This property is required. 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.
metadatas This property is required. List<Property Map>
Metadata associated with this resource.
name This property is required. String
Name of the floating IP.
snatIps This property is required. List<Property Map>
tenantId This property is required. String
A globally unique identifier that represents the tenant that owns this entity.
vpcType This property is required. String

GetFloatingIpsV2FloatingIpVpcCommonDhcpOption

domainNameServers This property is required. List<Property Map>

GetFloatingIpsV2FloatingIpVpcCommonDhcpOptionDomainNameServer

Ipv4s This property is required. []GetFloatingIpsV2FloatingIpVpcCommonDhcpOptionDomainNameServerIpv4
Reference to IP Configuration
Ipv6s This property is required. []GetFloatingIpsV2FloatingIpVpcCommonDhcpOptionDomainNameServerIpv6
Reference to IP Configuration
ipv4s This property is required. List<GetFloatingIpsV2FloatingIpVpcCommonDhcpOptionDomainNameServerIpv4>
Reference to IP Configuration
ipv6s This property is required. List<GetFloatingIpsV2FloatingIpVpcCommonDhcpOptionDomainNameServerIpv6>
Reference to IP Configuration
ipv4s This property is required. GetFloatingIpsV2FloatingIpVpcCommonDhcpOptionDomainNameServerIpv4[]
Reference to IP Configuration
ipv6s This property is required. GetFloatingIpsV2FloatingIpVpcCommonDhcpOptionDomainNameServerIpv6[]
Reference to IP Configuration
ipv4s This property is required. Sequence[GetFloatingIpsV2FloatingIpVpcCommonDhcpOptionDomainNameServerIpv4]
Reference to IP Configuration
ipv6s This property is required. Sequence[GetFloatingIpsV2FloatingIpVpcCommonDhcpOptionDomainNameServerIpv6]
Reference to IP Configuration
ipv4s This property is required. List<Property Map>
Reference to IP Configuration
ipv6s This property is required. List<Property Map>
Reference to IP Configuration

GetFloatingIpsV2FloatingIpVpcCommonDhcpOptionDomainNameServerIpv4

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpVpcCommonDhcpOptionDomainNameServerIpv6

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpVpcExternalSubnet

ActiveGatewayCount This property is required. int
ActiveGatewayNodes This property is required. []GetFloatingIpsV2FloatingIpVpcExternalSubnetActiveGatewayNode
ExternalIps This property is required. []GetFloatingIpsV2FloatingIpVpcExternalSubnetExternalIp
GatewayNodes This property is required. []string
SubnetReference This property is required. string
activeGatewayCount This property is required. Integer
activeGatewayNodes This property is required. List<GetFloatingIpsV2FloatingIpVpcExternalSubnetActiveGatewayNode>
externalIps This property is required. List<GetFloatingIpsV2FloatingIpVpcExternalSubnetExternalIp>
gatewayNodes This property is required. List<String>
subnetReference This property is required. String
activeGatewayCount This property is required. number
activeGatewayNodes This property is required. GetFloatingIpsV2FloatingIpVpcExternalSubnetActiveGatewayNode[]
externalIps This property is required. GetFloatingIpsV2FloatingIpVpcExternalSubnetExternalIp[]
gatewayNodes This property is required. string[]
subnetReference This property is required. string
active_gateway_count This property is required. int
active_gateway_nodes This property is required. Sequence[GetFloatingIpsV2FloatingIpVpcExternalSubnetActiveGatewayNode]
external_ips This property is required. Sequence[GetFloatingIpsV2FloatingIpVpcExternalSubnetExternalIp]
gateway_nodes This property is required. Sequence[str]
subnet_reference This property is required. str
activeGatewayCount This property is required. Number
activeGatewayNodes This property is required. List<Property Map>
externalIps This property is required. List<Property Map>
gatewayNodes This property is required. List<String>
subnetReference This property is required. String

GetFloatingIpsV2FloatingIpVpcExternalSubnetActiveGatewayNode

nodeId This property is required. String
nodeIpAddresses This property is required. List<Property Map>

GetFloatingIpsV2FloatingIpVpcExternalSubnetActiveGatewayNodeNodeIpAddress

Ipv4s This property is required. []GetFloatingIpsV2FloatingIpVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv4
Reference to IP Configuration
Ipv6s This property is required. []GetFloatingIpsV2FloatingIpVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv6
Reference to IP Configuration
ipv4s This property is required. GetFloatingIpsV2FloatingIpVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv4[]
Reference to IP Configuration
ipv6s This property is required. GetFloatingIpsV2FloatingIpVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv6[]
Reference to IP Configuration
ipv4s This property is required. List<Property Map>
Reference to IP Configuration
ipv6s This property is required. List<Property Map>
Reference to IP Configuration

GetFloatingIpsV2FloatingIpVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv4

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv6

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpVpcExternalSubnetExternalIp

Ipv4s This property is required. []GetFloatingIpsV2FloatingIpVpcExternalSubnetExternalIpIpv4
Reference to IP Configuration
Ipv6s This property is required. []GetFloatingIpsV2FloatingIpVpcExternalSubnetExternalIpIpv6
Reference to IP Configuration
ipv4s This property is required. List<GetFloatingIpsV2FloatingIpVpcExternalSubnetExternalIpIpv4>
Reference to IP Configuration
ipv6s This property is required. List<GetFloatingIpsV2FloatingIpVpcExternalSubnetExternalIpIpv6>
Reference to IP Configuration
ipv4s This property is required. GetFloatingIpsV2FloatingIpVpcExternalSubnetExternalIpIpv4[]
Reference to IP Configuration
ipv6s This property is required. GetFloatingIpsV2FloatingIpVpcExternalSubnetExternalIpIpv6[]
Reference to IP Configuration
ipv4s This property is required. Sequence[GetFloatingIpsV2FloatingIpVpcExternalSubnetExternalIpIpv4]
Reference to IP Configuration
ipv6s This property is required. Sequence[GetFloatingIpsV2FloatingIpVpcExternalSubnetExternalIpIpv6]
Reference to IP Configuration
ipv4s This property is required. List<Property Map>
Reference to IP Configuration
ipv6s This property is required. List<Property Map>
Reference to IP Configuration

GetFloatingIpsV2FloatingIpVpcExternalSubnetExternalIpIpv4

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpVpcExternalSubnetExternalIpIpv6

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefix

Ipv4s This property is required. []GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv4
Reference to IP Configuration
Ipv6s This property is required. []GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv6
Reference to IP Configuration
ipv4s This property is required. List<GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv4>
Reference to IP Configuration
ipv6s This property is required. List<GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv6>
Reference to IP Configuration
ipv4s This property is required. GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv4[]
Reference to IP Configuration
ipv6s This property is required. GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv6[]
Reference to IP Configuration
ipv4s This property is required. Sequence[GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv4]
Reference to IP Configuration
ipv6s This property is required. Sequence[GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv6]
Reference to IP Configuration
ipv4s This property is required. List<Property Map>
Reference to IP Configuration
ipv6s This property is required. List<Property Map>
Reference to IP Configuration

GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv4

Ips This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv4Ip>
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Ips This property is required. []GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv4Ip
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. List<GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv4Ip>
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv4Ip[]
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. Sequence[GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv4Ip]
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. List<Property Map>
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.

GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv4Ip

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv6

Ips This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv6Ip>
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Ips This property is required. []GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv6Ip
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. List<GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv6Ip>
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv6Ip[]
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. Sequence[GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv6Ip]
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
ips This property is required. List<Property Map>
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.

GetFloatingIpsV2FloatingIpVpcExternallyRoutablePrefixIpv6Ip

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
Href This property is required. string
Rel This property is required. string
Href This property is required. string
Rel This property is required. string
href This property is required. String
rel This property is required. String
href This property is required. string
rel This property is required. string
href This property is required. str
rel This property is required. str
href This property is required. String
rel This property is required. String

GetFloatingIpsV2FloatingIpVpcMetadata

CategoryIds This property is required. List<ImmutableArray<object>>
OwnerReferenceId This property is required. string
OwnerUserName This property is required. string
ProjectName This property is required. string
ProjectReferenceId This property is required. string
CategoryIds This property is required. [][]interface{}
OwnerReferenceId This property is required. string
OwnerUserName This property is required. string
ProjectName This property is required. string
ProjectReferenceId This property is required. string
categoryIds This property is required. List<List<Object>>
ownerReferenceId This property is required. String
ownerUserName This property is required. String
projectName This property is required. String
projectReferenceId This property is required. String
categoryIds This property is required. any[][]
ownerReferenceId This property is required. string
ownerUserName This property is required. string
projectName This property is required. string
projectReferenceId This property is required. string
category_ids This property is required. Sequence[Sequence[Any]]
owner_reference_id This property is required. str
owner_user_name This property is required. str
project_name This property is required. str
project_reference_id This property is required. str
categoryIds This property is required. List<List<Any>>
ownerReferenceId This property is required. String
ownerUserName This property is required. String
projectName This property is required. String
projectReferenceId This property is required. String

GetFloatingIpsV2FloatingIpVpcSnatIp

Ipv4s This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpVpcSnatIpIpv4>
Reference to IP Configuration
Ipv6s This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetFloatingIpsV2FloatingIpVpcSnatIpIpv6>
Reference to IP Configuration
Ipv4s This property is required. []GetFloatingIpsV2FloatingIpVpcSnatIpIpv4
Reference to IP Configuration
Ipv6s This property is required. []GetFloatingIpsV2FloatingIpVpcSnatIpIpv6
Reference to IP Configuration
ipv4s This property is required. List<GetFloatingIpsV2FloatingIpVpcSnatIpIpv4>
Reference to IP Configuration
ipv6s This property is required. List<GetFloatingIpsV2FloatingIpVpcSnatIpIpv6>
Reference to IP Configuration
ipv4s This property is required. GetFloatingIpsV2FloatingIpVpcSnatIpIpv4[]
Reference to IP Configuration
ipv6s This property is required. GetFloatingIpsV2FloatingIpVpcSnatIpIpv6[]
Reference to IP Configuration
ipv4s This property is required. Sequence[GetFloatingIpsV2FloatingIpVpcSnatIpIpv4]
Reference to IP Configuration
ipv6s This property is required. Sequence[GetFloatingIpsV2FloatingIpVpcSnatIpIpv6]
Reference to IP Configuration
ipv4s This property is required. List<Property Map>
Reference to IP Configuration
ipv6s This property is required. List<Property Map>
Reference to IP Configuration

GetFloatingIpsV2FloatingIpVpcSnatIpIpv4

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

GetFloatingIpsV2FloatingIpVpcSnatIpIpv6

PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
PrefixLength This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
Value This property is required. string
value of address
prefixLength This property is required. Integer
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address
prefixLength This property is required. number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. string
value of address
prefix_length This property is required. int
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. str
value of address
prefixLength This property is required. Number
Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
value This property is required. String
value of address

Package Details

Repository
nutanix pierskarsenbarg/pulumi-nutanix
License
Apache-2.0
Notes
This Pulumi package is based on the nutanix Terraform Provider.
Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg