nutanix.NdbNetwork
Explore with Pulumi AI
Provides a resource to create VLANs and IP address pools that are managed both in NDB and outside NDB.
Example Usage
resource to create network for NDB
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
const name = new nutanix.NdbNetwork("name", {
clusterId: "{{ cluster_id }}",
gateway: "{{ gatway for the vlan }}",
ipPools: [{
endIp: "{{ ending address range }}",
startIp: "{{ starting address range}}",
}],
primaryDns: " {{ primary dns for the vlan }}",
secondaryDns: "{{secondary dns for the vlan }}",
subnetMask: "{{ subnet mask for the vlan}}",
type: "Static",
});
import pulumi
import pulumi_nutanix as nutanix
name = nutanix.NdbNetwork("name",
cluster_id="{{ cluster_id }}",
gateway="{{ gatway for the vlan }}",
ip_pools=[{
"end_ip": "{{ ending address range }}",
"start_ip": "{{ starting address range}}",
}],
primary_dns=" {{ primary dns for the vlan }}",
secondary_dns="{{secondary dns for the vlan }}",
subnet_mask="{{ subnet mask for the vlan}}",
type="Static")
package main
import (
"github.com/pierskarsenbarg/pulumi-nutanix/sdk/go/nutanix"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := nutanix.NewNdbNetwork(ctx, "name", &nutanix.NdbNetworkArgs{
ClusterId: pulumi.String("{{ cluster_id }}"),
Gateway: pulumi.String("{{ gatway for the vlan }}"),
IpPools: nutanix.NdbNetworkIpPoolArray{
&nutanix.NdbNetworkIpPoolArgs{
EndIp: pulumi.String("{{ ending address range }}"),
StartIp: pulumi.String("{{ starting address range}}"),
},
},
PrimaryDns: pulumi.String(" {{ primary dns for the vlan }}"),
SecondaryDns: pulumi.String("{{secondary dns for the vlan }}"),
SubnetMask: pulumi.String("{{ subnet mask for the vlan}}"),
Type: pulumi.String("Static"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nutanix = PiersKarsenbarg.Nutanix;
return await Deployment.RunAsync(() =>
{
var name = new Nutanix.NdbNetwork("name", new()
{
ClusterId = "{{ cluster_id }}",
Gateway = "{{ gatway for the vlan }}",
IpPools = new[]
{
new Nutanix.Inputs.NdbNetworkIpPoolArgs
{
EndIp = "{{ ending address range }}",
StartIp = "{{ starting address range}}",
},
},
PrimaryDns = " {{ primary dns for the vlan }}",
SecondaryDns = "{{secondary dns for the vlan }}",
SubnetMask = "{{ subnet mask for the vlan}}",
Type = "Static",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.NdbNetwork;
import com.pulumi.nutanix.NdbNetworkArgs;
import com.pulumi.nutanix.inputs.NdbNetworkIpPoolArgs;
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 name = new NdbNetwork("name", NdbNetworkArgs.builder()
.clusterId("{{ cluster_id }}")
.gateway("{{ gatway for the vlan }}")
.ipPools(NdbNetworkIpPoolArgs.builder()
.endIp("{{ ending address range }}")
.startIp("{{ starting address range}}")
.build())
.primaryDns(" {{ primary dns for the vlan }}")
.secondaryDns("{{secondary dns for the vlan }}")
.subnetMask("{{ subnet mask for the vlan}}")
.type("Static")
.build());
}
}
resources:
name:
type: nutanix:NdbNetwork
properties:
clusterId: '{{ cluster_id }}'
gateway: '{{ gatway for the vlan }}'
ipPools:
- endIp: '{{ ending address range }}'
startIp: '{{ starting address range}}'
primaryDns: ' {{ primary dns for the vlan }}'
secondaryDns: '{{secondary dns for the vlan }}'
subnetMask: '{{ subnet mask for the vlan}}'
type: Static
Create NdbNetwork Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NdbNetwork(name: string, args: NdbNetworkArgs, opts?: CustomResourceOptions);
@overload
def NdbNetwork(resource_name: str,
args: NdbNetworkArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NdbNetwork(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_id: Optional[str] = None,
type: Optional[str] = None,
dns_domain: Optional[str] = None,
gateway: Optional[str] = None,
ip_pools: Optional[Sequence[NdbNetworkIpPoolArgs]] = None,
name: Optional[str] = None,
primary_dns: Optional[str] = None,
secondary_dns: Optional[str] = None,
subnet_mask: Optional[str] = None)
func NewNdbNetwork(ctx *Context, name string, args NdbNetworkArgs, opts ...ResourceOption) (*NdbNetwork, error)
public NdbNetwork(string name, NdbNetworkArgs args, CustomResourceOptions? opts = null)
public NdbNetwork(String name, NdbNetworkArgs args)
public NdbNetwork(String name, NdbNetworkArgs args, CustomResourceOptions options)
type: nutanix:NdbNetwork
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 NdbNetworkArgs
- 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 NdbNetworkArgs
- 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 NdbNetworkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NdbNetworkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NdbNetworkArgs
- 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 ndbNetworkResource = new Nutanix.NdbNetwork("ndbNetworkResource", new()
{
ClusterId = "string",
Type = "string",
DnsDomain = "string",
Gateway = "string",
IpPools = new[]
{
new Nutanix.Inputs.NdbNetworkIpPoolArgs
{
Addresses = new[]
{
new Nutanix.Inputs.NdbNetworkIpPoolAddressArgs
{
Ip = "string",
Status = "string",
},
},
EndIp = "string",
Id = "string",
ModifiedBy = "string",
StartIp = "string",
},
},
Name = "string",
PrimaryDns = "string",
SecondaryDns = "string",
SubnetMask = "string",
});
example, err := nutanix.NewNdbNetwork(ctx, "ndbNetworkResource", &nutanix.NdbNetworkArgs{
ClusterId: pulumi.String("string"),
Type: pulumi.String("string"),
DnsDomain: pulumi.String("string"),
Gateway: pulumi.String("string"),
IpPools: nutanix.NdbNetworkIpPoolArray{
&nutanix.NdbNetworkIpPoolArgs{
Addresses: nutanix.NdbNetworkIpPoolAddressArray{
&nutanix.NdbNetworkIpPoolAddressArgs{
Ip: pulumi.String("string"),
Status: pulumi.String("string"),
},
},
EndIp: pulumi.String("string"),
Id: pulumi.String("string"),
ModifiedBy: pulumi.String("string"),
StartIp: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
PrimaryDns: pulumi.String("string"),
SecondaryDns: pulumi.String("string"),
SubnetMask: pulumi.String("string"),
})
var ndbNetworkResource = new NdbNetwork("ndbNetworkResource", NdbNetworkArgs.builder()
.clusterId("string")
.type("string")
.dnsDomain("string")
.gateway("string")
.ipPools(NdbNetworkIpPoolArgs.builder()
.addresses(NdbNetworkIpPoolAddressArgs.builder()
.ip("string")
.status("string")
.build())
.endIp("string")
.id("string")
.modifiedBy("string")
.startIp("string")
.build())
.name("string")
.primaryDns("string")
.secondaryDns("string")
.subnetMask("string")
.build());
ndb_network_resource = nutanix.NdbNetwork("ndbNetworkResource",
cluster_id="string",
type="string",
dns_domain="string",
gateway="string",
ip_pools=[{
"addresses": [{
"ip": "string",
"status": "string",
}],
"end_ip": "string",
"id": "string",
"modified_by": "string",
"start_ip": "string",
}],
name="string",
primary_dns="string",
secondary_dns="string",
subnet_mask="string")
const ndbNetworkResource = new nutanix.NdbNetwork("ndbNetworkResource", {
clusterId: "string",
type: "string",
dnsDomain: "string",
gateway: "string",
ipPools: [{
addresses: [{
ip: "string",
status: "string",
}],
endIp: "string",
id: "string",
modifiedBy: "string",
startIp: "string",
}],
name: "string",
primaryDns: "string",
secondaryDns: "string",
subnetMask: "string",
});
type: nutanix:NdbNetwork
properties:
clusterId: string
dnsDomain: string
gateway: string
ipPools:
- addresses:
- ip: string
status: string
endIp: string
id: string
modifiedBy: string
startIp: string
name: string
primaryDns: string
secondaryDns: string
subnetMask: string
type: string
NdbNetwork 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 NdbNetwork resource accepts the following input properties:
- Cluster
Id string - Select the Nutanix cluster on which you want to add the VLAN.
- Type string
- Vlan type. Supports [DHCP, Static]
- Dns
Domain string - dns domain for vlan. (Static IP address assignment only)
- Gateway string
- Gateway for vlan. Supports in Static IP address assignment only
- Ip
Pools List<PiersKarsenbarg. Nutanix. Inputs. Ndb Network Ip Pool> - Manage IP Address Pool in NDB option if you want to assign static IP addresses to your database server VMs
- Name string
- Name of the vlan to be attached in NDB
- Primary
Dns string - primary dns for vlan. (Static IP address assignment only)
- Secondary
Dns string - secondary dns for vlan. (Static IP address assignment only)
- Subnet
Mask string - Subnet mask for vlan. (Static IP address assignment only)
- Cluster
Id string - Select the Nutanix cluster on which you want to add the VLAN.
- Type string
- Vlan type. Supports [DHCP, Static]
- Dns
Domain string - dns domain for vlan. (Static IP address assignment only)
- Gateway string
- Gateway for vlan. Supports in Static IP address assignment only
- Ip
Pools []NdbNetwork Ip Pool Args - Manage IP Address Pool in NDB option if you want to assign static IP addresses to your database server VMs
- Name string
- Name of the vlan to be attached in NDB
- Primary
Dns string - primary dns for vlan. (Static IP address assignment only)
- Secondary
Dns string - secondary dns for vlan. (Static IP address assignment only)
- Subnet
Mask string - Subnet mask for vlan. (Static IP address assignment only)
- cluster
Id String - Select the Nutanix cluster on which you want to add the VLAN.
- type String
- Vlan type. Supports [DHCP, Static]
- dns
Domain String - dns domain for vlan. (Static IP address assignment only)
- gateway String
- Gateway for vlan. Supports in Static IP address assignment only
- ip
Pools List<NdbNetwork Ip Pool> - Manage IP Address Pool in NDB option if you want to assign static IP addresses to your database server VMs
- name String
- Name of the vlan to be attached in NDB
- primary
Dns String - primary dns for vlan. (Static IP address assignment only)
- secondary
Dns String - secondary dns for vlan. (Static IP address assignment only)
- subnet
Mask String - Subnet mask for vlan. (Static IP address assignment only)
- cluster
Id string - Select the Nutanix cluster on which you want to add the VLAN.
- type string
- Vlan type. Supports [DHCP, Static]
- dns
Domain string - dns domain for vlan. (Static IP address assignment only)
- gateway string
- Gateway for vlan. Supports in Static IP address assignment only
- ip
Pools NdbNetwork Ip Pool[] - Manage IP Address Pool in NDB option if you want to assign static IP addresses to your database server VMs
- name string
- Name of the vlan to be attached in NDB
- primary
Dns string - primary dns for vlan. (Static IP address assignment only)
- secondary
Dns string - secondary dns for vlan. (Static IP address assignment only)
- subnet
Mask string - Subnet mask for vlan. (Static IP address assignment only)
- cluster_
id str - Select the Nutanix cluster on which you want to add the VLAN.
- type str
- Vlan type. Supports [DHCP, Static]
- dns_
domain str - dns domain for vlan. (Static IP address assignment only)
- gateway str
- Gateway for vlan. Supports in Static IP address assignment only
- ip_
pools Sequence[NdbNetwork Ip Pool Args] - Manage IP Address Pool in NDB option if you want to assign static IP addresses to your database server VMs
- name str
- Name of the vlan to be attached in NDB
- primary_
dns str - primary dns for vlan. (Static IP address assignment only)
- secondary_
dns str - secondary dns for vlan. (Static IP address assignment only)
- subnet_
mask str - Subnet mask for vlan. (Static IP address assignment only)
- cluster
Id String - Select the Nutanix cluster on which you want to add the VLAN.
- type String
- Vlan type. Supports [DHCP, Static]
- dns
Domain String - dns domain for vlan. (Static IP address assignment only)
- gateway String
- Gateway for vlan. Supports in Static IP address assignment only
- ip
Pools List<Property Map> - Manage IP Address Pool in NDB option if you want to assign static IP addresses to your database server VMs
- name String
- Name of the vlan to be attached in NDB
- primary
Dns String - primary dns for vlan. (Static IP address assignment only)
- secondary
Dns String - secondary dns for vlan. (Static IP address assignment only)
- subnet
Mask String - Subnet mask for vlan. (Static IP address assignment only)
Outputs
All input properties are implicitly available as output properties. Additionally, the NdbNetwork resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Managed bool
- Managed by NDB or not
- Properties
List<Piers
Karsenbarg. Nutanix. Outputs. Ndb Network Property> - properties of network
- Properties
Maps List<PiersKarsenbarg. Nutanix. Outputs. Ndb Network Properties Map> - properties map of network
- Stretched
Vlan stringId - stretched vlan id
- Id string
- The provider-assigned unique ID for this managed resource.
- Managed bool
- Managed by NDB or not
- Properties
[]Ndb
Network Property - properties of network
- Properties
Maps []NdbNetwork Properties Map - properties map of network
- Stretched
Vlan stringId - stretched vlan id
- id String
- The provider-assigned unique ID for this managed resource.
- managed Boolean
- Managed by NDB or not
- properties
List<Ndb
Network Property> - properties of network
- properties
Maps List<NdbNetwork Properties Map> - properties map of network
- stretched
Vlan StringId - stretched vlan id
- id string
- The provider-assigned unique ID for this managed resource.
- managed boolean
- Managed by NDB or not
- properties
Ndb
Network Property[] - properties of network
- properties
Maps NdbNetwork Properties Map[] - properties map of network
- stretched
Vlan stringId - stretched vlan id
- id str
- The provider-assigned unique ID for this managed resource.
- managed bool
- Managed by NDB or not
- properties
Sequence[Ndb
Network Property] - properties of network
- properties_
maps Sequence[NdbNetwork Properties Map] - properties map of network
- stretched_
vlan_ strid - stretched vlan id
- id String
- The provider-assigned unique ID for this managed resource.
- managed Boolean
- Managed by NDB or not
- properties List<Property Map>
- properties of network
- properties
Maps List<Property Map> - properties map of network
- stretched
Vlan StringId - stretched vlan id
Look up Existing NdbNetwork Resource
Get an existing NdbNetwork 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?: NdbNetworkState, opts?: CustomResourceOptions): NdbNetwork
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cluster_id: Optional[str] = None,
dns_domain: Optional[str] = None,
gateway: Optional[str] = None,
ip_pools: Optional[Sequence[NdbNetworkIpPoolArgs]] = None,
managed: Optional[bool] = None,
name: Optional[str] = None,
primary_dns: Optional[str] = None,
properties: Optional[Sequence[NdbNetworkPropertyArgs]] = None,
properties_maps: Optional[Sequence[NdbNetworkPropertiesMapArgs]] = None,
secondary_dns: Optional[str] = None,
stretched_vlan_id: Optional[str] = None,
subnet_mask: Optional[str] = None,
type: Optional[str] = None) -> NdbNetwork
func GetNdbNetwork(ctx *Context, name string, id IDInput, state *NdbNetworkState, opts ...ResourceOption) (*NdbNetwork, error)
public static NdbNetwork Get(string name, Input<string> id, NdbNetworkState? state, CustomResourceOptions? opts = null)
public static NdbNetwork get(String name, Output<String> id, NdbNetworkState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Cluster
Id string - Select the Nutanix cluster on which you want to add the VLAN.
- Dns
Domain string - dns domain for vlan. (Static IP address assignment only)
- Gateway string
- Gateway for vlan. Supports in Static IP address assignment only
- Ip
Pools List<PiersKarsenbarg. Nutanix. Inputs. Ndb Network Ip Pool> - Manage IP Address Pool in NDB option if you want to assign static IP addresses to your database server VMs
- Managed bool
- Managed by NDB or not
- Name string
- Name of the vlan to be attached in NDB
- Primary
Dns string - primary dns for vlan. (Static IP address assignment only)
- Properties
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Network Property> - properties of network
- Properties
Maps List<PiersKarsenbarg. Nutanix. Inputs. Ndb Network Properties Map> - properties map of network
- Secondary
Dns string - secondary dns for vlan. (Static IP address assignment only)
- Stretched
Vlan stringId - stretched vlan id
- Subnet
Mask string - Subnet mask for vlan. (Static IP address assignment only)
- Type string
- Vlan type. Supports [DHCP, Static]
- Cluster
Id string - Select the Nutanix cluster on which you want to add the VLAN.
- Dns
Domain string - dns domain for vlan. (Static IP address assignment only)
- Gateway string
- Gateway for vlan. Supports in Static IP address assignment only
- Ip
Pools []NdbNetwork Ip Pool Args - Manage IP Address Pool in NDB option if you want to assign static IP addresses to your database server VMs
- Managed bool
- Managed by NDB or not
- Name string
- Name of the vlan to be attached in NDB
- Primary
Dns string - primary dns for vlan. (Static IP address assignment only)
- Properties
[]Ndb
Network Property Args - properties of network
- Properties
Maps []NdbNetwork Properties Map Args - properties map of network
- Secondary
Dns string - secondary dns for vlan. (Static IP address assignment only)
- Stretched
Vlan stringId - stretched vlan id
- Subnet
Mask string - Subnet mask for vlan. (Static IP address assignment only)
- Type string
- Vlan type. Supports [DHCP, Static]
- cluster
Id String - Select the Nutanix cluster on which you want to add the VLAN.
- dns
Domain String - dns domain for vlan. (Static IP address assignment only)
- gateway String
- Gateway for vlan. Supports in Static IP address assignment only
- ip
Pools List<NdbNetwork Ip Pool> - Manage IP Address Pool in NDB option if you want to assign static IP addresses to your database server VMs
- managed Boolean
- Managed by NDB or not
- name String
- Name of the vlan to be attached in NDB
- primary
Dns String - primary dns for vlan. (Static IP address assignment only)
- properties
List<Ndb
Network Property> - properties of network
- properties
Maps List<NdbNetwork Properties Map> - properties map of network
- secondary
Dns String - secondary dns for vlan. (Static IP address assignment only)
- stretched
Vlan StringId - stretched vlan id
- subnet
Mask String - Subnet mask for vlan. (Static IP address assignment only)
- type String
- Vlan type. Supports [DHCP, Static]
- cluster
Id string - Select the Nutanix cluster on which you want to add the VLAN.
- dns
Domain string - dns domain for vlan. (Static IP address assignment only)
- gateway string
- Gateway for vlan. Supports in Static IP address assignment only
- ip
Pools NdbNetwork Ip Pool[] - Manage IP Address Pool in NDB option if you want to assign static IP addresses to your database server VMs
- managed boolean
- Managed by NDB or not
- name string
- Name of the vlan to be attached in NDB
- primary
Dns string - primary dns for vlan. (Static IP address assignment only)
- properties
Ndb
Network Property[] - properties of network
- properties
Maps NdbNetwork Properties Map[] - properties map of network
- secondary
Dns string - secondary dns for vlan. (Static IP address assignment only)
- stretched
Vlan stringId - stretched vlan id
- subnet
Mask string - Subnet mask for vlan. (Static IP address assignment only)
- type string
- Vlan type. Supports [DHCP, Static]
- cluster_
id str - Select the Nutanix cluster on which you want to add the VLAN.
- dns_
domain str - dns domain for vlan. (Static IP address assignment only)
- gateway str
- Gateway for vlan. Supports in Static IP address assignment only
- ip_
pools Sequence[NdbNetwork Ip Pool Args] - Manage IP Address Pool in NDB option if you want to assign static IP addresses to your database server VMs
- managed bool
- Managed by NDB or not
- name str
- Name of the vlan to be attached in NDB
- primary_
dns str - primary dns for vlan. (Static IP address assignment only)
- properties
Sequence[Ndb
Network Property Args] - properties of network
- properties_
maps Sequence[NdbNetwork Properties Map Args] - properties map of network
- secondary_
dns str - secondary dns for vlan. (Static IP address assignment only)
- stretched_
vlan_ strid - stretched vlan id
- subnet_
mask str - Subnet mask for vlan. (Static IP address assignment only)
- type str
- Vlan type. Supports [DHCP, Static]
- cluster
Id String - Select the Nutanix cluster on which you want to add the VLAN.
- dns
Domain String - dns domain for vlan. (Static IP address assignment only)
- gateway String
- Gateway for vlan. Supports in Static IP address assignment only
- ip
Pools List<Property Map> - Manage IP Address Pool in NDB option if you want to assign static IP addresses to your database server VMs
- managed Boolean
- Managed by NDB or not
- name String
- Name of the vlan to be attached in NDB
- primary
Dns String - primary dns for vlan. (Static IP address assignment only)
- properties List<Property Map>
- properties of network
- properties
Maps List<Property Map> - properties map of network
- secondary
Dns String - secondary dns for vlan. (Static IP address assignment only)
- stretched
Vlan StringId - stretched vlan id
- subnet
Mask String - Subnet mask for vlan. (Static IP address assignment only)
- type String
- Vlan type. Supports [DHCP, Static]
Supporting Types
NdbNetworkIpPool, NdbNetworkIpPoolArgs
- Addresses
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Network Ip Pool Address> - End
Ip string - ending IP address range for new database servers
- Id string
- Modified
By string - Start
Ip string - starting IP address range for new database servers
- Addresses
[]Ndb
Network Ip Pool Address - End
Ip string - ending IP address range for new database servers
- Id string
- Modified
By string - Start
Ip string - starting IP address range for new database servers
- addresses
List<Ndb
Network Ip Pool Address> - end
Ip String - ending IP address range for new database servers
- id String
- modified
By String - start
Ip String - starting IP address range for new database servers
- addresses
Ndb
Network Ip Pool Address[] - end
Ip string - ending IP address range for new database servers
- id string
- modified
By string - start
Ip string - starting IP address range for new database servers
- addresses
Sequence[Ndb
Network Ip Pool Address] - end_
ip str - ending IP address range for new database servers
- id str
- modified_
by str - start_
ip str - starting IP address range for new database servers
- addresses List<Property Map>
- end
Ip String - ending IP address range for new database servers
- id String
- modified
By String - start
Ip String - starting IP address range for new database servers
NdbNetworkIpPoolAddress, NdbNetworkIpPoolAddressArgs
NdbNetworkPropertiesMap, NdbNetworkPropertiesMapArgs
- Vlan
Gateway string - Vlan
Primary stringDns - Vlan
Secondary stringDns - Vlan
Subnet stringMask
- Vlan
Gateway string - Vlan
Primary stringDns - Vlan
Secondary stringDns - Vlan
Subnet stringMask
- vlan
Gateway String - vlan
Primary StringDns - vlan
Secondary StringDns - vlan
Subnet StringMask
- vlan
Gateway string - vlan
Primary stringDns - vlan
Secondary stringDns - vlan
Subnet stringMask
- vlan_
gateway str - vlan_
primary_ strdns - vlan_
secondary_ strdns - vlan_
subnet_ strmask
- vlan
Gateway String - vlan
Primary StringDns - vlan
Secondary StringDns - vlan
Subnet StringMask
NdbNetworkProperty, NdbNetworkPropertyArgs
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.