nutanix.NdbStretchedVlan
Explore with Pulumi AI
Provides a resource to create stretched vlans based on the input parameters.
Example Usage
resource to add stretched vlan in NDB
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
const name = new nutanix.NdbStretchedVlan("name", {
description: "vlan desc updated",
type: "Static",
vlanIds: [
"{{ vlan_id_1 }}",
"{{ vlan_id_2 }}",
],
});
import pulumi
import pulumi_nutanix as nutanix
name = nutanix.NdbStretchedVlan("name",
description="vlan desc updated",
type="Static",
vlan_ids=[
"{{ vlan_id_1 }}",
"{{ vlan_id_2 }}",
])
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.NewNdbStretchedVlan(ctx, "name", &nutanix.NdbStretchedVlanArgs{
Description: pulumi.String("vlan desc updated"),
Type: pulumi.String("Static"),
VlanIds: pulumi.StringArray{
pulumi.String("{{ vlan_id_1 }}"),
pulumi.String("{{ vlan_id_2 }}"),
},
})
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.NdbStretchedVlan("name", new()
{
Description = "vlan desc updated",
Type = "Static",
VlanIds = new[]
{
"{{ vlan_id_1 }}",
"{{ vlan_id_2 }}",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.NdbStretchedVlan;
import com.pulumi.nutanix.NdbStretchedVlanArgs;
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 NdbStretchedVlan("name", NdbStretchedVlanArgs.builder()
.description("vlan desc updated")
.type("Static")
.vlanIds(
"{{ vlan_id_1 }}",
"{{ vlan_id_2 }}")
.build());
}
}
resources:
name:
type: nutanix:NdbStretchedVlan
properties:
description: vlan desc updated
type: Static
vlanIds:
- '{{ vlan_id_1 }}'
- '{{ vlan_id_2 }}'
resource to update the strteched vlan with new gateway and subnet mask
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
const name = new nutanix.NdbStretchedVlan("name", {
description: "vlan desc updated",
metadata: {
gateway: "{{ gateway of vlans }}",
subnetMask: "{{ subnet mask of vlans }}",
},
type: "Static",
vlanIds: [
"{{ vlan_id_1 }}",
"{{ vlan_id_2 }}",
],
});
import pulumi
import pulumi_nutanix as nutanix
name = nutanix.NdbStretchedVlan("name",
description="vlan desc updated",
metadata=nutanix.NdbStretchedVlanMetadataArgs(
gateway="{{ gateway of vlans }}",
subnet_mask="{{ subnet mask of vlans }}",
),
type="Static",
vlan_ids=[
"{{ vlan_id_1 }}",
"{{ vlan_id_2 }}",
])
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.NewNdbStretchedVlan(ctx, "name", &nutanix.NdbStretchedVlanArgs{
Description: pulumi.String("vlan desc updated"),
Metadata: &nutanix.NdbStretchedVlanMetadataArgs{
Gateway: pulumi.String("{{ gateway of vlans }}"),
SubnetMask: pulumi.String("{{ subnet mask of vlans }}"),
},
Type: pulumi.String("Static"),
VlanIds: pulumi.StringArray{
pulumi.String("{{ vlan_id_1 }}"),
pulumi.String("{{ vlan_id_2 }}"),
},
})
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.NdbStretchedVlan("name", new()
{
Description = "vlan desc updated",
Metadata = new Nutanix.Inputs.NdbStretchedVlanMetadataArgs
{
Gateway = "{{ gateway of vlans }}",
SubnetMask = "{{ subnet mask of vlans }}",
},
Type = "Static",
VlanIds = new[]
{
"{{ vlan_id_1 }}",
"{{ vlan_id_2 }}",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.NdbStretchedVlan;
import com.pulumi.nutanix.NdbStretchedVlanArgs;
import com.pulumi.nutanix.inputs.NdbStretchedVlanMetadataArgs;
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 NdbStretchedVlan("name", NdbStretchedVlanArgs.builder()
.description("vlan desc updated")
.metadata(NdbStretchedVlanMetadataArgs.builder()
.gateway("{{ gateway of vlans }}")
.subnetMask("{{ subnet mask of vlans }}")
.build())
.type("Static")
.vlanIds(
"{{ vlan_id_1 }}",
"{{ vlan_id_2 }}")
.build());
}
}
resources:
name:
type: nutanix:NdbStretchedVlan
properties:
description: vlan desc updated
metadata:
gateway: '{{ gateway of vlans }}'
subnetMask: '{{ subnet mask of vlans }}'
type: Static
vlanIds:
- '{{ vlan_id_1 }}'
- '{{ vlan_id_2 }}'
Create NdbStretchedVlan Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NdbStretchedVlan(name: string, args: NdbStretchedVlanArgs, opts?: CustomResourceOptions);
@overload
def NdbStretchedVlan(resource_name: str,
args: NdbStretchedVlanArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NdbStretchedVlan(resource_name: str,
opts: Optional[ResourceOptions] = None,
type: Optional[str] = None,
vlan_ids: Optional[Sequence[str]] = None,
description: Optional[str] = None,
metadata: Optional[NdbStretchedVlanMetadataArgs] = None,
name: Optional[str] = None)
func NewNdbStretchedVlan(ctx *Context, name string, args NdbStretchedVlanArgs, opts ...ResourceOption) (*NdbStretchedVlan, error)
public NdbStretchedVlan(string name, NdbStretchedVlanArgs args, CustomResourceOptions? opts = null)
public NdbStretchedVlan(String name, NdbStretchedVlanArgs args)
public NdbStretchedVlan(String name, NdbStretchedVlanArgs args, CustomResourceOptions options)
type: nutanix:NdbStretchedVlan
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 NdbStretchedVlanArgs
- 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 NdbStretchedVlanArgs
- 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 NdbStretchedVlanArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NdbStretchedVlanArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NdbStretchedVlanArgs
- 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 ndbStretchedVlanResource = new Nutanix.NdbStretchedVlan("ndbStretchedVlanResource", new()
{
Type = "string",
VlanIds = new[]
{
"string",
},
Description = "string",
Metadata = new Nutanix.Inputs.NdbStretchedVlanMetadataArgs
{
Gateway = "string",
SubnetMask = "string",
},
Name = "string",
});
example, err := nutanix.NewNdbStretchedVlan(ctx, "ndbStretchedVlanResource", &nutanix.NdbStretchedVlanArgs{
Type: pulumi.String("string"),
VlanIds: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
Metadata: &nutanix.NdbStretchedVlanMetadataArgs{
Gateway: pulumi.String("string"),
SubnetMask: pulumi.String("string"),
},
Name: pulumi.String("string"),
})
var ndbStretchedVlanResource = new NdbStretchedVlan("ndbStretchedVlanResource", NdbStretchedVlanArgs.builder()
.type("string")
.vlanIds("string")
.description("string")
.metadata(NdbStretchedVlanMetadataArgs.builder()
.gateway("string")
.subnetMask("string")
.build())
.name("string")
.build());
ndb_stretched_vlan_resource = nutanix.NdbStretchedVlan("ndbStretchedVlanResource",
type="string",
vlan_ids=["string"],
description="string",
metadata=nutanix.NdbStretchedVlanMetadataArgs(
gateway="string",
subnet_mask="string",
),
name="string")
const ndbStretchedVlanResource = new nutanix.NdbStretchedVlan("ndbStretchedVlanResource", {
type: "string",
vlanIds: ["string"],
description: "string",
metadata: {
gateway: "string",
subnetMask: "string",
},
name: "string",
});
type: nutanix:NdbStretchedVlan
properties:
description: string
metadata:
gateway: string
subnetMask: string
name: string
type: string
vlanIds:
- string
NdbStretchedVlan Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The NdbStretchedVlan resource accepts the following input properties:
- Type string
- type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
- Vlan
Ids List<string> - list of vlan ids to be added in NDB
- Description string
- Description of stretched vlan
- Metadata
Piers
Karsenbarg. Nutanix. Inputs. Ndb Stretched Vlan Metadata - Update the stretched VLAN Gateway and Subnet Mask IP address
metadata.gateway
: Update the gateway of stretched vlanmetadata.subnet_mask
: Update the subnet_mask of stretched vlan
- Name string
- name for the stretched VLAN
- Type string
- type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
- Vlan
Ids []string - list of vlan ids to be added in NDB
- Description string
- Description of stretched vlan
- Metadata
Ndb
Stretched Vlan Metadata Args - Update the stretched VLAN Gateway and Subnet Mask IP address
metadata.gateway
: Update the gateway of stretched vlanmetadata.subnet_mask
: Update the subnet_mask of stretched vlan
- Name string
- name for the stretched VLAN
- type String
- type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
- vlan
Ids List<String> - list of vlan ids to be added in NDB
- description String
- Description of stretched vlan
- metadata
Ndb
Stretched Vlan Metadata - Update the stretched VLAN Gateway and Subnet Mask IP address
metadata.gateway
: Update the gateway of stretched vlanmetadata.subnet_mask
: Update the subnet_mask of stretched vlan
- name String
- name for the stretched VLAN
- type string
- type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
- vlan
Ids string[] - list of vlan ids to be added in NDB
- description string
- Description of stretched vlan
- metadata
Ndb
Stretched Vlan Metadata - Update the stretched VLAN Gateway and Subnet Mask IP address
metadata.gateway
: Update the gateway of stretched vlanmetadata.subnet_mask
: Update the subnet_mask of stretched vlan
- name string
- name for the stretched VLAN
- type str
- type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
- vlan_
ids Sequence[str] - list of vlan ids to be added in NDB
- description str
- Description of stretched vlan
- metadata
Ndb
Stretched Vlan Metadata Args - Update the stretched VLAN Gateway and Subnet Mask IP address
metadata.gateway
: Update the gateway of stretched vlanmetadata.subnet_mask
: Update the subnet_mask of stretched vlan
- name str
- name for the stretched VLAN
- type String
- type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
- vlan
Ids List<String> - list of vlan ids to be added in NDB
- description String
- Description of stretched vlan
- metadata Property Map
- Update the stretched VLAN Gateway and Subnet Mask IP address
metadata.gateway
: Update the gateway of stretched vlanmetadata.subnet_mask
: Update the subnet_mask of stretched vlan
- name String
- name for the stretched VLAN
Outputs
All input properties are implicitly available as output properties. Additionally, the NdbStretchedVlan resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Vlans
Lists List<PiersKarsenbarg. Nutanix. Outputs. Ndb Stretched Vlan Vlans List> - properties of vlans
- Id string
- The provider-assigned unique ID for this managed resource.
- Vlans
Lists []NdbStretched Vlan Vlans List - properties of vlans
- id String
- The provider-assigned unique ID for this managed resource.
- vlans
Lists List<NdbStretched Vlan Vlans List> - properties of vlans
- id string
- The provider-assigned unique ID for this managed resource.
- vlans
Lists NdbStretched Vlan Vlans List[] - properties of vlans
- id str
- The provider-assigned unique ID for this managed resource.
- vlans_
lists Sequence[NdbStretched Vlan Vlans List] - properties of vlans
- id String
- The provider-assigned unique ID for this managed resource.
- vlans
Lists List<Property Map> - properties of vlans
Look up Existing NdbStretchedVlan Resource
Get an existing NdbStretchedVlan 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?: NdbStretchedVlanState, opts?: CustomResourceOptions): NdbStretchedVlan
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
metadata: Optional[NdbStretchedVlanMetadataArgs] = None,
name: Optional[str] = None,
type: Optional[str] = None,
vlan_ids: Optional[Sequence[str]] = None,
vlans_lists: Optional[Sequence[NdbStretchedVlanVlansListArgs]] = None) -> NdbStretchedVlan
func GetNdbStretchedVlan(ctx *Context, name string, id IDInput, state *NdbStretchedVlanState, opts ...ResourceOption) (*NdbStretchedVlan, error)
public static NdbStretchedVlan Get(string name, Input<string> id, NdbStretchedVlanState? state, CustomResourceOptions? opts = null)
public static NdbStretchedVlan get(String name, Output<String> id, NdbStretchedVlanState 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.
- Description string
- Description of stretched vlan
- Metadata
Piers
Karsenbarg. Nutanix. Inputs. Ndb Stretched Vlan Metadata - Update the stretched VLAN Gateway and Subnet Mask IP address
metadata.gateway
: Update the gateway of stretched vlanmetadata.subnet_mask
: Update the subnet_mask of stretched vlan
- Name string
- name for the stretched VLAN
- Type string
- type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
- Vlan
Ids List<string> - list of vlan ids to be added in NDB
- Vlans
Lists List<PiersKarsenbarg. Nutanix. Inputs. Ndb Stretched Vlan Vlans List> - properties of vlans
- Description string
- Description of stretched vlan
- Metadata
Ndb
Stretched Vlan Metadata Args - Update the stretched VLAN Gateway and Subnet Mask IP address
metadata.gateway
: Update the gateway of stretched vlanmetadata.subnet_mask
: Update the subnet_mask of stretched vlan
- Name string
- name for the stretched VLAN
- Type string
- type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
- Vlan
Ids []string - list of vlan ids to be added in NDB
- Vlans
Lists []NdbStretched Vlan Vlans List Args - properties of vlans
- description String
- Description of stretched vlan
- metadata
Ndb
Stretched Vlan Metadata - Update the stretched VLAN Gateway and Subnet Mask IP address
metadata.gateway
: Update the gateway of stretched vlanmetadata.subnet_mask
: Update the subnet_mask of stretched vlan
- name String
- name for the stretched VLAN
- type String
- type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
- vlan
Ids List<String> - list of vlan ids to be added in NDB
- vlans
Lists List<NdbStretched Vlan Vlans List> - properties of vlans
- description string
- Description of stretched vlan
- metadata
Ndb
Stretched Vlan Metadata - Update the stretched VLAN Gateway and Subnet Mask IP address
metadata.gateway
: Update the gateway of stretched vlanmetadata.subnet_mask
: Update the subnet_mask of stretched vlan
- name string
- name for the stretched VLAN
- type string
- type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
- vlan
Ids string[] - list of vlan ids to be added in NDB
- vlans
Lists NdbStretched Vlan Vlans List[] - properties of vlans
- description str
- Description of stretched vlan
- metadata
Ndb
Stretched Vlan Metadata Args - Update the stretched VLAN Gateway and Subnet Mask IP address
metadata.gateway
: Update the gateway of stretched vlanmetadata.subnet_mask
: Update the subnet_mask of stretched vlan
- name str
- name for the stretched VLAN
- type str
- type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
- vlan_
ids Sequence[str] - list of vlan ids to be added in NDB
- vlans_
lists Sequence[NdbStretched Vlan Vlans List Args] - properties of vlans
- description String
- Description of stretched vlan
- metadata Property Map
- Update the stretched VLAN Gateway and Subnet Mask IP address
metadata.gateway
: Update the gateway of stretched vlanmetadata.subnet_mask
: Update the subnet_mask of stretched vlan
- name String
- name for the stretched VLAN
- type String
- type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
- vlan
Ids List<String> - list of vlan ids to be added in NDB
- vlans
Lists List<Property Map> - properties of vlans
Supporting Types
NdbStretchedVlanMetadata, NdbStretchedVlanMetadataArgs
- Gateway string
- Subnet
Mask string
- Gateway string
- Subnet
Mask string
- gateway String
- subnet
Mask String
- gateway string
- subnet
Mask string
- gateway str
- subnet_
mask str
- gateway String
- subnet
Mask String
NdbStretchedVlanVlansList, NdbStretchedVlanVlansListArgs
- Cluster
Id string - cluster id where network is present
- Id string
- network id
- Managed bool
- network managed by NDB or not
- Name string
- name for the stretched VLAN
- Properties
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Stretched Vlan Vlans List Property> - properties of network
- Properties
Maps List<PiersKarsenbarg. Nutanix. Inputs. Ndb Stretched Vlan Vlans List Properties Map> - properties map of network
- Stretched
Vlan stringId - stretched vlan id
- Type string
- type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
- Cluster
Id string - cluster id where network is present
- Id string
- network id
- Managed bool
- network managed by NDB or not
- Name string
- name for the stretched VLAN
- Properties
[]Ndb
Stretched Vlan Vlans List Property - properties of network
- Properties
Maps []NdbStretched Vlan Vlans List Properties Map - properties map of network
- Stretched
Vlan stringId - stretched vlan id
- Type string
- type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
- cluster
Id String - cluster id where network is present
- id String
- network id
- managed Boolean
- network managed by NDB or not
- name String
- name for the stretched VLAN
- properties
List<Ndb
Stretched Vlan Vlans List Property> - properties of network
- properties
Maps List<NdbStretched Vlan Vlans List Properties Map> - properties map of network
- stretched
Vlan StringId - stretched vlan id
- type String
- type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
- cluster
Id string - cluster id where network is present
- id string
- network id
- managed boolean
- network managed by NDB or not
- name string
- name for the stretched VLAN
- properties
Ndb
Stretched Vlan Vlans List Property[] - properties of network
- properties
Maps NdbStretched Vlan Vlans List Properties Map[] - properties map of network
- stretched
Vlan stringId - stretched vlan id
- type string
- type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
- cluster_
id str - cluster id where network is present
- id str
- network id
- managed bool
- network managed by NDB or not
- name str
- name for the stretched VLAN
- properties
Sequence[Ndb
Stretched Vlan Vlans List Property] - properties of network
- properties_
maps Sequence[NdbStretched Vlan Vlans List Properties Map] - properties map of network
- stretched_
vlan_ strid - stretched vlan id
- type str
- type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
- cluster
Id String - cluster id where network is present
- id String
- network id
- managed Boolean
- network managed by NDB or not
- name String
- name for the stretched VLAN
- properties List<Property Map>
- properties of network
- properties
Maps List<Property Map> - properties map of network
- stretched
Vlan StringId - stretched vlan id
- type String
- type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
NdbStretchedVlanVlansListPropertiesMap, NdbStretchedVlanVlansListPropertiesMapArgs
- Vlan
Gateway string - gateway of vlan
- Vlan
Primary stringDns - primary dns of vlan
- Vlan
Secondary stringDns - secondary dns of vlan
- Vlan
Subnet stringMask - subnet mask of vlan
- Vlan
Gateway string - gateway of vlan
- Vlan
Primary stringDns - primary dns of vlan
- Vlan
Secondary stringDns - secondary dns of vlan
- Vlan
Subnet stringMask - subnet mask of vlan
- vlan
Gateway String - gateway of vlan
- vlan
Primary StringDns - primary dns of vlan
- vlan
Secondary StringDns - secondary dns of vlan
- vlan
Subnet StringMask - subnet mask of vlan
- vlan
Gateway string - gateway of vlan
- vlan
Primary stringDns - primary dns of vlan
- vlan
Secondary stringDns - secondary dns of vlan
- vlan
Subnet stringMask - subnet mask of vlan
- vlan_
gateway str - gateway of vlan
- vlan_
primary_ strdns - primary dns of vlan
- vlan_
secondary_ strdns - secondary dns of vlan
- vlan_
subnet_ strmask - subnet mask of vlan
- vlan
Gateway String - gateway of vlan
- vlan
Primary StringDns - primary dns of vlan
- vlan
Secondary StringDns - secondary dns of vlan
- vlan
Subnet StringMask - subnet mask of vlan
NdbStretchedVlanVlansListProperty, NdbStretchedVlanVlansListPropertyArgs
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.