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

nutanix.FloatingIpV2

Explore with Pulumi AI

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

    Provides Nutanix resource to create Floating IPs.

    Example

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.nutanix.FloatingIpV2;
    import com.pulumi.nutanix.FloatingIpV2Args;
    import com.pulumi.nutanix.inputs.FloatingIpV2AssociationArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example_1 = new FloatingIpV2("example-1", FloatingIpV2Args.builder()
                .description("{{ desc }}")
                .externalSubnetReference("{{ ext subnet uuid }}")
                .build());
    
            var example_2 = new FloatingIpV2("example-2", FloatingIpV2Args.builder()
                .associations(FloatingIpV2AssociationArgs.builder()
                    .privateIpAssociations(FloatingIpV2AssociationPrivateIpAssociationArgs.builder()
                        .privateIp(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                        .vpcReference("{{ vpc uuid }}")
                        .build())
                    .build())
                .description("{{ desc }}")
                .externalSubnetReference("{{ ext subnet uuid }}")
                .build());
    
        }
    }
    
    resources:
      example-1:
        type: nutanix:FloatingIpV2
        properties:
          description: '{{ desc }}'
          externalSubnetReference: '{{ ext subnet uuid }}'
      example-2:
        type: nutanix:FloatingIpV2
        properties:
          associations:
            - privateIpAssociations:
                - privateIp:
                    - ipv4:
                        - value: '{{ ip address }}'
                  vpcReference: '{{ vpc uuid }}'
          description: '{{ desc }}'
          externalSubnetReference: '{{ ext subnet uuid }}'
    

    Create FloatingIpV2 Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new FloatingIpV2(name: string, args?: FloatingIpV2Args, opts?: CustomResourceOptions);
    @overload
    def FloatingIpV2(resource_name: str,
                     args: Optional[FloatingIpV2Args] = None,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def FloatingIpV2(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     associations: Optional[Sequence[FloatingIpV2AssociationArgs]] = None,
                     description: Optional[str] = None,
                     ext_id: Optional[str] = None,
                     external_subnet_reference: Optional[str] = None,
                     external_subnets: Optional[Sequence[FloatingIpV2ExternalSubnetArgs]] = None,
                     floating_ips: Optional[Sequence[FloatingIpV2FloatingIpArgs]] = None,
                     load_balancer_session_reference: Optional[str] = None,
                     name: Optional[str] = None,
                     vm_nic_reference: Optional[str] = None,
                     vm_nics: Optional[Sequence[FloatingIpV2VmNicArgs]] = None,
                     vpc_reference: Optional[str] = None,
                     vpcs: Optional[Sequence[FloatingIpV2VpcArgs]] = None)
    func NewFloatingIpV2(ctx *Context, name string, args *FloatingIpV2Args, opts ...ResourceOption) (*FloatingIpV2, error)
    public FloatingIpV2(string name, FloatingIpV2Args? args = null, CustomResourceOptions? opts = null)
    public FloatingIpV2(String name, FloatingIpV2Args args)
    public FloatingIpV2(String name, FloatingIpV2Args args, CustomResourceOptions options)
    
    type: nutanix:FloatingIpV2
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args FloatingIpV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args FloatingIpV2Args
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args FloatingIpV2Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FloatingIpV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FloatingIpV2Args
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var floatingIpV2Resource = new Nutanix.FloatingIpV2("floatingIpV2Resource", new()
    {
        Associations = new[]
        {
            new Nutanix.Inputs.FloatingIpV2AssociationArgs
            {
                PrivateIpAssociations = new[]
                {
                    new Nutanix.Inputs.FloatingIpV2AssociationPrivateIpAssociationArgs
                    {
                        PrivateIps = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2AssociationPrivateIpAssociationPrivateIpArgs
                            {
                                Ipv4s = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2AssociationPrivateIpAssociationPrivateIpIpv4Args
                                    {
                                        PrefixLength = 0,
                                        Value = "string",
                                    },
                                },
                                Ipv6s = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2AssociationPrivateIpAssociationPrivateIpIpv6Args
                                    {
                                        PrefixLength = 0,
                                        Value = "string",
                                    },
                                },
                            },
                        },
                        VpcReference = "string",
                    },
                },
                VmNicAssociations = new[]
                {
                    new Nutanix.Inputs.FloatingIpV2AssociationVmNicAssociationArgs
                    {
                        VmNicReference = "string",
                        VpcReference = "string",
                    },
                },
            },
        },
        Description = "string",
        ExtId = "string",
        ExternalSubnetReference = "string",
        ExternalSubnets = new[]
        {
            new Nutanix.Inputs.FloatingIpV2ExternalSubnetArgs
            {
                ExtId = "string",
                IsExternal = false,
                VirtualSwitches = new[]
                {
                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetVirtualSwitchArgs
                    {
                        BondMode = false,
                        Clusters = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetVirtualSwitchClusterArgs
                            {
                                ExtId = "string",
                                GatewayIpAddresses = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetVirtualSwitchClusterGatewayIpAddressArgs
                                    {
                                        PrefixLength = 0,
                                        Value = "string",
                                    },
                                },
                                Hosts = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetVirtualSwitchClusterHostArgs
                                    {
                                        ExtId = "string",
                                        HostNics = new[]
                                        {
                                            "string",
                                        },
                                        InternalBridgeName = "string",
                                        IpAddresses = new[]
                                        {
                                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetVirtualSwitchClusterHostIpAddressArgs
                                            {
                                                Ips = new[]
                                                {
                                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetVirtualSwitchClusterHostIpAddressIpArgs
                                                    {
                                                        PrefixLength = 0,
                                                        Value = "string",
                                                    },
                                                },
                                                PrefixLength = 0,
                                            },
                                        },
                                        RouteTable = 0,
                                    },
                                },
                            },
                        },
                        Description = "string",
                        ExtId = "string",
                        HasDeploymentError = false,
                        IsDefault = false,
                        Links = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetVirtualSwitchLinkArgs
                            {
                                Href = "string",
                                Rel = "string",
                            },
                        },
                        Metadatas = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetVirtualSwitchMetadataArgs
                            {
                                CategoryIds = new[]
                                {
                                    new[]
                                    {
                                        "any",
                                    },
                                },
                                OwnerReferenceId = "string",
                                OwnerUserName = "string",
                                ProjectName = "string",
                                ProjectReferenceId = "string",
                            },
                        },
                        Mtu = 0,
                        Name = "string",
                        TenantId = "string",
                    },
                },
                Description = "string",
                DhcpOptions = new[]
                {
                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetDhcpOptionArgs
                    {
                        BootFileName = "string",
                        DomainName = "string",
                        DomainNameServers = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetDhcpOptionDomainNameServerArgs
                            {
                                Ipv4s = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetDhcpOptionDomainNameServerIpv4Args
                                    {
                                        PrefixLength = 0,
                                        Value = "string",
                                    },
                                },
                                Ipv6s = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetDhcpOptionDomainNameServerIpv6Args
                                    {
                                        PrefixLength = 0,
                                        Value = "string",
                                    },
                                },
                            },
                        },
                        NtpServers = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetDhcpOptionNtpServerArgs
                            {
                                Ipv4s = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetDhcpOptionNtpServerIpv4Args
                                    {
                                        PrefixLength = 0,
                                        Value = "string",
                                    },
                                },
                                Ipv6s = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetDhcpOptionNtpServerIpv6Args
                                    {
                                        PrefixLength = 0,
                                        Value = "string",
                                    },
                                },
                            },
                        },
                        SearchDomains = new[]
                        {
                            "string",
                        },
                        TftpServerName = "string",
                    },
                },
                DynamicIpAddresses = new[]
                {
                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetDynamicIpAddressArgs
                    {
                        Ipv4s = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetDynamicIpAddressIpv4Args
                            {
                                PrefixLength = 0,
                                Value = "string",
                            },
                        },
                        Ipv6s = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetDynamicIpAddressIpv6Args
                            {
                                PrefixLength = 0,
                                Value = "string",
                            },
                        },
                    },
                },
                ClusterName = "string",
                HypervisorType = "string",
                IpConfigs = new[]
                {
                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpConfigArgs
                    {
                        Ipv4s = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpConfigIpv4Args
                            {
                                DefaultGatewayIps = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpConfigIpv4DefaultGatewayIpArgs
                                    {
                                        PrefixLength = 0,
                                        Value = "string",
                                    },
                                },
                                DhcpServerAddresses = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpConfigIpv4DhcpServerAddressArgs
                                    {
                                        PrefixLength = 0,
                                        Value = "string",
                                    },
                                },
                                IpSubnets = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpConfigIpv4IpSubnetArgs
                                    {
                                        Ips = new[]
                                        {
                                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpConfigIpv4IpSubnetIpArgs
                                            {
                                                PrefixLength = 0,
                                                Value = "string",
                                            },
                                        },
                                        PrefixLength = 0,
                                    },
                                },
                                PoolLists = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpConfigIpv4PoolListArgs
                                    {
                                        EndIps = new[]
                                        {
                                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpConfigIpv4PoolListEndIpArgs
                                            {
                                                PrefixLength = 0,
                                                Value = "string",
                                            },
                                        },
                                        StartIps = new[]
                                        {
                                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpConfigIpv4PoolListStartIpArgs
                                            {
                                                PrefixLength = 0,
                                                Value = "string",
                                            },
                                        },
                                    },
                                },
                            },
                        },
                        Ipv6s = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpConfigIpv6Args
                            {
                                DefaultGatewayIps = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpConfigIpv6DefaultGatewayIpArgs
                                    {
                                        PrefixLength = 0,
                                        Value = "string",
                                    },
                                },
                                DhcpServerAddresses = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpConfigIpv6DhcpServerAddressArgs
                                    {
                                        PrefixLength = 0,
                                        Value = "string",
                                    },
                                },
                                IpSubnets = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpConfigIpv6IpSubnetArgs
                                    {
                                        Ips = new[]
                                        {
                                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpConfigIpv6IpSubnetIpArgs
                                            {
                                                PrefixLength = 0,
                                                Value = "string",
                                            },
                                        },
                                        PrefixLength = 0,
                                    },
                                },
                                PoolLists = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpConfigIpv6PoolListArgs
                                    {
                                        EndIps = new[]
                                        {
                                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpConfigIpv6PoolListEndIpArgs
                                            {
                                                PrefixLength = 0,
                                                Value = "string",
                                            },
                                        },
                                        StartIps = new[]
                                        {
                                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpConfigIpv6PoolListStartIpArgs
                                            {
                                                PrefixLength = 0,
                                                Value = "string",
                                            },
                                        },
                                    },
                                },
                            },
                        },
                    },
                },
                IpPrefix = "string",
                IpUsages = new[]
                {
                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpUsageArgs
                    {
                        IpPoolUsages = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpUsageIpPoolUsageArgs
                            {
                                NumFreeIps = 0,
                                NumTotalIps = 0,
                                Ranges = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpUsageIpPoolUsageRangeArgs
                                    {
                                        EndIps = new[]
                                        {
                                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpUsageIpPoolUsageRangeEndIpArgs
                                            {
                                                PrefixLength = 0,
                                                Value = "string",
                                            },
                                        },
                                        StartIps = new[]
                                        {
                                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetIpUsageIpPoolUsageRangeStartIpArgs
                                            {
                                                PrefixLength = 0,
                                                Value = "string",
                                            },
                                        },
                                    },
                                },
                            },
                        },
                        NumAssignedIps = 0,
                        NumFreeIps = 0,
                        NumMacs = 0,
                    },
                },
                Vpcs = new[]
                {
                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcArgs
                    {
                        CommonDhcpOptions = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcCommonDhcpOptionArgs
                            {
                                DomainNameServers = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcCommonDhcpOptionDomainNameServerArgs
                                    {
                                        Ipv4s = new[]
                                        {
                                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcCommonDhcpOptionDomainNameServerIpv4Args
                                            {
                                                PrefixLength = 0,
                                                Value = "string",
                                            },
                                        },
                                        Ipv6s = new[]
                                        {
                                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcCommonDhcpOptionDomainNameServerIpv6Args
                                            {
                                                PrefixLength = 0,
                                                Value = "string",
                                            },
                                        },
                                    },
                                },
                            },
                        },
                        Description = "string",
                        ExtId = "string",
                        ExternalRoutingDomainReference = "string",
                        ExternalSubnets = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcExternalSubnetArgs
                            {
                                ActiveGatewayCount = 0,
                                ActiveGatewayNodes = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeArgs
                                    {
                                        NodeId = "string",
                                        NodeIpAddresses = new[]
                                        {
                                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddressArgs
                                            {
                                                Ipv4s = new[]
                                                {
                                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv4Args
                                                    {
                                                        PrefixLength = 0,
                                                        Value = "string",
                                                    },
                                                },
                                                Ipv6s = new[]
                                                {
                                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv6Args
                                                    {
                                                        PrefixLength = 0,
                                                        Value = "string",
                                                    },
                                                },
                                            },
                                        },
                                    },
                                },
                                ExternalIps = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcExternalSubnetExternalIpArgs
                                    {
                                        Ipv4s = new[]
                                        {
                                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcExternalSubnetExternalIpIpv4Args
                                            {
                                                PrefixLength = 0,
                                                Value = "string",
                                            },
                                        },
                                        Ipv6s = new[]
                                        {
                                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcExternalSubnetExternalIpIpv6Args
                                            {
                                                PrefixLength = 0,
                                                Value = "string",
                                            },
                                        },
                                    },
                                },
                                GatewayNodes = new[]
                                {
                                    "string",
                                },
                                SubnetReference = "string",
                            },
                        },
                        ExternallyRoutablePrefixes = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixArgs
                            {
                                Ipv4s = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv4Args
                                    {
                                        Ips = new[]
                                        {
                                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv4IpArgs
                                            {
                                                PrefixLength = 0,
                                                Value = "string",
                                            },
                                        },
                                        PrefixLength = 0,
                                    },
                                },
                                Ipv6s = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv6Args
                                    {
                                        Ips = new[]
                                        {
                                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv6IpArgs
                                            {
                                                PrefixLength = 0,
                                                Value = "string",
                                            },
                                        },
                                        PrefixLength = 0,
                                    },
                                },
                            },
                        },
                        Links = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcLinkArgs
                            {
                                Href = "string",
                                Rel = "string",
                            },
                        },
                        Metadatas = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcMetadataArgs
                            {
                                CategoryIds = new[]
                                {
                                    new[]
                                    {
                                        "any",
                                    },
                                },
                                OwnerReferenceId = "string",
                                OwnerUserName = "string",
                                ProjectName = "string",
                                ProjectReferenceId = "string",
                            },
                        },
                        Name = "string",
                        SnatIps = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcSnatIpArgs
                            {
                                Ipv4s = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcSnatIpIpv4Args
                                    {
                                        PrefixLength = 0,
                                        Value = "string",
                                    },
                                },
                                Ipv6s = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcSnatIpIpv6Args
                                    {
                                        PrefixLength = 0,
                                        Value = "string",
                                    },
                                },
                            },
                        },
                        TenantId = "string",
                        VpcType = "string",
                    },
                },
                ClusterReference = "string",
                MigrationState = "string",
                Links = new[]
                {
                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetLinkArgs
                    {
                        Href = "string",
                        Rel = "string",
                    },
                },
                IsNatEnabled = false,
                Name = "string",
                NetworkFunctionChainReference = "string",
                NetworkId = 0,
                ReservedIpAddresses = new[]
                {
                    new Nutanix.Inputs.FloatingIpV2ExternalSubnetReservedIpAddressArgs
                    {
                        PrefixLength = 0,
                        Value = "string",
                    },
                },
                SubnetType = "string",
                VirtualSwitchReference = "string",
                BridgeName = "string",
                VpcReference = "string",
                IsAdvancedNetworking = false,
            },
        },
        FloatingIps = new[]
        {
            new Nutanix.Inputs.FloatingIpV2FloatingIpArgs
            {
                Ipv4s = new[]
                {
                    new Nutanix.Inputs.FloatingIpV2FloatingIpIpv4Args
                    {
                        PrefixLength = 0,
                        Value = "string",
                    },
                },
                Ipv6s = new[]
                {
                    new Nutanix.Inputs.FloatingIpV2FloatingIpIpv6Args
                    {
                        PrefixLength = 0,
                        Value = "string",
                    },
                },
            },
        },
        LoadBalancerSessionReference = "string",
        Name = "string",
        VmNicReference = "string",
        VmNics = new[]
        {
            new Nutanix.Inputs.FloatingIpV2VmNicArgs
            {
                PrivateIp = "string",
            },
        },
        VpcReference = "string",
        Vpcs = new[]
        {
            new Nutanix.Inputs.FloatingIpV2VpcArgs
            {
                CommonDhcpOptions = new[]
                {
                    new Nutanix.Inputs.FloatingIpV2VpcCommonDhcpOptionArgs
                    {
                        DomainNameServers = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2VpcCommonDhcpOptionDomainNameServerArgs
                            {
                                Ipv4s = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2VpcCommonDhcpOptionDomainNameServerIpv4Args
                                    {
                                        PrefixLength = 0,
                                        Value = "string",
                                    },
                                },
                                Ipv6s = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2VpcCommonDhcpOptionDomainNameServerIpv6Args
                                    {
                                        PrefixLength = 0,
                                        Value = "string",
                                    },
                                },
                            },
                        },
                    },
                },
                Description = "string",
                ExtId = "string",
                ExternalRoutingDomainReference = "string",
                ExternalSubnets = new[]
                {
                    new Nutanix.Inputs.FloatingIpV2VpcExternalSubnetArgs
                    {
                        ActiveGatewayCount = 0,
                        ActiveGatewayNodes = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2VpcExternalSubnetActiveGatewayNodeArgs
                            {
                                NodeId = "string",
                                NodeIpAddresses = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2VpcExternalSubnetActiveGatewayNodeNodeIpAddressArgs
                                    {
                                        Ipv4s = new[]
                                        {
                                            new Nutanix.Inputs.FloatingIpV2VpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv4Args
                                            {
                                                PrefixLength = 0,
                                                Value = "string",
                                            },
                                        },
                                        Ipv6s = new[]
                                        {
                                            new Nutanix.Inputs.FloatingIpV2VpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv6Args
                                            {
                                                PrefixLength = 0,
                                                Value = "string",
                                            },
                                        },
                                    },
                                },
                            },
                        },
                        ExternalIps = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2VpcExternalSubnetExternalIpArgs
                            {
                                Ipv4s = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2VpcExternalSubnetExternalIpIpv4Args
                                    {
                                        PrefixLength = 0,
                                        Value = "string",
                                    },
                                },
                                Ipv6s = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2VpcExternalSubnetExternalIpIpv6Args
                                    {
                                        PrefixLength = 0,
                                        Value = "string",
                                    },
                                },
                            },
                        },
                        GatewayNodes = new[]
                        {
                            "string",
                        },
                        SubnetReference = "string",
                    },
                },
                ExternallyRoutablePrefixes = new[]
                {
                    new Nutanix.Inputs.FloatingIpV2VpcExternallyRoutablePrefixArgs
                    {
                        Ipv4s = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2VpcExternallyRoutablePrefixIpv4Args
                            {
                                Ips = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2VpcExternallyRoutablePrefixIpv4IpArgs
                                    {
                                        PrefixLength = 0,
                                        Value = "string",
                                    },
                                },
                                PrefixLength = 0,
                            },
                        },
                        Ipv6s = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2VpcExternallyRoutablePrefixIpv6Args
                            {
                                Ips = new[]
                                {
                                    new Nutanix.Inputs.FloatingIpV2VpcExternallyRoutablePrefixIpv6IpArgs
                                    {
                                        PrefixLength = 0,
                                        Value = "string",
                                    },
                                },
                                PrefixLength = 0,
                            },
                        },
                    },
                },
                Links = new[]
                {
                    new Nutanix.Inputs.FloatingIpV2VpcLinkArgs
                    {
                        Href = "string",
                        Rel = "string",
                    },
                },
                Metadatas = new[]
                {
                    new Nutanix.Inputs.FloatingIpV2VpcMetadataArgs
                    {
                        CategoryIds = new[]
                        {
                            new[]
                            {
                                "any",
                            },
                        },
                        OwnerReferenceId = "string",
                        OwnerUserName = "string",
                        ProjectName = "string",
                        ProjectReferenceId = "string",
                    },
                },
                Name = "string",
                SnatIps = new[]
                {
                    new Nutanix.Inputs.FloatingIpV2VpcSnatIpArgs
                    {
                        Ipv4s = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2VpcSnatIpIpv4Args
                            {
                                PrefixLength = 0,
                                Value = "string",
                            },
                        },
                        Ipv6s = new[]
                        {
                            new Nutanix.Inputs.FloatingIpV2VpcSnatIpIpv6Args
                            {
                                PrefixLength = 0,
                                Value = "string",
                            },
                        },
                    },
                },
                TenantId = "string",
                VpcType = "string",
            },
        },
    });
    
    example, err := nutanix.NewFloatingIpV2(ctx, "floatingIpV2Resource", &nutanix.FloatingIpV2Args{
    	Associations: nutanix.FloatingIpV2AssociationArray{
    		&nutanix.FloatingIpV2AssociationArgs{
    			PrivateIpAssociations: nutanix.FloatingIpV2AssociationPrivateIpAssociationArray{
    				&nutanix.FloatingIpV2AssociationPrivateIpAssociationArgs{
    					PrivateIps: nutanix.FloatingIpV2AssociationPrivateIpAssociationPrivateIpArray{
    						&nutanix.FloatingIpV2AssociationPrivateIpAssociationPrivateIpArgs{
    							Ipv4s: nutanix.FloatingIpV2AssociationPrivateIpAssociationPrivateIpIpv4Array{
    								&nutanix.FloatingIpV2AssociationPrivateIpAssociationPrivateIpIpv4Args{
    									PrefixLength: pulumi.Int(0),
    									Value:        pulumi.String("string"),
    								},
    							},
    							Ipv6s: nutanix.FloatingIpV2AssociationPrivateIpAssociationPrivateIpIpv6Array{
    								&nutanix.FloatingIpV2AssociationPrivateIpAssociationPrivateIpIpv6Args{
    									PrefixLength: pulumi.Int(0),
    									Value:        pulumi.String("string"),
    								},
    							},
    						},
    					},
    					VpcReference: pulumi.String("string"),
    				},
    			},
    			VmNicAssociations: nutanix.FloatingIpV2AssociationVmNicAssociationArray{
    				&nutanix.FloatingIpV2AssociationVmNicAssociationArgs{
    					VmNicReference: pulumi.String("string"),
    					VpcReference:   pulumi.String("string"),
    				},
    			},
    		},
    	},
    	Description:             pulumi.String("string"),
    	ExtId:                   pulumi.String("string"),
    	ExternalSubnetReference: pulumi.String("string"),
    	ExternalSubnets: nutanix.FloatingIpV2ExternalSubnetArray{
    		&nutanix.FloatingIpV2ExternalSubnetArgs{
    			ExtId:      pulumi.String("string"),
    			IsExternal: pulumi.Bool(false),
    			VirtualSwitches: nutanix.FloatingIpV2ExternalSubnetVirtualSwitchArray{
    				&nutanix.FloatingIpV2ExternalSubnetVirtualSwitchArgs{
    					BondMode: pulumi.Bool(false),
    					Clusters: nutanix.FloatingIpV2ExternalSubnetVirtualSwitchClusterArray{
    						&nutanix.FloatingIpV2ExternalSubnetVirtualSwitchClusterArgs{
    							ExtId: pulumi.String("string"),
    							GatewayIpAddresses: nutanix.FloatingIpV2ExternalSubnetVirtualSwitchClusterGatewayIpAddressArray{
    								&nutanix.FloatingIpV2ExternalSubnetVirtualSwitchClusterGatewayIpAddressArgs{
    									PrefixLength: pulumi.Int(0),
    									Value:        pulumi.String("string"),
    								},
    							},
    							Hosts: nutanix.FloatingIpV2ExternalSubnetVirtualSwitchClusterHostArray{
    								&nutanix.FloatingIpV2ExternalSubnetVirtualSwitchClusterHostArgs{
    									ExtId: pulumi.String("string"),
    									HostNics: pulumi.StringArray{
    										pulumi.String("string"),
    									},
    									InternalBridgeName: pulumi.String("string"),
    									IpAddresses: nutanix.FloatingIpV2ExternalSubnetVirtualSwitchClusterHostIpAddressArray{
    										&nutanix.FloatingIpV2ExternalSubnetVirtualSwitchClusterHostIpAddressArgs{
    											Ips: nutanix.FloatingIpV2ExternalSubnetVirtualSwitchClusterHostIpAddressIpArray{
    												&nutanix.FloatingIpV2ExternalSubnetVirtualSwitchClusterHostIpAddressIpArgs{
    													PrefixLength: pulumi.Int(0),
    													Value:        pulumi.String("string"),
    												},
    											},
    											PrefixLength: pulumi.Int(0),
    										},
    									},
    									RouteTable: pulumi.Int(0),
    								},
    							},
    						},
    					},
    					Description:        pulumi.String("string"),
    					ExtId:              pulumi.String("string"),
    					HasDeploymentError: pulumi.Bool(false),
    					IsDefault:          pulumi.Bool(false),
    					Links: nutanix.FloatingIpV2ExternalSubnetVirtualSwitchLinkArray{
    						&nutanix.FloatingIpV2ExternalSubnetVirtualSwitchLinkArgs{
    							Href: pulumi.String("string"),
    							Rel:  pulumi.String("string"),
    						},
    					},
    					Metadatas: nutanix.FloatingIpV2ExternalSubnetVirtualSwitchMetadataArray{
    						&nutanix.FloatingIpV2ExternalSubnetVirtualSwitchMetadataArgs{
    							CategoryIds: pulumi.ArrayArray{
    								pulumi.Array{
    									pulumi.Any("any"),
    								},
    							},
    							OwnerReferenceId:   pulumi.String("string"),
    							OwnerUserName:      pulumi.String("string"),
    							ProjectName:        pulumi.String("string"),
    							ProjectReferenceId: pulumi.String("string"),
    						},
    					},
    					Mtu:      pulumi.Int(0),
    					Name:     pulumi.String("string"),
    					TenantId: pulumi.String("string"),
    				},
    			},
    			Description: pulumi.String("string"),
    			DhcpOptions: nutanix.FloatingIpV2ExternalSubnetDhcpOptionArray{
    				&nutanix.FloatingIpV2ExternalSubnetDhcpOptionArgs{
    					BootFileName: pulumi.String("string"),
    					DomainName:   pulumi.String("string"),
    					DomainNameServers: nutanix.FloatingIpV2ExternalSubnetDhcpOptionDomainNameServerArray{
    						&nutanix.FloatingIpV2ExternalSubnetDhcpOptionDomainNameServerArgs{
    							Ipv4s: nutanix.FloatingIpV2ExternalSubnetDhcpOptionDomainNameServerIpv4Array{
    								&nutanix.FloatingIpV2ExternalSubnetDhcpOptionDomainNameServerIpv4Args{
    									PrefixLength: pulumi.Int(0),
    									Value:        pulumi.String("string"),
    								},
    							},
    							Ipv6s: nutanix.FloatingIpV2ExternalSubnetDhcpOptionDomainNameServerIpv6Array{
    								&nutanix.FloatingIpV2ExternalSubnetDhcpOptionDomainNameServerIpv6Args{
    									PrefixLength: pulumi.Int(0),
    									Value:        pulumi.String("string"),
    								},
    							},
    						},
    					},
    					NtpServers: nutanix.FloatingIpV2ExternalSubnetDhcpOptionNtpServerArray{
    						&nutanix.FloatingIpV2ExternalSubnetDhcpOptionNtpServerArgs{
    							Ipv4s: nutanix.FloatingIpV2ExternalSubnetDhcpOptionNtpServerIpv4Array{
    								&nutanix.FloatingIpV2ExternalSubnetDhcpOptionNtpServerIpv4Args{
    									PrefixLength: pulumi.Int(0),
    									Value:        pulumi.String("string"),
    								},
    							},
    							Ipv6s: nutanix.FloatingIpV2ExternalSubnetDhcpOptionNtpServerIpv6Array{
    								&nutanix.FloatingIpV2ExternalSubnetDhcpOptionNtpServerIpv6Args{
    									PrefixLength: pulumi.Int(0),
    									Value:        pulumi.String("string"),
    								},
    							},
    						},
    					},
    					SearchDomains: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					TftpServerName: pulumi.String("string"),
    				},
    			},
    			DynamicIpAddresses: nutanix.FloatingIpV2ExternalSubnetDynamicIpAddressArray{
    				&nutanix.FloatingIpV2ExternalSubnetDynamicIpAddressArgs{
    					Ipv4s: nutanix.FloatingIpV2ExternalSubnetDynamicIpAddressIpv4Array{
    						&nutanix.FloatingIpV2ExternalSubnetDynamicIpAddressIpv4Args{
    							PrefixLength: pulumi.Int(0),
    							Value:        pulumi.String("string"),
    						},
    					},
    					Ipv6s: nutanix.FloatingIpV2ExternalSubnetDynamicIpAddressIpv6Array{
    						&nutanix.FloatingIpV2ExternalSubnetDynamicIpAddressIpv6Args{
    							PrefixLength: pulumi.Int(0),
    							Value:        pulumi.String("string"),
    						},
    					},
    				},
    			},
    			ClusterName:    pulumi.String("string"),
    			HypervisorType: pulumi.String("string"),
    			IpConfigs: nutanix.FloatingIpV2ExternalSubnetIpConfigArray{
    				&nutanix.FloatingIpV2ExternalSubnetIpConfigArgs{
    					Ipv4s: nutanix.FloatingIpV2ExternalSubnetIpConfigIpv4Array{
    						&nutanix.FloatingIpV2ExternalSubnetIpConfigIpv4Args{
    							DefaultGatewayIps: nutanix.FloatingIpV2ExternalSubnetIpConfigIpv4DefaultGatewayIpArray{
    								&nutanix.FloatingIpV2ExternalSubnetIpConfigIpv4DefaultGatewayIpArgs{
    									PrefixLength: pulumi.Int(0),
    									Value:        pulumi.String("string"),
    								},
    							},
    							DhcpServerAddresses: nutanix.FloatingIpV2ExternalSubnetIpConfigIpv4DhcpServerAddressArray{
    								&nutanix.FloatingIpV2ExternalSubnetIpConfigIpv4DhcpServerAddressArgs{
    									PrefixLength: pulumi.Int(0),
    									Value:        pulumi.String("string"),
    								},
    							},
    							IpSubnets: nutanix.FloatingIpV2ExternalSubnetIpConfigIpv4IpSubnetArray{
    								&nutanix.FloatingIpV2ExternalSubnetIpConfigIpv4IpSubnetArgs{
    									Ips: nutanix.FloatingIpV2ExternalSubnetIpConfigIpv4IpSubnetIpArray{
    										&nutanix.FloatingIpV2ExternalSubnetIpConfigIpv4IpSubnetIpArgs{
    											PrefixLength: pulumi.Int(0),
    											Value:        pulumi.String("string"),
    										},
    									},
    									PrefixLength: pulumi.Int(0),
    								},
    							},
    							PoolLists: nutanix.FloatingIpV2ExternalSubnetIpConfigIpv4PoolListArray{
    								&nutanix.FloatingIpV2ExternalSubnetIpConfigIpv4PoolListArgs{
    									EndIps: nutanix.FloatingIpV2ExternalSubnetIpConfigIpv4PoolListEndIpArray{
    										&nutanix.FloatingIpV2ExternalSubnetIpConfigIpv4PoolListEndIpArgs{
    											PrefixLength: pulumi.Int(0),
    											Value:        pulumi.String("string"),
    										},
    									},
    									StartIps: nutanix.FloatingIpV2ExternalSubnetIpConfigIpv4PoolListStartIpArray{
    										&nutanix.FloatingIpV2ExternalSubnetIpConfigIpv4PoolListStartIpArgs{
    											PrefixLength: pulumi.Int(0),
    											Value:        pulumi.String("string"),
    										},
    									},
    								},
    							},
    						},
    					},
    					Ipv6s: nutanix.FloatingIpV2ExternalSubnetIpConfigIpv6Array{
    						&nutanix.FloatingIpV2ExternalSubnetIpConfigIpv6Args{
    							DefaultGatewayIps: nutanix.FloatingIpV2ExternalSubnetIpConfigIpv6DefaultGatewayIpArray{
    								&nutanix.FloatingIpV2ExternalSubnetIpConfigIpv6DefaultGatewayIpArgs{
    									PrefixLength: pulumi.Int(0),
    									Value:        pulumi.String("string"),
    								},
    							},
    							DhcpServerAddresses: nutanix.FloatingIpV2ExternalSubnetIpConfigIpv6DhcpServerAddressArray{
    								&nutanix.FloatingIpV2ExternalSubnetIpConfigIpv6DhcpServerAddressArgs{
    									PrefixLength: pulumi.Int(0),
    									Value:        pulumi.String("string"),
    								},
    							},
    							IpSubnets: nutanix.FloatingIpV2ExternalSubnetIpConfigIpv6IpSubnetArray{
    								&nutanix.FloatingIpV2ExternalSubnetIpConfigIpv6IpSubnetArgs{
    									Ips: nutanix.FloatingIpV2ExternalSubnetIpConfigIpv6IpSubnetIpArray{
    										&nutanix.FloatingIpV2ExternalSubnetIpConfigIpv6IpSubnetIpArgs{
    											PrefixLength: pulumi.Int(0),
    											Value:        pulumi.String("string"),
    										},
    									},
    									PrefixLength: pulumi.Int(0),
    								},
    							},
    							PoolLists: nutanix.FloatingIpV2ExternalSubnetIpConfigIpv6PoolListArray{
    								&nutanix.FloatingIpV2ExternalSubnetIpConfigIpv6PoolListArgs{
    									EndIps: nutanix.FloatingIpV2ExternalSubnetIpConfigIpv6PoolListEndIpArray{
    										&nutanix.FloatingIpV2ExternalSubnetIpConfigIpv6PoolListEndIpArgs{
    											PrefixLength: pulumi.Int(0),
    											Value:        pulumi.String("string"),
    										},
    									},
    									StartIps: nutanix.FloatingIpV2ExternalSubnetIpConfigIpv6PoolListStartIpArray{
    										&nutanix.FloatingIpV2ExternalSubnetIpConfigIpv6PoolListStartIpArgs{
    											PrefixLength: pulumi.Int(0),
    											Value:        pulumi.String("string"),
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    			IpPrefix: pulumi.String("string"),
    			IpUsages: nutanix.FloatingIpV2ExternalSubnetIpUsageArray{
    				&nutanix.FloatingIpV2ExternalSubnetIpUsageArgs{
    					IpPoolUsages: nutanix.FloatingIpV2ExternalSubnetIpUsageIpPoolUsageArray{
    						&nutanix.FloatingIpV2ExternalSubnetIpUsageIpPoolUsageArgs{
    							NumFreeIps:  pulumi.Int(0),
    							NumTotalIps: pulumi.Int(0),
    							Ranges: nutanix.FloatingIpV2ExternalSubnetIpUsageIpPoolUsageRangeArray{
    								&nutanix.FloatingIpV2ExternalSubnetIpUsageIpPoolUsageRangeArgs{
    									EndIps: nutanix.FloatingIpV2ExternalSubnetIpUsageIpPoolUsageRangeEndIpArray{
    										&nutanix.FloatingIpV2ExternalSubnetIpUsageIpPoolUsageRangeEndIpArgs{
    											PrefixLength: pulumi.Int(0),
    											Value:        pulumi.String("string"),
    										},
    									},
    									StartIps: nutanix.FloatingIpV2ExternalSubnetIpUsageIpPoolUsageRangeStartIpArray{
    										&nutanix.FloatingIpV2ExternalSubnetIpUsageIpPoolUsageRangeStartIpArgs{
    											PrefixLength: pulumi.Int(0),
    											Value:        pulumi.String("string"),
    										},
    									},
    								},
    							},
    						},
    					},
    					NumAssignedIps: pulumi.Int(0),
    					NumFreeIps:     pulumi.Int(0),
    					NumMacs:        pulumi.Int(0),
    				},
    			},
    			Vpcs: nutanix.FloatingIpV2ExternalSubnetVpcArray{
    				&nutanix.FloatingIpV2ExternalSubnetVpcArgs{
    					CommonDhcpOptions: nutanix.FloatingIpV2ExternalSubnetVpcCommonDhcpOptionArray{
    						&nutanix.FloatingIpV2ExternalSubnetVpcCommonDhcpOptionArgs{
    							DomainNameServers: nutanix.FloatingIpV2ExternalSubnetVpcCommonDhcpOptionDomainNameServerArray{
    								&nutanix.FloatingIpV2ExternalSubnetVpcCommonDhcpOptionDomainNameServerArgs{
    									Ipv4s: nutanix.FloatingIpV2ExternalSubnetVpcCommonDhcpOptionDomainNameServerIpv4Array{
    										&nutanix.FloatingIpV2ExternalSubnetVpcCommonDhcpOptionDomainNameServerIpv4Args{
    											PrefixLength: pulumi.Int(0),
    											Value:        pulumi.String("string"),
    										},
    									},
    									Ipv6s: nutanix.FloatingIpV2ExternalSubnetVpcCommonDhcpOptionDomainNameServerIpv6Array{
    										&nutanix.FloatingIpV2ExternalSubnetVpcCommonDhcpOptionDomainNameServerIpv6Args{
    											PrefixLength: pulumi.Int(0),
    											Value:        pulumi.String("string"),
    										},
    									},
    								},
    							},
    						},
    					},
    					Description:                    pulumi.String("string"),
    					ExtId:                          pulumi.String("string"),
    					ExternalRoutingDomainReference: pulumi.String("string"),
    					ExternalSubnets: nutanix.FloatingIpV2ExternalSubnetVpcExternalSubnetArray{
    						&nutanix.FloatingIpV2ExternalSubnetVpcExternalSubnetArgs{
    							ActiveGatewayCount: pulumi.Int(0),
    							ActiveGatewayNodes: nutanix.FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeArray{
    								&nutanix.FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeArgs{
    									NodeId: pulumi.String("string"),
    									NodeIpAddresses: nutanix.FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddressArray{
    										&nutanix.FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddressArgs{
    											Ipv4s: nutanix.FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv4Array{
    												&nutanix.FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv4Args{
    													PrefixLength: pulumi.Int(0),
    													Value:        pulumi.String("string"),
    												},
    											},
    											Ipv6s: nutanix.FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv6Array{
    												&nutanix.FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv6Args{
    													PrefixLength: pulumi.Int(0),
    													Value:        pulumi.String("string"),
    												},
    											},
    										},
    									},
    								},
    							},
    							ExternalIps: nutanix.FloatingIpV2ExternalSubnetVpcExternalSubnetExternalIpArray{
    								&nutanix.FloatingIpV2ExternalSubnetVpcExternalSubnetExternalIpArgs{
    									Ipv4s: nutanix.FloatingIpV2ExternalSubnetVpcExternalSubnetExternalIpIpv4Array{
    										&nutanix.FloatingIpV2ExternalSubnetVpcExternalSubnetExternalIpIpv4Args{
    											PrefixLength: pulumi.Int(0),
    											Value:        pulumi.String("string"),
    										},
    									},
    									Ipv6s: nutanix.FloatingIpV2ExternalSubnetVpcExternalSubnetExternalIpIpv6Array{
    										&nutanix.FloatingIpV2ExternalSubnetVpcExternalSubnetExternalIpIpv6Args{
    											PrefixLength: pulumi.Int(0),
    											Value:        pulumi.String("string"),
    										},
    									},
    								},
    							},
    							GatewayNodes: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    							SubnetReference: pulumi.String("string"),
    						},
    					},
    					ExternallyRoutablePrefixes: nutanix.FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixArray{
    						&nutanix.FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixArgs{
    							Ipv4s: nutanix.FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv4Array{
    								&nutanix.FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv4Args{
    									Ips: nutanix.FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv4IpArray{
    										&nutanix.FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv4IpArgs{
    											PrefixLength: pulumi.Int(0),
    											Value:        pulumi.String("string"),
    										},
    									},
    									PrefixLength: pulumi.Int(0),
    								},
    							},
    							Ipv6s: nutanix.FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv6Array{
    								&nutanix.FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv6Args{
    									Ips: nutanix.FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv6IpArray{
    										&nutanix.FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv6IpArgs{
    											PrefixLength: pulumi.Int(0),
    											Value:        pulumi.String("string"),
    										},
    									},
    									PrefixLength: pulumi.Int(0),
    								},
    							},
    						},
    					},
    					Links: nutanix.FloatingIpV2ExternalSubnetVpcLinkArray{
    						&nutanix.FloatingIpV2ExternalSubnetVpcLinkArgs{
    							Href: pulumi.String("string"),
    							Rel:  pulumi.String("string"),
    						},
    					},
    					Metadatas: nutanix.FloatingIpV2ExternalSubnetVpcMetadataArray{
    						&nutanix.FloatingIpV2ExternalSubnetVpcMetadataArgs{
    							CategoryIds: pulumi.ArrayArray{
    								pulumi.Array{
    									pulumi.Any("any"),
    								},
    							},
    							OwnerReferenceId:   pulumi.String("string"),
    							OwnerUserName:      pulumi.String("string"),
    							ProjectName:        pulumi.String("string"),
    							ProjectReferenceId: pulumi.String("string"),
    						},
    					},
    					Name: pulumi.String("string"),
    					SnatIps: nutanix.FloatingIpV2ExternalSubnetVpcSnatIpArray{
    						&nutanix.FloatingIpV2ExternalSubnetVpcSnatIpArgs{
    							Ipv4s: nutanix.FloatingIpV2ExternalSubnetVpcSnatIpIpv4Array{
    								&nutanix.FloatingIpV2ExternalSubnetVpcSnatIpIpv4Args{
    									PrefixLength: pulumi.Int(0),
    									Value:        pulumi.String("string"),
    								},
    							},
    							Ipv6s: nutanix.FloatingIpV2ExternalSubnetVpcSnatIpIpv6Array{
    								&nutanix.FloatingIpV2ExternalSubnetVpcSnatIpIpv6Args{
    									PrefixLength: pulumi.Int(0),
    									Value:        pulumi.String("string"),
    								},
    							},
    						},
    					},
    					TenantId: pulumi.String("string"),
    					VpcType:  pulumi.String("string"),
    				},
    			},
    			ClusterReference: pulumi.String("string"),
    			MigrationState:   pulumi.String("string"),
    			Links: nutanix.FloatingIpV2ExternalSubnetLinkArray{
    				&nutanix.FloatingIpV2ExternalSubnetLinkArgs{
    					Href: pulumi.String("string"),
    					Rel:  pulumi.String("string"),
    				},
    			},
    			IsNatEnabled:                  pulumi.Bool(false),
    			Name:                          pulumi.String("string"),
    			NetworkFunctionChainReference: pulumi.String("string"),
    			NetworkId:                     pulumi.Int(0),
    			ReservedIpAddresses: nutanix.FloatingIpV2ExternalSubnetReservedIpAddressArray{
    				&nutanix.FloatingIpV2ExternalSubnetReservedIpAddressArgs{
    					PrefixLength: pulumi.Int(0),
    					Value:        pulumi.String("string"),
    				},
    			},
    			SubnetType:             pulumi.String("string"),
    			VirtualSwitchReference: pulumi.String("string"),
    			BridgeName:             pulumi.String("string"),
    			VpcReference:           pulumi.String("string"),
    			IsAdvancedNetworking:   pulumi.Bool(false),
    		},
    	},
    	FloatingIps: nutanix.FloatingIpV2FloatingIpArray{
    		&nutanix.FloatingIpV2FloatingIpArgs{
    			Ipv4s: nutanix.FloatingIpV2FloatingIpIpv4Array{
    				&nutanix.FloatingIpV2FloatingIpIpv4Args{
    					PrefixLength: pulumi.Int(0),
    					Value:        pulumi.String("string"),
    				},
    			},
    			Ipv6s: nutanix.FloatingIpV2FloatingIpIpv6Array{
    				&nutanix.FloatingIpV2FloatingIpIpv6Args{
    					PrefixLength: pulumi.Int(0),
    					Value:        pulumi.String("string"),
    				},
    			},
    		},
    	},
    	LoadBalancerSessionReference: pulumi.String("string"),
    	Name:                         pulumi.String("string"),
    	VmNicReference:               pulumi.String("string"),
    	VmNics: nutanix.FloatingIpV2VmNicArray{
    		&nutanix.FloatingIpV2VmNicArgs{
    			PrivateIp: pulumi.String("string"),
    		},
    	},
    	VpcReference: pulumi.String("string"),
    	Vpcs: nutanix.FloatingIpV2VpcArray{
    		&nutanix.FloatingIpV2VpcArgs{
    			CommonDhcpOptions: nutanix.FloatingIpV2VpcCommonDhcpOptionArray{
    				&nutanix.FloatingIpV2VpcCommonDhcpOptionArgs{
    					DomainNameServers: nutanix.FloatingIpV2VpcCommonDhcpOptionDomainNameServerArray{
    						&nutanix.FloatingIpV2VpcCommonDhcpOptionDomainNameServerArgs{
    							Ipv4s: nutanix.FloatingIpV2VpcCommonDhcpOptionDomainNameServerIpv4Array{
    								&nutanix.FloatingIpV2VpcCommonDhcpOptionDomainNameServerIpv4Args{
    									PrefixLength: pulumi.Int(0),
    									Value:        pulumi.String("string"),
    								},
    							},
    							Ipv6s: nutanix.FloatingIpV2VpcCommonDhcpOptionDomainNameServerIpv6Array{
    								&nutanix.FloatingIpV2VpcCommonDhcpOptionDomainNameServerIpv6Args{
    									PrefixLength: pulumi.Int(0),
    									Value:        pulumi.String("string"),
    								},
    							},
    						},
    					},
    				},
    			},
    			Description:                    pulumi.String("string"),
    			ExtId:                          pulumi.String("string"),
    			ExternalRoutingDomainReference: pulumi.String("string"),
    			ExternalSubnets: nutanix.FloatingIpV2VpcExternalSubnetArray{
    				&nutanix.FloatingIpV2VpcExternalSubnetArgs{
    					ActiveGatewayCount: pulumi.Int(0),
    					ActiveGatewayNodes: nutanix.FloatingIpV2VpcExternalSubnetActiveGatewayNodeArray{
    						&nutanix.FloatingIpV2VpcExternalSubnetActiveGatewayNodeArgs{
    							NodeId: pulumi.String("string"),
    							NodeIpAddresses: nutanix.FloatingIpV2VpcExternalSubnetActiveGatewayNodeNodeIpAddressArray{
    								&nutanix.FloatingIpV2VpcExternalSubnetActiveGatewayNodeNodeIpAddressArgs{
    									Ipv4s: nutanix.FloatingIpV2VpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv4Array{
    										&nutanix.FloatingIpV2VpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv4Args{
    											PrefixLength: pulumi.Int(0),
    											Value:        pulumi.String("string"),
    										},
    									},
    									Ipv6s: nutanix.FloatingIpV2VpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv6Array{
    										&nutanix.FloatingIpV2VpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv6Args{
    											PrefixLength: pulumi.Int(0),
    											Value:        pulumi.String("string"),
    										},
    									},
    								},
    							},
    						},
    					},
    					ExternalIps: nutanix.FloatingIpV2VpcExternalSubnetExternalIpArray{
    						&nutanix.FloatingIpV2VpcExternalSubnetExternalIpArgs{
    							Ipv4s: nutanix.FloatingIpV2VpcExternalSubnetExternalIpIpv4Array{
    								&nutanix.FloatingIpV2VpcExternalSubnetExternalIpIpv4Args{
    									PrefixLength: pulumi.Int(0),
    									Value:        pulumi.String("string"),
    								},
    							},
    							Ipv6s: nutanix.FloatingIpV2VpcExternalSubnetExternalIpIpv6Array{
    								&nutanix.FloatingIpV2VpcExternalSubnetExternalIpIpv6Args{
    									PrefixLength: pulumi.Int(0),
    									Value:        pulumi.String("string"),
    								},
    							},
    						},
    					},
    					GatewayNodes: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					SubnetReference: pulumi.String("string"),
    				},
    			},
    			ExternallyRoutablePrefixes: nutanix.FloatingIpV2VpcExternallyRoutablePrefixArray{
    				&nutanix.FloatingIpV2VpcExternallyRoutablePrefixArgs{
    					Ipv4s: nutanix.FloatingIpV2VpcExternallyRoutablePrefixIpv4Array{
    						&nutanix.FloatingIpV2VpcExternallyRoutablePrefixIpv4Args{
    							Ips: nutanix.FloatingIpV2VpcExternallyRoutablePrefixIpv4IpArray{
    								&nutanix.FloatingIpV2VpcExternallyRoutablePrefixIpv4IpArgs{
    									PrefixLength: pulumi.Int(0),
    									Value:        pulumi.String("string"),
    								},
    							},
    							PrefixLength: pulumi.Int(0),
    						},
    					},
    					Ipv6s: nutanix.FloatingIpV2VpcExternallyRoutablePrefixIpv6Array{
    						&nutanix.FloatingIpV2VpcExternallyRoutablePrefixIpv6Args{
    							Ips: nutanix.FloatingIpV2VpcExternallyRoutablePrefixIpv6IpArray{
    								&nutanix.FloatingIpV2VpcExternallyRoutablePrefixIpv6IpArgs{
    									PrefixLength: pulumi.Int(0),
    									Value:        pulumi.String("string"),
    								},
    							},
    							PrefixLength: pulumi.Int(0),
    						},
    					},
    				},
    			},
    			Links: nutanix.FloatingIpV2VpcLinkArray{
    				&nutanix.FloatingIpV2VpcLinkArgs{
    					Href: pulumi.String("string"),
    					Rel:  pulumi.String("string"),
    				},
    			},
    			Metadatas: nutanix.FloatingIpV2VpcMetadataArray{
    				&nutanix.FloatingIpV2VpcMetadataArgs{
    					CategoryIds: pulumi.ArrayArray{
    						pulumi.Array{
    							pulumi.Any("any"),
    						},
    					},
    					OwnerReferenceId:   pulumi.String("string"),
    					OwnerUserName:      pulumi.String("string"),
    					ProjectName:        pulumi.String("string"),
    					ProjectReferenceId: pulumi.String("string"),
    				},
    			},
    			Name: pulumi.String("string"),
    			SnatIps: nutanix.FloatingIpV2VpcSnatIpArray{
    				&nutanix.FloatingIpV2VpcSnatIpArgs{
    					Ipv4s: nutanix.FloatingIpV2VpcSnatIpIpv4Array{
    						&nutanix.FloatingIpV2VpcSnatIpIpv4Args{
    							PrefixLength: pulumi.Int(0),
    							Value:        pulumi.String("string"),
    						},
    					},
    					Ipv6s: nutanix.FloatingIpV2VpcSnatIpIpv6Array{
    						&nutanix.FloatingIpV2VpcSnatIpIpv6Args{
    							PrefixLength: pulumi.Int(0),
    							Value:        pulumi.String("string"),
    						},
    					},
    				},
    			},
    			TenantId: pulumi.String("string"),
    			VpcType:  pulumi.String("string"),
    		},
    	},
    })
    
    var floatingIpV2Resource = new FloatingIpV2("floatingIpV2Resource", FloatingIpV2Args.builder()
        .associations(FloatingIpV2AssociationArgs.builder()
            .privateIpAssociations(FloatingIpV2AssociationPrivateIpAssociationArgs.builder()
                .privateIps(FloatingIpV2AssociationPrivateIpAssociationPrivateIpArgs.builder()
                    .ipv4s(FloatingIpV2AssociationPrivateIpAssociationPrivateIpIpv4Args.builder()
                        .prefixLength(0)
                        .value("string")
                        .build())
                    .ipv6s(FloatingIpV2AssociationPrivateIpAssociationPrivateIpIpv6Args.builder()
                        .prefixLength(0)
                        .value("string")
                        .build())
                    .build())
                .vpcReference("string")
                .build())
            .vmNicAssociations(FloatingIpV2AssociationVmNicAssociationArgs.builder()
                .vmNicReference("string")
                .vpcReference("string")
                .build())
            .build())
        .description("string")
        .extId("string")
        .externalSubnetReference("string")
        .externalSubnets(FloatingIpV2ExternalSubnetArgs.builder()
            .extId("string")
            .isExternal(false)
            .virtualSwitches(FloatingIpV2ExternalSubnetVirtualSwitchArgs.builder()
                .bondMode(false)
                .clusters(FloatingIpV2ExternalSubnetVirtualSwitchClusterArgs.builder()
                    .extId("string")
                    .gatewayIpAddresses(FloatingIpV2ExternalSubnetVirtualSwitchClusterGatewayIpAddressArgs.builder()
                        .prefixLength(0)
                        .value("string")
                        .build())
                    .hosts(FloatingIpV2ExternalSubnetVirtualSwitchClusterHostArgs.builder()
                        .extId("string")
                        .hostNics("string")
                        .internalBridgeName("string")
                        .ipAddresses(FloatingIpV2ExternalSubnetVirtualSwitchClusterHostIpAddressArgs.builder()
                            .ips(FloatingIpV2ExternalSubnetVirtualSwitchClusterHostIpAddressIpArgs.builder()
                                .prefixLength(0)
                                .value("string")
                                .build())
                            .prefixLength(0)
                            .build())
                        .routeTable(0)
                        .build())
                    .build())
                .description("string")
                .extId("string")
                .hasDeploymentError(false)
                .isDefault(false)
                .links(FloatingIpV2ExternalSubnetVirtualSwitchLinkArgs.builder()
                    .href("string")
                    .rel("string")
                    .build())
                .metadatas(FloatingIpV2ExternalSubnetVirtualSwitchMetadataArgs.builder()
                    .categoryIds("any")
                    .ownerReferenceId("string")
                    .ownerUserName("string")
                    .projectName("string")
                    .projectReferenceId("string")
                    .build())
                .mtu(0)
                .name("string")
                .tenantId("string")
                .build())
            .description("string")
            .dhcpOptions(FloatingIpV2ExternalSubnetDhcpOptionArgs.builder()
                .bootFileName("string")
                .domainName("string")
                .domainNameServers(FloatingIpV2ExternalSubnetDhcpOptionDomainNameServerArgs.builder()
                    .ipv4s(FloatingIpV2ExternalSubnetDhcpOptionDomainNameServerIpv4Args.builder()
                        .prefixLength(0)
                        .value("string")
                        .build())
                    .ipv6s(FloatingIpV2ExternalSubnetDhcpOptionDomainNameServerIpv6Args.builder()
                        .prefixLength(0)
                        .value("string")
                        .build())
                    .build())
                .ntpServers(FloatingIpV2ExternalSubnetDhcpOptionNtpServerArgs.builder()
                    .ipv4s(FloatingIpV2ExternalSubnetDhcpOptionNtpServerIpv4Args.builder()
                        .prefixLength(0)
                        .value("string")
                        .build())
                    .ipv6s(FloatingIpV2ExternalSubnetDhcpOptionNtpServerIpv6Args.builder()
                        .prefixLength(0)
                        .value("string")
                        .build())
                    .build())
                .searchDomains("string")
                .tftpServerName("string")
                .build())
            .dynamicIpAddresses(FloatingIpV2ExternalSubnetDynamicIpAddressArgs.builder()
                .ipv4s(FloatingIpV2ExternalSubnetDynamicIpAddressIpv4Args.builder()
                    .prefixLength(0)
                    .value("string")
                    .build())
                .ipv6s(FloatingIpV2ExternalSubnetDynamicIpAddressIpv6Args.builder()
                    .prefixLength(0)
                    .value("string")
                    .build())
                .build())
            .clusterName("string")
            .hypervisorType("string")
            .ipConfigs(FloatingIpV2ExternalSubnetIpConfigArgs.builder()
                .ipv4s(FloatingIpV2ExternalSubnetIpConfigIpv4Args.builder()
                    .defaultGatewayIps(FloatingIpV2ExternalSubnetIpConfigIpv4DefaultGatewayIpArgs.builder()
                        .prefixLength(0)
                        .value("string")
                        .build())
                    .dhcpServerAddresses(FloatingIpV2ExternalSubnetIpConfigIpv4DhcpServerAddressArgs.builder()
                        .prefixLength(0)
                        .value("string")
                        .build())
                    .ipSubnets(FloatingIpV2ExternalSubnetIpConfigIpv4IpSubnetArgs.builder()
                        .ips(FloatingIpV2ExternalSubnetIpConfigIpv4IpSubnetIpArgs.builder()
                            .prefixLength(0)
                            .value("string")
                            .build())
                        .prefixLength(0)
                        .build())
                    .poolLists(FloatingIpV2ExternalSubnetIpConfigIpv4PoolListArgs.builder()
                        .endIps(FloatingIpV2ExternalSubnetIpConfigIpv4PoolListEndIpArgs.builder()
                            .prefixLength(0)
                            .value("string")
                            .build())
                        .startIps(FloatingIpV2ExternalSubnetIpConfigIpv4PoolListStartIpArgs.builder()
                            .prefixLength(0)
                            .value("string")
                            .build())
                        .build())
                    .build())
                .ipv6s(FloatingIpV2ExternalSubnetIpConfigIpv6Args.builder()
                    .defaultGatewayIps(FloatingIpV2ExternalSubnetIpConfigIpv6DefaultGatewayIpArgs.builder()
                        .prefixLength(0)
                        .value("string")
                        .build())
                    .dhcpServerAddresses(FloatingIpV2ExternalSubnetIpConfigIpv6DhcpServerAddressArgs.builder()
                        .prefixLength(0)
                        .value("string")
                        .build())
                    .ipSubnets(FloatingIpV2ExternalSubnetIpConfigIpv6IpSubnetArgs.builder()
                        .ips(FloatingIpV2ExternalSubnetIpConfigIpv6IpSubnetIpArgs.builder()
                            .prefixLength(0)
                            .value("string")
                            .build())
                        .prefixLength(0)
                        .build())
                    .poolLists(FloatingIpV2ExternalSubnetIpConfigIpv6PoolListArgs.builder()
                        .endIps(FloatingIpV2ExternalSubnetIpConfigIpv6PoolListEndIpArgs.builder()
                            .prefixLength(0)
                            .value("string")
                            .build())
                        .startIps(FloatingIpV2ExternalSubnetIpConfigIpv6PoolListStartIpArgs.builder()
                            .prefixLength(0)
                            .value("string")
                            .build())
                        .build())
                    .build())
                .build())
            .ipPrefix("string")
            .ipUsages(FloatingIpV2ExternalSubnetIpUsageArgs.builder()
                .ipPoolUsages(FloatingIpV2ExternalSubnetIpUsageIpPoolUsageArgs.builder()
                    .numFreeIps(0)
                    .numTotalIps(0)
                    .ranges(FloatingIpV2ExternalSubnetIpUsageIpPoolUsageRangeArgs.builder()
                        .endIps(FloatingIpV2ExternalSubnetIpUsageIpPoolUsageRangeEndIpArgs.builder()
                            .prefixLength(0)
                            .value("string")
                            .build())
                        .startIps(FloatingIpV2ExternalSubnetIpUsageIpPoolUsageRangeStartIpArgs.builder()
                            .prefixLength(0)
                            .value("string")
                            .build())
                        .build())
                    .build())
                .numAssignedIps(0)
                .numFreeIps(0)
                .numMacs(0)
                .build())
            .vpcs(FloatingIpV2ExternalSubnetVpcArgs.builder()
                .commonDhcpOptions(FloatingIpV2ExternalSubnetVpcCommonDhcpOptionArgs.builder()
                    .domainNameServers(FloatingIpV2ExternalSubnetVpcCommonDhcpOptionDomainNameServerArgs.builder()
                        .ipv4s(FloatingIpV2ExternalSubnetVpcCommonDhcpOptionDomainNameServerIpv4Args.builder()
                            .prefixLength(0)
                            .value("string")
                            .build())
                        .ipv6s(FloatingIpV2ExternalSubnetVpcCommonDhcpOptionDomainNameServerIpv6Args.builder()
                            .prefixLength(0)
                            .value("string")
                            .build())
                        .build())
                    .build())
                .description("string")
                .extId("string")
                .externalRoutingDomainReference("string")
                .externalSubnets(FloatingIpV2ExternalSubnetVpcExternalSubnetArgs.builder()
                    .activeGatewayCount(0)
                    .activeGatewayNodes(FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeArgs.builder()
                        .nodeId("string")
                        .nodeIpAddresses(FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddressArgs.builder()
                            .ipv4s(FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv4Args.builder()
                                .prefixLength(0)
                                .value("string")
                                .build())
                            .ipv6s(FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv6Args.builder()
                                .prefixLength(0)
                                .value("string")
                                .build())
                            .build())
                        .build())
                    .externalIps(FloatingIpV2ExternalSubnetVpcExternalSubnetExternalIpArgs.builder()
                        .ipv4s(FloatingIpV2ExternalSubnetVpcExternalSubnetExternalIpIpv4Args.builder()
                            .prefixLength(0)
                            .value("string")
                            .build())
                        .ipv6s(FloatingIpV2ExternalSubnetVpcExternalSubnetExternalIpIpv6Args.builder()
                            .prefixLength(0)
                            .value("string")
                            .build())
                        .build())
                    .gatewayNodes("string")
                    .subnetReference("string")
                    .build())
                .externallyRoutablePrefixes(FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixArgs.builder()
                    .ipv4s(FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv4Args.builder()
                        .ips(FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv4IpArgs.builder()
                            .prefixLength(0)
                            .value("string")
                            .build())
                        .prefixLength(0)
                        .build())
                    .ipv6s(FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv6Args.builder()
                        .ips(FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv6IpArgs.builder()
                            .prefixLength(0)
                            .value("string")
                            .build())
                        .prefixLength(0)
                        .build())
                    .build())
                .links(FloatingIpV2ExternalSubnetVpcLinkArgs.builder()
                    .href("string")
                    .rel("string")
                    .build())
                .metadatas(FloatingIpV2ExternalSubnetVpcMetadataArgs.builder()
                    .categoryIds("any")
                    .ownerReferenceId("string")
                    .ownerUserName("string")
                    .projectName("string")
                    .projectReferenceId("string")
                    .build())
                .name("string")
                .snatIps(FloatingIpV2ExternalSubnetVpcSnatIpArgs.builder()
                    .ipv4s(FloatingIpV2ExternalSubnetVpcSnatIpIpv4Args.builder()
                        .prefixLength(0)
                        .value("string")
                        .build())
                    .ipv6s(FloatingIpV2ExternalSubnetVpcSnatIpIpv6Args.builder()
                        .prefixLength(0)
                        .value("string")
                        .build())
                    .build())
                .tenantId("string")
                .vpcType("string")
                .build())
            .clusterReference("string")
            .migrationState("string")
            .links(FloatingIpV2ExternalSubnetLinkArgs.builder()
                .href("string")
                .rel("string")
                .build())
            .isNatEnabled(false)
            .name("string")
            .networkFunctionChainReference("string")
            .networkId(0)
            .reservedIpAddresses(FloatingIpV2ExternalSubnetReservedIpAddressArgs.builder()
                .prefixLength(0)
                .value("string")
                .build())
            .subnetType("string")
            .virtualSwitchReference("string")
            .bridgeName("string")
            .vpcReference("string")
            .isAdvancedNetworking(false)
            .build())
        .floatingIps(FloatingIpV2FloatingIpArgs.builder()
            .ipv4s(FloatingIpV2FloatingIpIpv4Args.builder()
                .prefixLength(0)
                .value("string")
                .build())
            .ipv6s(FloatingIpV2FloatingIpIpv6Args.builder()
                .prefixLength(0)
                .value("string")
                .build())
            .build())
        .loadBalancerSessionReference("string")
        .name("string")
        .vmNicReference("string")
        .vmNics(FloatingIpV2VmNicArgs.builder()
            .privateIp("string")
            .build())
        .vpcReference("string")
        .vpcs(FloatingIpV2VpcArgs.builder()
            .commonDhcpOptions(FloatingIpV2VpcCommonDhcpOptionArgs.builder()
                .domainNameServers(FloatingIpV2VpcCommonDhcpOptionDomainNameServerArgs.builder()
                    .ipv4s(FloatingIpV2VpcCommonDhcpOptionDomainNameServerIpv4Args.builder()
                        .prefixLength(0)
                        .value("string")
                        .build())
                    .ipv6s(FloatingIpV2VpcCommonDhcpOptionDomainNameServerIpv6Args.builder()
                        .prefixLength(0)
                        .value("string")
                        .build())
                    .build())
                .build())
            .description("string")
            .extId("string")
            .externalRoutingDomainReference("string")
            .externalSubnets(FloatingIpV2VpcExternalSubnetArgs.builder()
                .activeGatewayCount(0)
                .activeGatewayNodes(FloatingIpV2VpcExternalSubnetActiveGatewayNodeArgs.builder()
                    .nodeId("string")
                    .nodeIpAddresses(FloatingIpV2VpcExternalSubnetActiveGatewayNodeNodeIpAddressArgs.builder()
                        .ipv4s(FloatingIpV2VpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv4Args.builder()
                            .prefixLength(0)
                            .value("string")
                            .build())
                        .ipv6s(FloatingIpV2VpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv6Args.builder()
                            .prefixLength(0)
                            .value("string")
                            .build())
                        .build())
                    .build())
                .externalIps(FloatingIpV2VpcExternalSubnetExternalIpArgs.builder()
                    .ipv4s(FloatingIpV2VpcExternalSubnetExternalIpIpv4Args.builder()
                        .prefixLength(0)
                        .value("string")
                        .build())
                    .ipv6s(FloatingIpV2VpcExternalSubnetExternalIpIpv6Args.builder()
                        .prefixLength(0)
                        .value("string")
                        .build())
                    .build())
                .gatewayNodes("string")
                .subnetReference("string")
                .build())
            .externallyRoutablePrefixes(FloatingIpV2VpcExternallyRoutablePrefixArgs.builder()
                .ipv4s(FloatingIpV2VpcExternallyRoutablePrefixIpv4Args.builder()
                    .ips(FloatingIpV2VpcExternallyRoutablePrefixIpv4IpArgs.builder()
                        .prefixLength(0)
                        .value("string")
                        .build())
                    .prefixLength(0)
                    .build())
                .ipv6s(FloatingIpV2VpcExternallyRoutablePrefixIpv6Args.builder()
                    .ips(FloatingIpV2VpcExternallyRoutablePrefixIpv6IpArgs.builder()
                        .prefixLength(0)
                        .value("string")
                        .build())
                    .prefixLength(0)
                    .build())
                .build())
            .links(FloatingIpV2VpcLinkArgs.builder()
                .href("string")
                .rel("string")
                .build())
            .metadatas(FloatingIpV2VpcMetadataArgs.builder()
                .categoryIds("any")
                .ownerReferenceId("string")
                .ownerUserName("string")
                .projectName("string")
                .projectReferenceId("string")
                .build())
            .name("string")
            .snatIps(FloatingIpV2VpcSnatIpArgs.builder()
                .ipv4s(FloatingIpV2VpcSnatIpIpv4Args.builder()
                    .prefixLength(0)
                    .value("string")
                    .build())
                .ipv6s(FloatingIpV2VpcSnatIpIpv6Args.builder()
                    .prefixLength(0)
                    .value("string")
                    .build())
                .build())
            .tenantId("string")
            .vpcType("string")
            .build())
        .build());
    
    floating_ip_v2_resource = nutanix.FloatingIpV2("floatingIpV2Resource",
        associations=[{
            "private_ip_associations": [{
                "private_ips": [{
                    "ipv4s": [{
                        "prefix_length": 0,
                        "value": "string",
                    }],
                    "ipv6s": [{
                        "prefix_length": 0,
                        "value": "string",
                    }],
                }],
                "vpc_reference": "string",
            }],
            "vm_nic_associations": [{
                "vm_nic_reference": "string",
                "vpc_reference": "string",
            }],
        }],
        description="string",
        ext_id="string",
        external_subnet_reference="string",
        external_subnets=[{
            "ext_id": "string",
            "is_external": False,
            "virtual_switches": [{
                "bond_mode": False,
                "clusters": [{
                    "ext_id": "string",
                    "gateway_ip_addresses": [{
                        "prefix_length": 0,
                        "value": "string",
                    }],
                    "hosts": [{
                        "ext_id": "string",
                        "host_nics": ["string"],
                        "internal_bridge_name": "string",
                        "ip_addresses": [{
                            "ips": [{
                                "prefix_length": 0,
                                "value": "string",
                            }],
                            "prefix_length": 0,
                        }],
                        "route_table": 0,
                    }],
                }],
                "description": "string",
                "ext_id": "string",
                "has_deployment_error": False,
                "is_default": False,
                "links": [{
                    "href": "string",
                    "rel": "string",
                }],
                "metadatas": [{
                    "category_ids": [["any"]],
                    "owner_reference_id": "string",
                    "owner_user_name": "string",
                    "project_name": "string",
                    "project_reference_id": "string",
                }],
                "mtu": 0,
                "name": "string",
                "tenant_id": "string",
            }],
            "description": "string",
            "dhcp_options": [{
                "boot_file_name": "string",
                "domain_name": "string",
                "domain_name_servers": [{
                    "ipv4s": [{
                        "prefix_length": 0,
                        "value": "string",
                    }],
                    "ipv6s": [{
                        "prefix_length": 0,
                        "value": "string",
                    }],
                }],
                "ntp_servers": [{
                    "ipv4s": [{
                        "prefix_length": 0,
                        "value": "string",
                    }],
                    "ipv6s": [{
                        "prefix_length": 0,
                        "value": "string",
                    }],
                }],
                "search_domains": ["string"],
                "tftp_server_name": "string",
            }],
            "dynamic_ip_addresses": [{
                "ipv4s": [{
                    "prefix_length": 0,
                    "value": "string",
                }],
                "ipv6s": [{
                    "prefix_length": 0,
                    "value": "string",
                }],
            }],
            "cluster_name": "string",
            "hypervisor_type": "string",
            "ip_configs": [{
                "ipv4s": [{
                    "default_gateway_ips": [{
                        "prefix_length": 0,
                        "value": "string",
                    }],
                    "dhcp_server_addresses": [{
                        "prefix_length": 0,
                        "value": "string",
                    }],
                    "ip_subnets": [{
                        "ips": [{
                            "prefix_length": 0,
                            "value": "string",
                        }],
                        "prefix_length": 0,
                    }],
                    "pool_lists": [{
                        "end_ips": [{
                            "prefix_length": 0,
                            "value": "string",
                        }],
                        "start_ips": [{
                            "prefix_length": 0,
                            "value": "string",
                        }],
                    }],
                }],
                "ipv6s": [{
                    "default_gateway_ips": [{
                        "prefix_length": 0,
                        "value": "string",
                    }],
                    "dhcp_server_addresses": [{
                        "prefix_length": 0,
                        "value": "string",
                    }],
                    "ip_subnets": [{
                        "ips": [{
                            "prefix_length": 0,
                            "value": "string",
                        }],
                        "prefix_length": 0,
                    }],
                    "pool_lists": [{
                        "end_ips": [{
                            "prefix_length": 0,
                            "value": "string",
                        }],
                        "start_ips": [{
                            "prefix_length": 0,
                            "value": "string",
                        }],
                    }],
                }],
            }],
            "ip_prefix": "string",
            "ip_usages": [{
                "ip_pool_usages": [{
                    "num_free_ips": 0,
                    "num_total_ips": 0,
                    "ranges": [{
                        "end_ips": [{
                            "prefix_length": 0,
                            "value": "string",
                        }],
                        "start_ips": [{
                            "prefix_length": 0,
                            "value": "string",
                        }],
                    }],
                }],
                "num_assigned_ips": 0,
                "num_free_ips": 0,
                "num_macs": 0,
            }],
            "vpcs": [{
                "common_dhcp_options": [{
                    "domain_name_servers": [{
                        "ipv4s": [{
                            "prefix_length": 0,
                            "value": "string",
                        }],
                        "ipv6s": [{
                            "prefix_length": 0,
                            "value": "string",
                        }],
                    }],
                }],
                "description": "string",
                "ext_id": "string",
                "external_routing_domain_reference": "string",
                "external_subnets": [{
                    "active_gateway_count": 0,
                    "active_gateway_nodes": [{
                        "node_id": "string",
                        "node_ip_addresses": [{
                            "ipv4s": [{
                                "prefix_length": 0,
                                "value": "string",
                            }],
                            "ipv6s": [{
                                "prefix_length": 0,
                                "value": "string",
                            }],
                        }],
                    }],
                    "external_ips": [{
                        "ipv4s": [{
                            "prefix_length": 0,
                            "value": "string",
                        }],
                        "ipv6s": [{
                            "prefix_length": 0,
                            "value": "string",
                        }],
                    }],
                    "gateway_nodes": ["string"],
                    "subnet_reference": "string",
                }],
                "externally_routable_prefixes": [{
                    "ipv4s": [{
                        "ips": [{
                            "prefix_length": 0,
                            "value": "string",
                        }],
                        "prefix_length": 0,
                    }],
                    "ipv6s": [{
                        "ips": [{
                            "prefix_length": 0,
                            "value": "string",
                        }],
                        "prefix_length": 0,
                    }],
                }],
                "links": [{
                    "href": "string",
                    "rel": "string",
                }],
                "metadatas": [{
                    "category_ids": [["any"]],
                    "owner_reference_id": "string",
                    "owner_user_name": "string",
                    "project_name": "string",
                    "project_reference_id": "string",
                }],
                "name": "string",
                "snat_ips": [{
                    "ipv4s": [{
                        "prefix_length": 0,
                        "value": "string",
                    }],
                    "ipv6s": [{
                        "prefix_length": 0,
                        "value": "string",
                    }],
                }],
                "tenant_id": "string",
                "vpc_type": "string",
            }],
            "cluster_reference": "string",
            "migration_state": "string",
            "links": [{
                "href": "string",
                "rel": "string",
            }],
            "is_nat_enabled": False,
            "name": "string",
            "network_function_chain_reference": "string",
            "network_id": 0,
            "reserved_ip_addresses": [{
                "prefix_length": 0,
                "value": "string",
            }],
            "subnet_type": "string",
            "virtual_switch_reference": "string",
            "bridge_name": "string",
            "vpc_reference": "string",
            "is_advanced_networking": False,
        }],
        floating_ips=[{
            "ipv4s": [{
                "prefix_length": 0,
                "value": "string",
            }],
            "ipv6s": [{
                "prefix_length": 0,
                "value": "string",
            }],
        }],
        load_balancer_session_reference="string",
        name="string",
        vm_nic_reference="string",
        vm_nics=[{
            "private_ip": "string",
        }],
        vpc_reference="string",
        vpcs=[{
            "common_dhcp_options": [{
                "domain_name_servers": [{
                    "ipv4s": [{
                        "prefix_length": 0,
                        "value": "string",
                    }],
                    "ipv6s": [{
                        "prefix_length": 0,
                        "value": "string",
                    }],
                }],
            }],
            "description": "string",
            "ext_id": "string",
            "external_routing_domain_reference": "string",
            "external_subnets": [{
                "active_gateway_count": 0,
                "active_gateway_nodes": [{
                    "node_id": "string",
                    "node_ip_addresses": [{
                        "ipv4s": [{
                            "prefix_length": 0,
                            "value": "string",
                        }],
                        "ipv6s": [{
                            "prefix_length": 0,
                            "value": "string",
                        }],
                    }],
                }],
                "external_ips": [{
                    "ipv4s": [{
                        "prefix_length": 0,
                        "value": "string",
                    }],
                    "ipv6s": [{
                        "prefix_length": 0,
                        "value": "string",
                    }],
                }],
                "gateway_nodes": ["string"],
                "subnet_reference": "string",
            }],
            "externally_routable_prefixes": [{
                "ipv4s": [{
                    "ips": [{
                        "prefix_length": 0,
                        "value": "string",
                    }],
                    "prefix_length": 0,
                }],
                "ipv6s": [{
                    "ips": [{
                        "prefix_length": 0,
                        "value": "string",
                    }],
                    "prefix_length": 0,
                }],
            }],
            "links": [{
                "href": "string",
                "rel": "string",
            }],
            "metadatas": [{
                "category_ids": [["any"]],
                "owner_reference_id": "string",
                "owner_user_name": "string",
                "project_name": "string",
                "project_reference_id": "string",
            }],
            "name": "string",
            "snat_ips": [{
                "ipv4s": [{
                    "prefix_length": 0,
                    "value": "string",
                }],
                "ipv6s": [{
                    "prefix_length": 0,
                    "value": "string",
                }],
            }],
            "tenant_id": "string",
            "vpc_type": "string",
        }])
    
    const floatingIpV2Resource = new nutanix.FloatingIpV2("floatingIpV2Resource", {
        associations: [{
            privateIpAssociations: [{
                privateIps: [{
                    ipv4s: [{
                        prefixLength: 0,
                        value: "string",
                    }],
                    ipv6s: [{
                        prefixLength: 0,
                        value: "string",
                    }],
                }],
                vpcReference: "string",
            }],
            vmNicAssociations: [{
                vmNicReference: "string",
                vpcReference: "string",
            }],
        }],
        description: "string",
        extId: "string",
        externalSubnetReference: "string",
        externalSubnets: [{
            extId: "string",
            isExternal: false,
            virtualSwitches: [{
                bondMode: false,
                clusters: [{
                    extId: "string",
                    gatewayIpAddresses: [{
                        prefixLength: 0,
                        value: "string",
                    }],
                    hosts: [{
                        extId: "string",
                        hostNics: ["string"],
                        internalBridgeName: "string",
                        ipAddresses: [{
                            ips: [{
                                prefixLength: 0,
                                value: "string",
                            }],
                            prefixLength: 0,
                        }],
                        routeTable: 0,
                    }],
                }],
                description: "string",
                extId: "string",
                hasDeploymentError: false,
                isDefault: false,
                links: [{
                    href: "string",
                    rel: "string",
                }],
                metadatas: [{
                    categoryIds: [["any"]],
                    ownerReferenceId: "string",
                    ownerUserName: "string",
                    projectName: "string",
                    projectReferenceId: "string",
                }],
                mtu: 0,
                name: "string",
                tenantId: "string",
            }],
            description: "string",
            dhcpOptions: [{
                bootFileName: "string",
                domainName: "string",
                domainNameServers: [{
                    ipv4s: [{
                        prefixLength: 0,
                        value: "string",
                    }],
                    ipv6s: [{
                        prefixLength: 0,
                        value: "string",
                    }],
                }],
                ntpServers: [{
                    ipv4s: [{
                        prefixLength: 0,
                        value: "string",
                    }],
                    ipv6s: [{
                        prefixLength: 0,
                        value: "string",
                    }],
                }],
                searchDomains: ["string"],
                tftpServerName: "string",
            }],
            dynamicIpAddresses: [{
                ipv4s: [{
                    prefixLength: 0,
                    value: "string",
                }],
                ipv6s: [{
                    prefixLength: 0,
                    value: "string",
                }],
            }],
            clusterName: "string",
            hypervisorType: "string",
            ipConfigs: [{
                ipv4s: [{
                    defaultGatewayIps: [{
                        prefixLength: 0,
                        value: "string",
                    }],
                    dhcpServerAddresses: [{
                        prefixLength: 0,
                        value: "string",
                    }],
                    ipSubnets: [{
                        ips: [{
                            prefixLength: 0,
                            value: "string",
                        }],
                        prefixLength: 0,
                    }],
                    poolLists: [{
                        endIps: [{
                            prefixLength: 0,
                            value: "string",
                        }],
                        startIps: [{
                            prefixLength: 0,
                            value: "string",
                        }],
                    }],
                }],
                ipv6s: [{
                    defaultGatewayIps: [{
                        prefixLength: 0,
                        value: "string",
                    }],
                    dhcpServerAddresses: [{
                        prefixLength: 0,
                        value: "string",
                    }],
                    ipSubnets: [{
                        ips: [{
                            prefixLength: 0,
                            value: "string",
                        }],
                        prefixLength: 0,
                    }],
                    poolLists: [{
                        endIps: [{
                            prefixLength: 0,
                            value: "string",
                        }],
                        startIps: [{
                            prefixLength: 0,
                            value: "string",
                        }],
                    }],
                }],
            }],
            ipPrefix: "string",
            ipUsages: [{
                ipPoolUsages: [{
                    numFreeIps: 0,
                    numTotalIps: 0,
                    ranges: [{
                        endIps: [{
                            prefixLength: 0,
                            value: "string",
                        }],
                        startIps: [{
                            prefixLength: 0,
                            value: "string",
                        }],
                    }],
                }],
                numAssignedIps: 0,
                numFreeIps: 0,
                numMacs: 0,
            }],
            vpcs: [{
                commonDhcpOptions: [{
                    domainNameServers: [{
                        ipv4s: [{
                            prefixLength: 0,
                            value: "string",
                        }],
                        ipv6s: [{
                            prefixLength: 0,
                            value: "string",
                        }],
                    }],
                }],
                description: "string",
                extId: "string",
                externalRoutingDomainReference: "string",
                externalSubnets: [{
                    activeGatewayCount: 0,
                    activeGatewayNodes: [{
                        nodeId: "string",
                        nodeIpAddresses: [{
                            ipv4s: [{
                                prefixLength: 0,
                                value: "string",
                            }],
                            ipv6s: [{
                                prefixLength: 0,
                                value: "string",
                            }],
                        }],
                    }],
                    externalIps: [{
                        ipv4s: [{
                            prefixLength: 0,
                            value: "string",
                        }],
                        ipv6s: [{
                            prefixLength: 0,
                            value: "string",
                        }],
                    }],
                    gatewayNodes: ["string"],
                    subnetReference: "string",
                }],
                externallyRoutablePrefixes: [{
                    ipv4s: [{
                        ips: [{
                            prefixLength: 0,
                            value: "string",
                        }],
                        prefixLength: 0,
                    }],
                    ipv6s: [{
                        ips: [{
                            prefixLength: 0,
                            value: "string",
                        }],
                        prefixLength: 0,
                    }],
                }],
                links: [{
                    href: "string",
                    rel: "string",
                }],
                metadatas: [{
                    categoryIds: [["any"]],
                    ownerReferenceId: "string",
                    ownerUserName: "string",
                    projectName: "string",
                    projectReferenceId: "string",
                }],
                name: "string",
                snatIps: [{
                    ipv4s: [{
                        prefixLength: 0,
                        value: "string",
                    }],
                    ipv6s: [{
                        prefixLength: 0,
                        value: "string",
                    }],
                }],
                tenantId: "string",
                vpcType: "string",
            }],
            clusterReference: "string",
            migrationState: "string",
            links: [{
                href: "string",
                rel: "string",
            }],
            isNatEnabled: false,
            name: "string",
            networkFunctionChainReference: "string",
            networkId: 0,
            reservedIpAddresses: [{
                prefixLength: 0,
                value: "string",
            }],
            subnetType: "string",
            virtualSwitchReference: "string",
            bridgeName: "string",
            vpcReference: "string",
            isAdvancedNetworking: false,
        }],
        floatingIps: [{
            ipv4s: [{
                prefixLength: 0,
                value: "string",
            }],
            ipv6s: [{
                prefixLength: 0,
                value: "string",
            }],
        }],
        loadBalancerSessionReference: "string",
        name: "string",
        vmNicReference: "string",
        vmNics: [{
            privateIp: "string",
        }],
        vpcReference: "string",
        vpcs: [{
            commonDhcpOptions: [{
                domainNameServers: [{
                    ipv4s: [{
                        prefixLength: 0,
                        value: "string",
                    }],
                    ipv6s: [{
                        prefixLength: 0,
                        value: "string",
                    }],
                }],
            }],
            description: "string",
            extId: "string",
            externalRoutingDomainReference: "string",
            externalSubnets: [{
                activeGatewayCount: 0,
                activeGatewayNodes: [{
                    nodeId: "string",
                    nodeIpAddresses: [{
                        ipv4s: [{
                            prefixLength: 0,
                            value: "string",
                        }],
                        ipv6s: [{
                            prefixLength: 0,
                            value: "string",
                        }],
                    }],
                }],
                externalIps: [{
                    ipv4s: [{
                        prefixLength: 0,
                        value: "string",
                    }],
                    ipv6s: [{
                        prefixLength: 0,
                        value: "string",
                    }],
                }],
                gatewayNodes: ["string"],
                subnetReference: "string",
            }],
            externallyRoutablePrefixes: [{
                ipv4s: [{
                    ips: [{
                        prefixLength: 0,
                        value: "string",
                    }],
                    prefixLength: 0,
                }],
                ipv6s: [{
                    ips: [{
                        prefixLength: 0,
                        value: "string",
                    }],
                    prefixLength: 0,
                }],
            }],
            links: [{
                href: "string",
                rel: "string",
            }],
            metadatas: [{
                categoryIds: [["any"]],
                ownerReferenceId: "string",
                ownerUserName: "string",
                projectName: "string",
                projectReferenceId: "string",
            }],
            name: "string",
            snatIps: [{
                ipv4s: [{
                    prefixLength: 0,
                    value: "string",
                }],
                ipv6s: [{
                    prefixLength: 0,
                    value: "string",
                }],
            }],
            tenantId: "string",
            vpcType: "string",
        }],
    });
    
    type: nutanix:FloatingIpV2
    properties:
        associations:
            - privateIpAssociations:
                - privateIps:
                    - ipv4s:
                        - prefixLength: 0
                          value: string
                      ipv6s:
                        - prefixLength: 0
                          value: string
                  vpcReference: string
              vmNicAssociations:
                - vmNicReference: string
                  vpcReference: string
        description: string
        extId: string
        externalSubnetReference: string
        externalSubnets:
            - bridgeName: string
              clusterName: string
              clusterReference: string
              description: string
              dhcpOptions:
                - bootFileName: string
                  domainName: string
                  domainNameServers:
                    - ipv4s:
                        - prefixLength: 0
                          value: string
                      ipv6s:
                        - prefixLength: 0
                          value: string
                  ntpServers:
                    - ipv4s:
                        - prefixLength: 0
                          value: string
                      ipv6s:
                        - prefixLength: 0
                          value: string
                  searchDomains:
                    - string
                  tftpServerName: string
              dynamicIpAddresses:
                - ipv4s:
                    - prefixLength: 0
                      value: string
                  ipv6s:
                    - prefixLength: 0
                      value: string
              extId: string
              hypervisorType: string
              ipConfigs:
                - ipv4s:
                    - defaultGatewayIps:
                        - prefixLength: 0
                          value: string
                      dhcpServerAddresses:
                        - prefixLength: 0
                          value: string
                      ipSubnets:
                        - ips:
                            - prefixLength: 0
                              value: string
                          prefixLength: 0
                      poolLists:
                        - endIps:
                            - prefixLength: 0
                              value: string
                          startIps:
                            - prefixLength: 0
                              value: string
                  ipv6s:
                    - defaultGatewayIps:
                        - prefixLength: 0
                          value: string
                      dhcpServerAddresses:
                        - prefixLength: 0
                          value: string
                      ipSubnets:
                        - ips:
                            - prefixLength: 0
                              value: string
                          prefixLength: 0
                      poolLists:
                        - endIps:
                            - prefixLength: 0
                              value: string
                          startIps:
                            - prefixLength: 0
                              value: string
              ipPrefix: string
              ipUsages:
                - ipPoolUsages:
                    - numFreeIps: 0
                      numTotalIps: 0
                      ranges:
                        - endIps:
                            - prefixLength: 0
                              value: string
                          startIps:
                            - prefixLength: 0
                              value: string
                  numAssignedIps: 0
                  numFreeIps: 0
                  numMacs: 0
              isAdvancedNetworking: false
              isExternal: false
              isNatEnabled: false
              links:
                - href: string
                  rel: string
              migrationState: string
              name: string
              networkFunctionChainReference: string
              networkId: 0
              reservedIpAddresses:
                - prefixLength: 0
                  value: string
              subnetType: string
              virtualSwitchReference: string
              virtualSwitches:
                - bondMode: false
                  clusters:
                    - extId: string
                      gatewayIpAddresses:
                        - prefixLength: 0
                          value: string
                      hosts:
                        - extId: string
                          hostNics:
                            - string
                          internalBridgeName: string
                          ipAddresses:
                            - ips:
                                - prefixLength: 0
                                  value: string
                              prefixLength: 0
                          routeTable: 0
                  description: string
                  extId: string
                  hasDeploymentError: false
                  isDefault: false
                  links:
                    - href: string
                      rel: string
                  metadatas:
                    - categoryIds:
                        - - any
                      ownerReferenceId: string
                      ownerUserName: string
                      projectName: string
                      projectReferenceId: string
                  mtu: 0
                  name: string
                  tenantId: string
              vpcReference: string
              vpcs:
                - commonDhcpOptions:
                    - domainNameServers:
                        - ipv4s:
                            - prefixLength: 0
                              value: string
                          ipv6s:
                            - prefixLength: 0
                              value: string
                  description: string
                  extId: string
                  externalRoutingDomainReference: string
                  externalSubnets:
                    - activeGatewayCount: 0
                      activeGatewayNodes:
                        - nodeId: string
                          nodeIpAddresses:
                            - ipv4s:
                                - prefixLength: 0
                                  value: string
                              ipv6s:
                                - prefixLength: 0
                                  value: string
                      externalIps:
                        - ipv4s:
                            - prefixLength: 0
                              value: string
                          ipv6s:
                            - prefixLength: 0
                              value: string
                      gatewayNodes:
                        - string
                      subnetReference: string
                  externallyRoutablePrefixes:
                    - ipv4s:
                        - ips:
                            - prefixLength: 0
                              value: string
                          prefixLength: 0
                      ipv6s:
                        - ips:
                            - prefixLength: 0
                              value: string
                          prefixLength: 0
                  links:
                    - href: string
                      rel: string
                  metadatas:
                    - categoryIds:
                        - - any
                      ownerReferenceId: string
                      ownerUserName: string
                      projectName: string
                      projectReferenceId: string
                  name: string
                  snatIps:
                    - ipv4s:
                        - prefixLength: 0
                          value: string
                      ipv6s:
                        - prefixLength: 0
                          value: string
                  tenantId: string
                  vpcType: string
        floatingIps:
            - ipv4s:
                - prefixLength: 0
                  value: string
              ipv6s:
                - prefixLength: 0
                  value: string
        loadBalancerSessionReference: string
        name: string
        vmNicReference: string
        vmNics:
            - privateIp: string
        vpcReference: string
        vpcs:
            - commonDhcpOptions:
                - domainNameServers:
                    - ipv4s:
                        - prefixLength: 0
                          value: string
                      ipv6s:
                        - prefixLength: 0
                          value: string
              description: string
              extId: string
              externalRoutingDomainReference: string
              externalSubnets:
                - activeGatewayCount: 0
                  activeGatewayNodes:
                    - nodeId: string
                      nodeIpAddresses:
                        - ipv4s:
                            - prefixLength: 0
                              value: string
                          ipv6s:
                            - prefixLength: 0
                              value: string
                  externalIps:
                    - ipv4s:
                        - prefixLength: 0
                          value: string
                      ipv6s:
                        - prefixLength: 0
                          value: string
                  gatewayNodes:
                    - string
                  subnetReference: string
              externallyRoutablePrefixes:
                - ipv4s:
                    - ips:
                        - prefixLength: 0
                          value: string
                      prefixLength: 0
                  ipv6s:
                    - ips:
                        - prefixLength: 0
                          value: string
                      prefixLength: 0
              links:
                - href: string
                  rel: string
              metadatas:
                - categoryIds:
                    - - any
                  ownerReferenceId: string
                  ownerUserName: string
                  projectName: string
                  projectReferenceId: string
              name: string
              snatIps:
                - ipv4s:
                    - prefixLength: 0
                      value: string
                  ipv6s:
                    - prefixLength: 0
                      value: string
              tenantId: string
              vpcType: string
    

    FloatingIpV2 Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The FloatingIpV2 resource accepts the following input properties:

    Associations List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2Association>
    Association of the Floating IP with either NIC or Private IP
    Description string
    Description for the Floating IP.
    ExtId string
    ExternalSubnetReference string
    External subnet reference for the Floating IP to be allocated in on-prem only.
    ExternalSubnets List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2ExternalSubnet>
    Networking common base object
    FloatingIps List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2FloatingIp>
    Floating IP address.
    LoadBalancerSessionReference string
    Name string
    Name of the floating IP.
    VmNicReference string
    VM NIC reference.
    VmNics List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2VmNic>
    Virtual NIC for projections
    VpcReference string
    VPC reference UUID
    Vpcs List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2Vpc>
    Networking common base object
    Associations []FloatingIpV2AssociationArgs
    Association of the Floating IP with either NIC or Private IP
    Description string
    Description for the Floating IP.
    ExtId string
    ExternalSubnetReference string
    External subnet reference for the Floating IP to be allocated in on-prem only.
    ExternalSubnets []FloatingIpV2ExternalSubnetArgs
    Networking common base object
    FloatingIps []FloatingIpV2FloatingIpArgs
    Floating IP address.
    LoadBalancerSessionReference string
    Name string
    Name of the floating IP.
    VmNicReference string
    VM NIC reference.
    VmNics []FloatingIpV2VmNicArgs
    Virtual NIC for projections
    VpcReference string
    VPC reference UUID
    Vpcs []FloatingIpV2VpcArgs
    Networking common base object
    associations List<FloatingIpV2Association>
    Association of the Floating IP with either NIC or Private IP
    description String
    Description for the Floating IP.
    extId String
    externalSubnetReference String
    External subnet reference for the Floating IP to be allocated in on-prem only.
    externalSubnets List<FloatingIpV2ExternalSubnet>
    Networking common base object
    floatingIps List<FloatingIpV2FloatingIp>
    Floating IP address.
    loadBalancerSessionReference String
    name String
    Name of the floating IP.
    vmNicReference String
    VM NIC reference.
    vmNics List<FloatingIpV2VmNic>
    Virtual NIC for projections
    vpcReference String
    VPC reference UUID
    vpcs List<FloatingIpV2Vpc>
    Networking common base object
    associations FloatingIpV2Association[]
    Association of the Floating IP with either NIC or Private IP
    description string
    Description for the Floating IP.
    extId string
    externalSubnetReference string
    External subnet reference for the Floating IP to be allocated in on-prem only.
    externalSubnets FloatingIpV2ExternalSubnet[]
    Networking common base object
    floatingIps FloatingIpV2FloatingIp[]
    Floating IP address.
    loadBalancerSessionReference string
    name string
    Name of the floating IP.
    vmNicReference string
    VM NIC reference.
    vmNics FloatingIpV2VmNic[]
    Virtual NIC for projections
    vpcReference string
    VPC reference UUID
    vpcs FloatingIpV2Vpc[]
    Networking common base object
    associations Sequence[FloatingIpV2AssociationArgs]
    Association of the Floating IP with either NIC or Private IP
    description str
    Description for the Floating IP.
    ext_id str
    external_subnet_reference str
    External subnet reference for the Floating IP to be allocated in on-prem only.
    external_subnets Sequence[FloatingIpV2ExternalSubnetArgs]
    Networking common base object
    floating_ips Sequence[FloatingIpV2FloatingIpArgs]
    Floating IP address.
    load_balancer_session_reference str
    name str
    Name of the floating IP.
    vm_nic_reference str
    VM NIC reference.
    vm_nics Sequence[FloatingIpV2VmNicArgs]
    Virtual NIC for projections
    vpc_reference str
    VPC reference UUID
    vpcs Sequence[FloatingIpV2VpcArgs]
    Networking common base object
    associations List<Property Map>
    Association of the Floating IP with either NIC or Private IP
    description String
    Description for the Floating IP.
    extId String
    externalSubnetReference String
    External subnet reference for the Floating IP to be allocated in on-prem only.
    externalSubnets List<Property Map>
    Networking common base object
    floatingIps List<Property Map>
    Floating IP address.
    loadBalancerSessionReference String
    name String
    Name of the floating IP.
    vmNicReference String
    VM NIC reference.
    vmNics List<Property Map>
    Virtual NIC for projections
    vpcReference String
    VPC reference UUID
    vpcs List<Property Map>
    Networking common base object

    Outputs

    All input properties are implicitly available as output properties. Additionally, the FloatingIpV2 resource produces the following output properties:

    AssociationStatus string
    Association status of floating IP.
    FloatingIpValue string
    Id string
    The provider-assigned unique ID for this managed resource.
    Links List<PiersKarsenbarg.Nutanix.Outputs.FloatingIpV2Link>
    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 List<PiersKarsenbarg.Nutanix.Outputs.FloatingIpV2Metadata>
    Metadata associated with this resource.
    PrivateIp string
    TenantId string
    A globally unique identifier that represents the tenant that owns this entity.
    AssociationStatus string
    Association status of floating IP.
    FloatingIpValue string
    Id string
    The provider-assigned unique ID for this managed resource.
    Links []FloatingIpV2Link
    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 []FloatingIpV2Metadata
    Metadata associated with this resource.
    PrivateIp string
    TenantId string
    A globally unique identifier that represents the tenant that owns this entity.
    associationStatus String
    Association status of floating IP.
    floatingIpValue String
    id String
    The provider-assigned unique ID for this managed resource.
    links List<FloatingIpV2Link>
    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 List<FloatingIpV2Metadata>
    Metadata associated with this resource.
    privateIp String
    tenantId String
    A globally unique identifier that represents the tenant that owns this entity.
    associationStatus string
    Association status of floating IP.
    floatingIpValue string
    id string
    The provider-assigned unique ID for this managed resource.
    links FloatingIpV2Link[]
    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 FloatingIpV2Metadata[]
    Metadata associated with this resource.
    privateIp string
    tenantId string
    A globally unique identifier that represents the tenant that owns this entity.
    association_status str
    Association status of floating IP.
    floating_ip_value str
    id str
    The provider-assigned unique ID for this managed resource.
    links Sequence[FloatingIpV2Link]
    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 Sequence[FloatingIpV2Metadata]
    Metadata associated with this resource.
    private_ip str
    tenant_id str
    A globally unique identifier that represents the tenant that owns this entity.
    associationStatus String
    Association status of floating IP.
    floatingIpValue String
    id String
    The provider-assigned unique ID for this managed resource.
    links List<Property Map>
    A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    metadatas List<Property Map>
    Metadata associated with this resource.
    privateIp String
    tenantId String
    A globally unique identifier that represents the tenant that owns this entity.

    Look up Existing FloatingIpV2 Resource

    Get an existing FloatingIpV2 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: FloatingIpV2State, opts?: CustomResourceOptions): FloatingIpV2
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            association_status: Optional[str] = None,
            associations: Optional[Sequence[FloatingIpV2AssociationArgs]] = None,
            description: Optional[str] = None,
            ext_id: Optional[str] = None,
            external_subnet_reference: Optional[str] = None,
            external_subnets: Optional[Sequence[FloatingIpV2ExternalSubnetArgs]] = None,
            floating_ip_value: Optional[str] = None,
            floating_ips: Optional[Sequence[FloatingIpV2FloatingIpArgs]] = None,
            links: Optional[Sequence[FloatingIpV2LinkArgs]] = None,
            load_balancer_session_reference: Optional[str] = None,
            metadatas: Optional[Sequence[FloatingIpV2MetadataArgs]] = None,
            name: Optional[str] = None,
            private_ip: Optional[str] = None,
            tenant_id: Optional[str] = None,
            vm_nic_reference: Optional[str] = None,
            vm_nics: Optional[Sequence[FloatingIpV2VmNicArgs]] = None,
            vpc_reference: Optional[str] = None,
            vpcs: Optional[Sequence[FloatingIpV2VpcArgs]] = None) -> FloatingIpV2
    func GetFloatingIpV2(ctx *Context, name string, id IDInput, state *FloatingIpV2State, opts ...ResourceOption) (*FloatingIpV2, error)
    public static FloatingIpV2 Get(string name, Input<string> id, FloatingIpV2State? state, CustomResourceOptions? opts = null)
    public static FloatingIpV2 get(String name, Output<String> id, FloatingIpV2State state, CustomResourceOptions options)
    resources:  _:    type: nutanix:FloatingIpV2    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AssociationStatus string
    Association status of floating IP.
    Associations List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2Association>
    Association of the Floating IP with either NIC or Private IP
    Description string
    Description for the Floating IP.
    ExtId string
    ExternalSubnetReference string
    External subnet reference for the Floating IP to be allocated in on-prem only.
    ExternalSubnets List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2ExternalSubnet>
    Networking common base object
    FloatingIpValue string
    FloatingIps List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2FloatingIp>
    Floating IP address.
    Links List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2Link>
    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.
    LoadBalancerSessionReference string
    Metadatas List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2Metadata>
    Metadata associated with this resource.
    Name string
    Name of the floating IP.
    PrivateIp string
    TenantId string
    A globally unique identifier that represents the tenant that owns this entity.
    VmNicReference string
    VM NIC reference.
    VmNics List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2VmNic>
    Virtual NIC for projections
    VpcReference string
    VPC reference UUID
    Vpcs List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2Vpc>
    Networking common base object
    AssociationStatus string
    Association status of floating IP.
    Associations []FloatingIpV2AssociationArgs
    Association of the Floating IP with either NIC or Private IP
    Description string
    Description for the Floating IP.
    ExtId string
    ExternalSubnetReference string
    External subnet reference for the Floating IP to be allocated in on-prem only.
    ExternalSubnets []FloatingIpV2ExternalSubnetArgs
    Networking common base object
    FloatingIpValue string
    FloatingIps []FloatingIpV2FloatingIpArgs
    Floating IP address.
    Links []FloatingIpV2LinkArgs
    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.
    LoadBalancerSessionReference string
    Metadatas []FloatingIpV2MetadataArgs
    Metadata associated with this resource.
    Name string
    Name of the floating IP.
    PrivateIp string
    TenantId string
    A globally unique identifier that represents the tenant that owns this entity.
    VmNicReference string
    VM NIC reference.
    VmNics []FloatingIpV2VmNicArgs
    Virtual NIC for projections
    VpcReference string
    VPC reference UUID
    Vpcs []FloatingIpV2VpcArgs
    Networking common base object
    associationStatus String
    Association status of floating IP.
    associations List<FloatingIpV2Association>
    Association of the Floating IP with either NIC or Private IP
    description String
    Description for the Floating IP.
    extId String
    externalSubnetReference String
    External subnet reference for the Floating IP to be allocated in on-prem only.
    externalSubnets List<FloatingIpV2ExternalSubnet>
    Networking common base object
    floatingIpValue String
    floatingIps List<FloatingIpV2FloatingIp>
    Floating IP address.
    links List<FloatingIpV2Link>
    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.
    loadBalancerSessionReference String
    metadatas List<FloatingIpV2Metadata>
    Metadata associated with this resource.
    name String
    Name of the floating IP.
    privateIp String
    tenantId String
    A globally unique identifier that represents the tenant that owns this entity.
    vmNicReference String
    VM NIC reference.
    vmNics List<FloatingIpV2VmNic>
    Virtual NIC for projections
    vpcReference String
    VPC reference UUID
    vpcs List<FloatingIpV2Vpc>
    Networking common base object
    associationStatus string
    Association status of floating IP.
    associations FloatingIpV2Association[]
    Association of the Floating IP with either NIC or Private IP
    description string
    Description for the Floating IP.
    extId string
    externalSubnetReference string
    External subnet reference for the Floating IP to be allocated in on-prem only.
    externalSubnets FloatingIpV2ExternalSubnet[]
    Networking common base object
    floatingIpValue string
    floatingIps FloatingIpV2FloatingIp[]
    Floating IP address.
    links FloatingIpV2Link[]
    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.
    loadBalancerSessionReference string
    metadatas FloatingIpV2Metadata[]
    Metadata associated with this resource.
    name string
    Name of the floating IP.
    privateIp string
    tenantId string
    A globally unique identifier that represents the tenant that owns this entity.
    vmNicReference string
    VM NIC reference.
    vmNics FloatingIpV2VmNic[]
    Virtual NIC for projections
    vpcReference string
    VPC reference UUID
    vpcs FloatingIpV2Vpc[]
    Networking common base object
    association_status str
    Association status of floating IP.
    associations Sequence[FloatingIpV2AssociationArgs]
    Association of the Floating IP with either NIC or Private IP
    description str
    Description for the Floating IP.
    ext_id str
    external_subnet_reference str
    External subnet reference for the Floating IP to be allocated in on-prem only.
    external_subnets Sequence[FloatingIpV2ExternalSubnetArgs]
    Networking common base object
    floating_ip_value str
    floating_ips Sequence[FloatingIpV2FloatingIpArgs]
    Floating IP address.
    links Sequence[FloatingIpV2LinkArgs]
    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.
    load_balancer_session_reference str
    metadatas Sequence[FloatingIpV2MetadataArgs]
    Metadata associated with this resource.
    name str
    Name of the floating IP.
    private_ip str
    tenant_id str
    A globally unique identifier that represents the tenant that owns this entity.
    vm_nic_reference str
    VM NIC reference.
    vm_nics Sequence[FloatingIpV2VmNicArgs]
    Virtual NIC for projections
    vpc_reference str
    VPC reference UUID
    vpcs Sequence[FloatingIpV2VpcArgs]
    Networking common base object
    associationStatus String
    Association status of floating IP.
    associations List<Property Map>
    Association of the Floating IP with either NIC or Private IP
    description String
    Description for the Floating IP.
    extId String
    externalSubnetReference String
    External subnet reference for the Floating IP to be allocated in on-prem only.
    externalSubnets List<Property Map>
    Networking common base object
    floatingIpValue String
    floatingIps List<Property Map>
    Floating IP address.
    links List<Property Map>
    A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    loadBalancerSessionReference String
    metadatas List<Property Map>
    Metadata associated with this resource.
    name String
    Name of the floating IP.
    privateIp String
    tenantId String
    A globally unique identifier that represents the tenant that owns this entity.
    vmNicReference String
    VM NIC reference.
    vmNics List<Property Map>
    Virtual NIC for projections
    vpcReference String
    VPC reference UUID
    vpcs List<Property Map>
    Networking common base object

    Supporting Types

    FloatingIpV2Association, FloatingIpV2AssociationArgs

    PrivateIpAssociations List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2AssociationPrivateIpAssociation>
    Association of Floating IP with private IP

    • private_ip_association.vpc_reference: (Required) VPC in which the private IP exists.
    • private_ip_association.private_ip: (Required) An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
    VmNicAssociations List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2AssociationVmNicAssociation>
    Association of Floating IP with nic

    • vm_nic_association.vm_nic_reference: (Required) VM NIC reference.
    • vm_nic_association.vpc_reference: (Optional) VPC reference to which the VM NIC subnet belongs.
    PrivateIpAssociations []FloatingIpV2AssociationPrivateIpAssociation
    Association of Floating IP with private IP

    • private_ip_association.vpc_reference: (Required) VPC in which the private IP exists.
    • private_ip_association.private_ip: (Required) An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
    VmNicAssociations []FloatingIpV2AssociationVmNicAssociation
    Association of Floating IP with nic

    • vm_nic_association.vm_nic_reference: (Required) VM NIC reference.
    • vm_nic_association.vpc_reference: (Optional) VPC reference to which the VM NIC subnet belongs.
    privateIpAssociations List<FloatingIpV2AssociationPrivateIpAssociation>
    Association of Floating IP with private IP

    • private_ip_association.vpc_reference: (Required) VPC in which the private IP exists.
    • private_ip_association.private_ip: (Required) An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
    vmNicAssociations List<FloatingIpV2AssociationVmNicAssociation>
    Association of Floating IP with nic

    • vm_nic_association.vm_nic_reference: (Required) VM NIC reference.
    • vm_nic_association.vpc_reference: (Optional) VPC reference to which the VM NIC subnet belongs.
    privateIpAssociations FloatingIpV2AssociationPrivateIpAssociation[]
    Association of Floating IP with private IP

    • private_ip_association.vpc_reference: (Required) VPC in which the private IP exists.
    • private_ip_association.private_ip: (Required) An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
    vmNicAssociations FloatingIpV2AssociationVmNicAssociation[]
    Association of Floating IP with nic

    • vm_nic_association.vm_nic_reference: (Required) VM NIC reference.
    • vm_nic_association.vpc_reference: (Optional) VPC reference to which the VM NIC subnet belongs.
    private_ip_associations Sequence[FloatingIpV2AssociationPrivateIpAssociation]
    Association of Floating IP with private IP

    • private_ip_association.vpc_reference: (Required) VPC in which the private IP exists.
    • private_ip_association.private_ip: (Required) An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
    vm_nic_associations Sequence[FloatingIpV2AssociationVmNicAssociation]
    Association of Floating IP with nic

    • vm_nic_association.vm_nic_reference: (Required) VM NIC reference.
    • vm_nic_association.vpc_reference: (Optional) VPC reference to which the VM NIC subnet belongs.
    privateIpAssociations List<Property Map>
    Association of Floating IP with private IP

    • private_ip_association.vpc_reference: (Required) VPC in which the private IP exists.
    • private_ip_association.private_ip: (Required) An unique address that identifies a device on the internet or a local network in IPv4 or IPv6 format.
    vmNicAssociations List<Property Map>
    Association of Floating IP with nic

    • vm_nic_association.vm_nic_reference: (Required) VM NIC reference.
    • vm_nic_association.vpc_reference: (Optional) VPC reference to which the VM NIC subnet belongs.

    FloatingIpV2AssociationPrivateIpAssociation, FloatingIpV2AssociationPrivateIpAssociationArgs

    FloatingIpV2AssociationPrivateIpAssociationPrivateIp, FloatingIpV2AssociationPrivateIpAssociationPrivateIpArgs

    ipv4s List<Property Map>
    Reference to IP Configuration
    ipv6s List<Property Map>
    Reference to IP Configuration

    FloatingIpV2AssociationPrivateIpAssociationPrivateIpIpv4, FloatingIpV2AssociationPrivateIpAssociationPrivateIpIpv4Args

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

    FloatingIpV2AssociationPrivateIpAssociationPrivateIpIpv6, FloatingIpV2AssociationPrivateIpAssociationPrivateIpIpv6Args

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

    FloatingIpV2AssociationVmNicAssociation, FloatingIpV2AssociationVmNicAssociationArgs

    VmNicReference string
    VM NIC reference.
    VpcReference string
    VPC reference UUID
    VmNicReference string
    VM NIC reference.
    VpcReference string
    VPC reference UUID
    vmNicReference String
    VM NIC reference.
    vpcReference String
    VPC reference UUID
    vmNicReference string
    VM NIC reference.
    vpcReference string
    VPC reference UUID
    vm_nic_reference str
    VM NIC reference.
    vpc_reference str
    VPC reference UUID
    vmNicReference String
    VM NIC reference.
    vpcReference String
    VPC reference UUID

    FloatingIpV2ExternalSubnet, FloatingIpV2ExternalSubnetArgs

    ExtId string
    BridgeName string
    ClusterName string
    ClusterReference string
    Description string
    Description for the Floating IP.
    DhcpOptions List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2ExternalSubnetDhcpOption>
    DynamicIpAddresses List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2ExternalSubnetDynamicIpAddress>
    HypervisorType string
    IpConfigs List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2ExternalSubnetIpConfig>
    IpPrefix string
    IpUsages List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2ExternalSubnetIpUsage>
    IsAdvancedNetworking bool
    IsExternal bool
    IsNatEnabled bool
    Links List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2ExternalSubnetLink>
    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 string
    Name string
    Name of the floating IP.
    NetworkFunctionChainReference string
    NetworkId int
    ReservedIpAddresses List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2ExternalSubnetReservedIpAddress>
    SubnetType string
    VirtualSwitchReference string
    VirtualSwitches List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2ExternalSubnetVirtualSwitch>
    VpcReference string
    VPC reference UUID
    Vpcs List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2ExternalSubnetVpc>
    Networking common base object
    ExtId string
    BridgeName string
    ClusterName string
    ClusterReference string
    Description string
    Description for the Floating IP.
    DhcpOptions []FloatingIpV2ExternalSubnetDhcpOption
    DynamicIpAddresses []FloatingIpV2ExternalSubnetDynamicIpAddress
    HypervisorType string
    IpConfigs []FloatingIpV2ExternalSubnetIpConfig
    IpPrefix string
    IpUsages []FloatingIpV2ExternalSubnetIpUsage
    IsAdvancedNetworking bool
    IsExternal bool
    IsNatEnabled bool
    Links []FloatingIpV2ExternalSubnetLink
    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 string
    Name string
    Name of the floating IP.
    NetworkFunctionChainReference string
    NetworkId int
    ReservedIpAddresses []FloatingIpV2ExternalSubnetReservedIpAddress
    SubnetType string
    VirtualSwitchReference string
    VirtualSwitches []FloatingIpV2ExternalSubnetVirtualSwitch
    VpcReference string
    VPC reference UUID
    Vpcs []FloatingIpV2ExternalSubnetVpc
    Networking common base object
    extId String
    bridgeName String
    clusterName String
    clusterReference String
    description String
    Description for the Floating IP.
    dhcpOptions List<FloatingIpV2ExternalSubnetDhcpOption>
    dynamicIpAddresses List<FloatingIpV2ExternalSubnetDynamicIpAddress>
    hypervisorType String
    ipConfigs List<FloatingIpV2ExternalSubnetIpConfig>
    ipPrefix String
    ipUsages List<FloatingIpV2ExternalSubnetIpUsage>
    isAdvancedNetworking Boolean
    isExternal Boolean
    isNatEnabled Boolean
    links List<FloatingIpV2ExternalSubnetLink>
    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 String
    name String
    Name of the floating IP.
    networkFunctionChainReference String
    networkId Integer
    reservedIpAddresses List<FloatingIpV2ExternalSubnetReservedIpAddress>
    subnetType String
    virtualSwitchReference String
    virtualSwitches List<FloatingIpV2ExternalSubnetVirtualSwitch>
    vpcReference String
    VPC reference UUID
    vpcs List<FloatingIpV2ExternalSubnetVpc>
    Networking common base object
    extId string
    bridgeName string
    clusterName string
    clusterReference string
    description string
    Description for the Floating IP.
    dhcpOptions FloatingIpV2ExternalSubnetDhcpOption[]
    dynamicIpAddresses FloatingIpV2ExternalSubnetDynamicIpAddress[]
    hypervisorType string
    ipConfigs FloatingIpV2ExternalSubnetIpConfig[]
    ipPrefix string
    ipUsages FloatingIpV2ExternalSubnetIpUsage[]
    isAdvancedNetworking boolean
    isExternal boolean
    isNatEnabled boolean
    links FloatingIpV2ExternalSubnetLink[]
    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 string
    name string
    Name of the floating IP.
    networkFunctionChainReference string
    networkId number
    reservedIpAddresses FloatingIpV2ExternalSubnetReservedIpAddress[]
    subnetType string
    virtualSwitchReference string
    virtualSwitches FloatingIpV2ExternalSubnetVirtualSwitch[]
    vpcReference string
    VPC reference UUID
    vpcs FloatingIpV2ExternalSubnetVpc[]
    Networking common base object
    ext_id str
    bridge_name str
    cluster_name str
    cluster_reference str
    description str
    Description for the Floating IP.
    dhcp_options Sequence[FloatingIpV2ExternalSubnetDhcpOption]
    dynamic_ip_addresses Sequence[FloatingIpV2ExternalSubnetDynamicIpAddress]
    hypervisor_type str
    ip_configs Sequence[FloatingIpV2ExternalSubnetIpConfig]
    ip_prefix str
    ip_usages Sequence[FloatingIpV2ExternalSubnetIpUsage]
    is_advanced_networking bool
    is_external bool
    is_nat_enabled bool
    links Sequence[FloatingIpV2ExternalSubnetLink]
    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 str
    name str
    Name of the floating IP.
    network_function_chain_reference str
    network_id int
    reserved_ip_addresses Sequence[FloatingIpV2ExternalSubnetReservedIpAddress]
    subnet_type str
    virtual_switch_reference str
    virtual_switches Sequence[FloatingIpV2ExternalSubnetVirtualSwitch]
    vpc_reference str
    VPC reference UUID
    vpcs Sequence[FloatingIpV2ExternalSubnetVpc]
    Networking common base object
    extId String
    bridgeName String
    clusterName String
    clusterReference String
    description String
    Description for the Floating IP.
    dhcpOptions List<Property Map>
    dynamicIpAddresses List<Property Map>
    hypervisorType String
    ipConfigs List<Property Map>
    ipPrefix String
    ipUsages List<Property Map>
    isAdvancedNetworking Boolean
    isExternal Boolean
    isNatEnabled Boolean
    links List<Property Map>
    A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    migrationState String
    name String
    Name of the floating IP.
    networkFunctionChainReference String
    networkId Number
    reservedIpAddresses List<Property Map>
    subnetType String
    virtualSwitchReference String
    virtualSwitches List<Property Map>
    vpcReference String
    VPC reference UUID
    vpcs List<Property Map>
    Networking common base object

    FloatingIpV2ExternalSubnetDhcpOption, FloatingIpV2ExternalSubnetDhcpOptionArgs

    FloatingIpV2ExternalSubnetDhcpOptionDomainNameServer, FloatingIpV2ExternalSubnetDhcpOptionDomainNameServerArgs

    ipv4s List<Property Map>
    Reference to IP Configuration
    ipv6s List<Property Map>
    Reference to IP Configuration

    FloatingIpV2ExternalSubnetDhcpOptionDomainNameServerIpv4, FloatingIpV2ExternalSubnetDhcpOptionDomainNameServerIpv4Args

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

    FloatingIpV2ExternalSubnetDhcpOptionDomainNameServerIpv6, FloatingIpV2ExternalSubnetDhcpOptionDomainNameServerIpv6Args

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

    FloatingIpV2ExternalSubnetDhcpOptionNtpServer, FloatingIpV2ExternalSubnetDhcpOptionNtpServerArgs

    ipv4s List<Property Map>
    Reference to IP Configuration
    ipv6s List<Property Map>
    Reference to IP Configuration

    FloatingIpV2ExternalSubnetDhcpOptionNtpServerIpv4, FloatingIpV2ExternalSubnetDhcpOptionNtpServerIpv4Args

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

    FloatingIpV2ExternalSubnetDhcpOptionNtpServerIpv6, FloatingIpV2ExternalSubnetDhcpOptionNtpServerIpv6Args

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

    FloatingIpV2ExternalSubnetDynamicIpAddress, FloatingIpV2ExternalSubnetDynamicIpAddressArgs

    ipv4s List<Property Map>
    Reference to IP Configuration
    ipv6s List<Property Map>
    Reference to IP Configuration

    FloatingIpV2ExternalSubnetDynamicIpAddressIpv4, FloatingIpV2ExternalSubnetDynamicIpAddressIpv4Args

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

    FloatingIpV2ExternalSubnetDynamicIpAddressIpv6, FloatingIpV2ExternalSubnetDynamicIpAddressIpv6Args

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

    FloatingIpV2ExternalSubnetIpConfig, FloatingIpV2ExternalSubnetIpConfigArgs

    Ipv4s []FloatingIpV2ExternalSubnetIpConfigIpv4
    Reference to IP Configuration
    Ipv6s []FloatingIpV2ExternalSubnetIpConfigIpv6
    Reference to IP Configuration
    ipv4s FloatingIpV2ExternalSubnetIpConfigIpv4[]
    Reference to IP Configuration
    ipv6s FloatingIpV2ExternalSubnetIpConfigIpv6[]
    Reference to IP Configuration
    ipv4s List<Property Map>
    Reference to IP Configuration
    ipv6s List<Property Map>
    Reference to IP Configuration

    FloatingIpV2ExternalSubnetIpConfigIpv4, FloatingIpV2ExternalSubnetIpConfigIpv4Args

    FloatingIpV2ExternalSubnetIpConfigIpv4DefaultGatewayIp, FloatingIpV2ExternalSubnetIpConfigIpv4DefaultGatewayIpArgs

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

    FloatingIpV2ExternalSubnetIpConfigIpv4DhcpServerAddress, FloatingIpV2ExternalSubnetIpConfigIpv4DhcpServerAddressArgs

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

    FloatingIpV2ExternalSubnetIpConfigIpv4IpSubnet, FloatingIpV2ExternalSubnetIpConfigIpv4IpSubnetArgs

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

    FloatingIpV2ExternalSubnetIpConfigIpv4IpSubnetIp, FloatingIpV2ExternalSubnetIpConfigIpv4IpSubnetIpArgs

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

    FloatingIpV2ExternalSubnetIpConfigIpv4PoolList, FloatingIpV2ExternalSubnetIpConfigIpv4PoolListArgs

    FloatingIpV2ExternalSubnetIpConfigIpv4PoolListEndIp, FloatingIpV2ExternalSubnetIpConfigIpv4PoolListEndIpArgs

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

    FloatingIpV2ExternalSubnetIpConfigIpv4PoolListStartIp, FloatingIpV2ExternalSubnetIpConfigIpv4PoolListStartIpArgs

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

    FloatingIpV2ExternalSubnetIpConfigIpv6, FloatingIpV2ExternalSubnetIpConfigIpv6Args

    FloatingIpV2ExternalSubnetIpConfigIpv6DefaultGatewayIp, FloatingIpV2ExternalSubnetIpConfigIpv6DefaultGatewayIpArgs

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

    FloatingIpV2ExternalSubnetIpConfigIpv6DhcpServerAddress, FloatingIpV2ExternalSubnetIpConfigIpv6DhcpServerAddressArgs

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

    FloatingIpV2ExternalSubnetIpConfigIpv6IpSubnet, FloatingIpV2ExternalSubnetIpConfigIpv6IpSubnetArgs

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

    FloatingIpV2ExternalSubnetIpConfigIpv6IpSubnetIp, FloatingIpV2ExternalSubnetIpConfigIpv6IpSubnetIpArgs

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

    FloatingIpV2ExternalSubnetIpConfigIpv6PoolList, FloatingIpV2ExternalSubnetIpConfigIpv6PoolListArgs

    FloatingIpV2ExternalSubnetIpConfigIpv6PoolListEndIp, FloatingIpV2ExternalSubnetIpConfigIpv6PoolListEndIpArgs

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

    FloatingIpV2ExternalSubnetIpConfigIpv6PoolListStartIp, FloatingIpV2ExternalSubnetIpConfigIpv6PoolListStartIpArgs

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

    FloatingIpV2ExternalSubnetIpUsage, FloatingIpV2ExternalSubnetIpUsageArgs

    FloatingIpV2ExternalSubnetIpUsageIpPoolUsage, FloatingIpV2ExternalSubnetIpUsageIpPoolUsageArgs

    FloatingIpV2ExternalSubnetIpUsageIpPoolUsageRange, FloatingIpV2ExternalSubnetIpUsageIpPoolUsageRangeArgs

    FloatingIpV2ExternalSubnetIpUsageIpPoolUsageRangeEndIp, FloatingIpV2ExternalSubnetIpUsageIpPoolUsageRangeEndIpArgs

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

    FloatingIpV2ExternalSubnetIpUsageIpPoolUsageRangeStartIp, FloatingIpV2ExternalSubnetIpUsageIpPoolUsageRangeStartIpArgs

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

    FloatingIpV2ExternalSubnetReservedIpAddress, FloatingIpV2ExternalSubnetReservedIpAddressArgs

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

    FloatingIpV2ExternalSubnetVirtualSwitch, FloatingIpV2ExternalSubnetVirtualSwitchArgs

    BondMode bool
    Clusters List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2ExternalSubnetVirtualSwitchCluster>
    Description string
    Description for the Floating IP.
    ExtId string
    HasDeploymentError bool
    IsDefault bool
    Links List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2ExternalSubnetVirtualSwitchLink>
    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 List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2ExternalSubnetVirtualSwitchMetadata>
    Metadata associated with this resource.
    Mtu int
    Name string
    Name of the floating IP.
    TenantId string
    A globally unique identifier that represents the tenant that owns this entity.
    BondMode bool
    Clusters []FloatingIpV2ExternalSubnetVirtualSwitchCluster
    Description string
    Description for the Floating IP.
    ExtId string
    HasDeploymentError bool
    IsDefault bool
    Links []FloatingIpV2ExternalSubnetVirtualSwitchLink
    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 []FloatingIpV2ExternalSubnetVirtualSwitchMetadata
    Metadata associated with this resource.
    Mtu int
    Name string
    Name of the floating IP.
    TenantId string
    A globally unique identifier that represents the tenant that owns this entity.
    bondMode Boolean
    clusters List<FloatingIpV2ExternalSubnetVirtualSwitchCluster>
    description String
    Description for the Floating IP.
    extId String
    hasDeploymentError Boolean
    isDefault Boolean
    links List<FloatingIpV2ExternalSubnetVirtualSwitchLink>
    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 List<FloatingIpV2ExternalSubnetVirtualSwitchMetadata>
    Metadata associated with this resource.
    mtu Integer
    name String
    Name of the floating IP.
    tenantId String
    A globally unique identifier that represents the tenant that owns this entity.
    bondMode boolean
    clusters FloatingIpV2ExternalSubnetVirtualSwitchCluster[]
    description string
    Description for the Floating IP.
    extId string
    hasDeploymentError boolean
    isDefault boolean
    links FloatingIpV2ExternalSubnetVirtualSwitchLink[]
    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 FloatingIpV2ExternalSubnetVirtualSwitchMetadata[]
    Metadata associated with this resource.
    mtu number
    name string
    Name of the floating IP.
    tenantId string
    A globally unique identifier that represents the tenant that owns this entity.
    bond_mode bool
    clusters Sequence[FloatingIpV2ExternalSubnetVirtualSwitchCluster]
    description str
    Description for the Floating IP.
    ext_id str
    has_deployment_error bool
    is_default bool
    links Sequence[FloatingIpV2ExternalSubnetVirtualSwitchLink]
    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 Sequence[FloatingIpV2ExternalSubnetVirtualSwitchMetadata]
    Metadata associated with this resource.
    mtu int
    name str
    Name of the floating IP.
    tenant_id str
    A globally unique identifier that represents the tenant that owns this entity.
    bondMode Boolean
    clusters List<Property Map>
    description String
    Description for the Floating IP.
    extId String
    hasDeploymentError Boolean
    isDefault Boolean
    links List<Property Map>
    A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    metadatas List<Property Map>
    Metadata associated with this resource.
    mtu Number
    name String
    Name of the floating IP.
    tenantId String
    A globally unique identifier that represents the tenant that owns this entity.

    FloatingIpV2ExternalSubnetVirtualSwitchCluster, FloatingIpV2ExternalSubnetVirtualSwitchClusterArgs

    FloatingIpV2ExternalSubnetVirtualSwitchClusterGatewayIpAddress, FloatingIpV2ExternalSubnetVirtualSwitchClusterGatewayIpAddressArgs

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

    FloatingIpV2ExternalSubnetVirtualSwitchClusterHost, FloatingIpV2ExternalSubnetVirtualSwitchClusterHostArgs

    FloatingIpV2ExternalSubnetVirtualSwitchClusterHostIpAddress, FloatingIpV2ExternalSubnetVirtualSwitchClusterHostIpAddressArgs

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

    FloatingIpV2ExternalSubnetVirtualSwitchClusterHostIpAddressIp, FloatingIpV2ExternalSubnetVirtualSwitchClusterHostIpAddressIpArgs

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

    FloatingIpV2ExternalSubnetVirtualSwitchMetadata, FloatingIpV2ExternalSubnetVirtualSwitchMetadataArgs

    CategoryIds List<ImmutableArray<object>>
    OwnerReferenceId string
    OwnerUserName string
    ProjectName string
    ProjectReferenceId string
    categoryIds List<List<Object>>
    ownerReferenceId String
    ownerUserName String
    projectName String
    projectReferenceId String

    FloatingIpV2ExternalSubnetVpc, FloatingIpV2ExternalSubnetVpcArgs

    CommonDhcpOptions List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcCommonDhcpOption>
    Description string
    Description for the Floating IP.
    ExtId string
    ExternalRoutingDomainReference string
    ExternalSubnets List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcExternalSubnet>
    ExternallyRoutablePrefixes List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefix>
    Links List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcLink>
    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 List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcMetadata>
    Metadata associated with this resource.
    Name string
    Name of the floating IP.
    SnatIps List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2ExternalSubnetVpcSnatIp>
    TenantId string
    A globally unique identifier that represents the tenant that owns this entity.
    VpcType string
    CommonDhcpOptions []FloatingIpV2ExternalSubnetVpcCommonDhcpOption
    Description string
    Description for the Floating IP.
    ExtId string
    ExternalRoutingDomainReference string
    ExternalSubnets []FloatingIpV2ExternalSubnetVpcExternalSubnet
    ExternallyRoutablePrefixes []FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefix
    Links []FloatingIpV2ExternalSubnetVpcLink
    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 []FloatingIpV2ExternalSubnetVpcMetadata
    Metadata associated with this resource.
    Name string
    Name of the floating IP.
    SnatIps []FloatingIpV2ExternalSubnetVpcSnatIp
    TenantId string
    A globally unique identifier that represents the tenant that owns this entity.
    VpcType string
    commonDhcpOptions List<FloatingIpV2ExternalSubnetVpcCommonDhcpOption>
    description String
    Description for the Floating IP.
    extId String
    externalRoutingDomainReference String
    externalSubnets List<FloatingIpV2ExternalSubnetVpcExternalSubnet>
    externallyRoutablePrefixes List<FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefix>
    links List<FloatingIpV2ExternalSubnetVpcLink>
    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 List<FloatingIpV2ExternalSubnetVpcMetadata>
    Metadata associated with this resource.
    name String
    Name of the floating IP.
    snatIps List<FloatingIpV2ExternalSubnetVpcSnatIp>
    tenantId String
    A globally unique identifier that represents the tenant that owns this entity.
    vpcType String
    commonDhcpOptions FloatingIpV2ExternalSubnetVpcCommonDhcpOption[]
    description string
    Description for the Floating IP.
    extId string
    externalRoutingDomainReference string
    externalSubnets FloatingIpV2ExternalSubnetVpcExternalSubnet[]
    externallyRoutablePrefixes FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefix[]
    links FloatingIpV2ExternalSubnetVpcLink[]
    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 FloatingIpV2ExternalSubnetVpcMetadata[]
    Metadata associated with this resource.
    name string
    Name of the floating IP.
    snatIps FloatingIpV2ExternalSubnetVpcSnatIp[]
    tenantId string
    A globally unique identifier that represents the tenant that owns this entity.
    vpcType string
    common_dhcp_options Sequence[FloatingIpV2ExternalSubnetVpcCommonDhcpOption]
    description str
    Description for the Floating IP.
    ext_id str
    external_routing_domain_reference str
    external_subnets Sequence[FloatingIpV2ExternalSubnetVpcExternalSubnet]
    externally_routable_prefixes Sequence[FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefix]
    links Sequence[FloatingIpV2ExternalSubnetVpcLink]
    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 Sequence[FloatingIpV2ExternalSubnetVpcMetadata]
    Metadata associated with this resource.
    name str
    Name of the floating IP.
    snat_ips Sequence[FloatingIpV2ExternalSubnetVpcSnatIp]
    tenant_id str
    A globally unique identifier that represents the tenant that owns this entity.
    vpc_type str
    commonDhcpOptions List<Property Map>
    description String
    Description for the Floating IP.
    extId String
    externalRoutingDomainReference String
    externalSubnets List<Property Map>
    externallyRoutablePrefixes List<Property Map>
    links List<Property Map>
    A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    metadatas List<Property Map>
    Metadata associated with this resource.
    name String
    Name of the floating IP.
    snatIps List<Property Map>
    tenantId String
    A globally unique identifier that represents the tenant that owns this entity.
    vpcType String

    FloatingIpV2ExternalSubnetVpcCommonDhcpOption, FloatingIpV2ExternalSubnetVpcCommonDhcpOptionArgs

    FloatingIpV2ExternalSubnetVpcCommonDhcpOptionDomainNameServer, FloatingIpV2ExternalSubnetVpcCommonDhcpOptionDomainNameServerArgs

    ipv4s List<Property Map>
    Reference to IP Configuration
    ipv6s List<Property Map>
    Reference to IP Configuration

    FloatingIpV2ExternalSubnetVpcCommonDhcpOptionDomainNameServerIpv4, FloatingIpV2ExternalSubnetVpcCommonDhcpOptionDomainNameServerIpv4Args

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

    FloatingIpV2ExternalSubnetVpcCommonDhcpOptionDomainNameServerIpv6, FloatingIpV2ExternalSubnetVpcCommonDhcpOptionDomainNameServerIpv6Args

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

    FloatingIpV2ExternalSubnetVpcExternalSubnet, FloatingIpV2ExternalSubnetVpcExternalSubnetArgs

    FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNode, FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeArgs

    FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddress, FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddressArgs

    ipv4s List<Property Map>
    Reference to IP Configuration
    ipv6s List<Property Map>
    Reference to IP Configuration

    FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv4, FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv4Args

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

    FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv6, FloatingIpV2ExternalSubnetVpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv6Args

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

    FloatingIpV2ExternalSubnetVpcExternalSubnetExternalIp, FloatingIpV2ExternalSubnetVpcExternalSubnetExternalIpArgs

    ipv4s List<Property Map>
    Reference to IP Configuration
    ipv6s List<Property Map>
    Reference to IP Configuration

    FloatingIpV2ExternalSubnetVpcExternalSubnetExternalIpIpv4, FloatingIpV2ExternalSubnetVpcExternalSubnetExternalIpIpv4Args

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

    FloatingIpV2ExternalSubnetVpcExternalSubnetExternalIpIpv6, FloatingIpV2ExternalSubnetVpcExternalSubnetExternalIpIpv6Args

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

    FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefix, FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixArgs

    ipv4s List<Property Map>
    Reference to IP Configuration
    ipv6s List<Property Map>
    Reference to IP Configuration

    FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv4, FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv4Args

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

    FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv4Ip, FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv4IpArgs

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

    FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv6, FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv6Args

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

    FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv6Ip, FloatingIpV2ExternalSubnetVpcExternallyRoutablePrefixIpv6IpArgs

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

    FloatingIpV2ExternalSubnetVpcMetadata, FloatingIpV2ExternalSubnetVpcMetadataArgs

    CategoryIds List<ImmutableArray<object>>
    OwnerReferenceId string
    OwnerUserName string
    ProjectName string
    ProjectReferenceId string
    categoryIds List<List<Object>>
    ownerReferenceId String
    ownerUserName String
    projectName String
    projectReferenceId String

    FloatingIpV2ExternalSubnetVpcSnatIp, FloatingIpV2ExternalSubnetVpcSnatIpArgs

    ipv4s List<Property Map>
    Reference to IP Configuration
    ipv6s List<Property Map>
    Reference to IP Configuration

    FloatingIpV2ExternalSubnetVpcSnatIpIpv4, FloatingIpV2ExternalSubnetVpcSnatIpIpv4Args

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

    FloatingIpV2ExternalSubnetVpcSnatIpIpv6, FloatingIpV2ExternalSubnetVpcSnatIpIpv6Args

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

    FloatingIpV2FloatingIp, FloatingIpV2FloatingIpArgs

    Ipv4s []FloatingIpV2FloatingIpIpv4
    Reference to IP Configuration
    Ipv6s []FloatingIpV2FloatingIpIpv6
    Reference to IP Configuration
    ipv4s List<FloatingIpV2FloatingIpIpv4>
    Reference to IP Configuration
    ipv6s List<FloatingIpV2FloatingIpIpv6>
    Reference to IP Configuration
    ipv4s FloatingIpV2FloatingIpIpv4[]
    Reference to IP Configuration
    ipv6s FloatingIpV2FloatingIpIpv6[]
    Reference to IP Configuration
    ipv4s Sequence[FloatingIpV2FloatingIpIpv4]
    Reference to IP Configuration
    ipv6s Sequence[FloatingIpV2FloatingIpIpv6]
    Reference to IP Configuration
    ipv4s List<Property Map>
    Reference to IP Configuration
    ipv6s List<Property Map>
    Reference to IP Configuration

    FloatingIpV2FloatingIpIpv4, FloatingIpV2FloatingIpIpv4Args

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

    FloatingIpV2FloatingIpIpv6, FloatingIpV2FloatingIpIpv6Args

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

    FloatingIpV2Metadata, FloatingIpV2MetadataArgs

    CategoryIds List<ImmutableArray<object>>
    OwnerReferenceId string
    OwnerUserName string
    ProjectName string
    ProjectReferenceId string
    categoryIds List<List<Object>>
    ownerReferenceId String
    ownerUserName String
    projectName String
    projectReferenceId String

    FloatingIpV2VmNic, FloatingIpV2VmNicArgs

    PrivateIp string
    PrivateIp string
    privateIp String
    privateIp string
    privateIp String

    FloatingIpV2Vpc, FloatingIpV2VpcArgs

    CommonDhcpOptions List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2VpcCommonDhcpOption>
    Description string
    Description for the Floating IP.
    ExtId string
    ExternalRoutingDomainReference string
    ExternalSubnets List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2VpcExternalSubnet>
    ExternallyRoutablePrefixes List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2VpcExternallyRoutablePrefix>
    Links List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2VpcLink>
    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 List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2VpcMetadata>
    Metadata associated with this resource.
    Name string
    Name of the floating IP.
    SnatIps List<PiersKarsenbarg.Nutanix.Inputs.FloatingIpV2VpcSnatIp>
    TenantId string
    A globally unique identifier that represents the tenant that owns this entity.
    VpcType string
    CommonDhcpOptions []FloatingIpV2VpcCommonDhcpOption
    Description string
    Description for the Floating IP.
    ExtId string
    ExternalRoutingDomainReference string
    ExternalSubnets []FloatingIpV2VpcExternalSubnet
    ExternallyRoutablePrefixes []FloatingIpV2VpcExternallyRoutablePrefix
    Links []FloatingIpV2VpcLink
    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 []FloatingIpV2VpcMetadata
    Metadata associated with this resource.
    Name string
    Name of the floating IP.
    SnatIps []FloatingIpV2VpcSnatIp
    TenantId string
    A globally unique identifier that represents the tenant that owns this entity.
    VpcType string
    commonDhcpOptions List<FloatingIpV2VpcCommonDhcpOption>
    description String
    Description for the Floating IP.
    extId String
    externalRoutingDomainReference String
    externalSubnets List<FloatingIpV2VpcExternalSubnet>
    externallyRoutablePrefixes List<FloatingIpV2VpcExternallyRoutablePrefix>
    links List<FloatingIpV2VpcLink>
    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 List<FloatingIpV2VpcMetadata>
    Metadata associated with this resource.
    name String
    Name of the floating IP.
    snatIps List<FloatingIpV2VpcSnatIp>
    tenantId String
    A globally unique identifier that represents the tenant that owns this entity.
    vpcType String
    commonDhcpOptions FloatingIpV2VpcCommonDhcpOption[]
    description string
    Description for the Floating IP.
    extId string
    externalRoutingDomainReference string
    externalSubnets FloatingIpV2VpcExternalSubnet[]
    externallyRoutablePrefixes FloatingIpV2VpcExternallyRoutablePrefix[]
    links FloatingIpV2VpcLink[]
    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 FloatingIpV2VpcMetadata[]
    Metadata associated with this resource.
    name string
    Name of the floating IP.
    snatIps FloatingIpV2VpcSnatIp[]
    tenantId string
    A globally unique identifier that represents the tenant that owns this entity.
    vpcType string
    common_dhcp_options Sequence[FloatingIpV2VpcCommonDhcpOption]
    description str
    Description for the Floating IP.
    ext_id str
    external_routing_domain_reference str
    external_subnets Sequence[FloatingIpV2VpcExternalSubnet]
    externally_routable_prefixes Sequence[FloatingIpV2VpcExternallyRoutablePrefix]
    links Sequence[FloatingIpV2VpcLink]
    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 Sequence[FloatingIpV2VpcMetadata]
    Metadata associated with this resource.
    name str
    Name of the floating IP.
    snat_ips Sequence[FloatingIpV2VpcSnatIp]
    tenant_id str
    A globally unique identifier that represents the tenant that owns this entity.
    vpc_type str
    commonDhcpOptions List<Property Map>
    description String
    Description for the Floating IP.
    extId String
    externalRoutingDomainReference String
    externalSubnets List<Property Map>
    externallyRoutablePrefixes List<Property Map>
    links List<Property Map>
    A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    metadatas List<Property Map>
    Metadata associated with this resource.
    name String
    Name of the floating IP.
    snatIps List<Property Map>
    tenantId String
    A globally unique identifier that represents the tenant that owns this entity.
    vpcType String

    FloatingIpV2VpcCommonDhcpOption, FloatingIpV2VpcCommonDhcpOptionArgs

    FloatingIpV2VpcCommonDhcpOptionDomainNameServer, FloatingIpV2VpcCommonDhcpOptionDomainNameServerArgs

    ipv4s List<Property Map>
    Reference to IP Configuration
    ipv6s List<Property Map>
    Reference to IP Configuration

    FloatingIpV2VpcCommonDhcpOptionDomainNameServerIpv4, FloatingIpV2VpcCommonDhcpOptionDomainNameServerIpv4Args

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

    FloatingIpV2VpcCommonDhcpOptionDomainNameServerIpv6, FloatingIpV2VpcCommonDhcpOptionDomainNameServerIpv6Args

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

    FloatingIpV2VpcExternalSubnet, FloatingIpV2VpcExternalSubnetArgs

    FloatingIpV2VpcExternalSubnetActiveGatewayNode, FloatingIpV2VpcExternalSubnetActiveGatewayNodeArgs

    FloatingIpV2VpcExternalSubnetActiveGatewayNodeNodeIpAddress, FloatingIpV2VpcExternalSubnetActiveGatewayNodeNodeIpAddressArgs

    ipv4s List<Property Map>
    Reference to IP Configuration
    ipv6s List<Property Map>
    Reference to IP Configuration

    FloatingIpV2VpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv4, FloatingIpV2VpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv4Args

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

    FloatingIpV2VpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv6, FloatingIpV2VpcExternalSubnetActiveGatewayNodeNodeIpAddressIpv6Args

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

    FloatingIpV2VpcExternalSubnetExternalIp, FloatingIpV2VpcExternalSubnetExternalIpArgs

    ipv4s List<Property Map>
    Reference to IP Configuration
    ipv6s List<Property Map>
    Reference to IP Configuration

    FloatingIpV2VpcExternalSubnetExternalIpIpv4, FloatingIpV2VpcExternalSubnetExternalIpIpv4Args

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

    FloatingIpV2VpcExternalSubnetExternalIpIpv6, FloatingIpV2VpcExternalSubnetExternalIpIpv6Args

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

    FloatingIpV2VpcExternallyRoutablePrefix, FloatingIpV2VpcExternallyRoutablePrefixArgs

    ipv4s List<Property Map>
    Reference to IP Configuration
    ipv6s List<Property Map>
    Reference to IP Configuration

    FloatingIpV2VpcExternallyRoutablePrefixIpv4, FloatingIpV2VpcExternallyRoutablePrefixIpv4Args

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

    FloatingIpV2VpcExternallyRoutablePrefixIpv4Ip, FloatingIpV2VpcExternallyRoutablePrefixIpv4IpArgs

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

    FloatingIpV2VpcExternallyRoutablePrefixIpv6, FloatingIpV2VpcExternallyRoutablePrefixIpv6Args

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

    FloatingIpV2VpcExternallyRoutablePrefixIpv6Ip, FloatingIpV2VpcExternallyRoutablePrefixIpv6IpArgs

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

    FloatingIpV2VpcMetadata, FloatingIpV2VpcMetadataArgs

    CategoryIds List<ImmutableArray<object>>
    OwnerReferenceId string
    OwnerUserName string
    ProjectName string
    ProjectReferenceId string
    categoryIds List<List<Object>>
    ownerReferenceId String
    ownerUserName String
    projectName String
    projectReferenceId String

    FloatingIpV2VpcSnatIp, FloatingIpV2VpcSnatIpArgs

    Ipv4s []FloatingIpV2VpcSnatIpIpv4
    Reference to IP Configuration
    Ipv6s []FloatingIpV2VpcSnatIpIpv6
    Reference to IP Configuration
    ipv4s List<FloatingIpV2VpcSnatIpIpv4>
    Reference to IP Configuration
    ipv6s List<FloatingIpV2VpcSnatIpIpv6>
    Reference to IP Configuration
    ipv4s FloatingIpV2VpcSnatIpIpv4[]
    Reference to IP Configuration
    ipv6s FloatingIpV2VpcSnatIpIpv6[]
    Reference to IP Configuration
    ipv4s Sequence[FloatingIpV2VpcSnatIpIpv4]
    Reference to IP Configuration
    ipv6s Sequence[FloatingIpV2VpcSnatIpIpv6]
    Reference to IP Configuration
    ipv4s List<Property Map>
    Reference to IP Configuration
    ipv6s List<Property Map>
    Reference to IP Configuration

    FloatingIpV2VpcSnatIpIpv4, FloatingIpV2VpcSnatIpIpv4Args

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

    FloatingIpV2VpcSnatIpIpv6, FloatingIpV2VpcSnatIpIpv6Args

    PrefixLength int
    Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
    Value string
    value of address
    PrefixLength int
    Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
    Value string
    value of address
    prefixLength Integer
    Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
    value String
    value of address
    prefixLength number
    Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
    value string
    value of address
    prefix_length int
    Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
    value str
    value of address
    prefixLength Number
    Prefix length of the network to which this host IPv4 address belongs. Default value is 32.
    value 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 logo
    Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg