1. Packages
  2. Nutanix
  3. API Docs
  4. NdbStretchedVlan
Nutanix v0.0.52 published on Friday, Jun 7, 2024 by Piers Karsenbarg

nutanix.NdbStretchedVlan

Explore with Pulumi AI

nutanix logo
Nutanix v0.0.52 published on Friday, Jun 7, 2024 by Piers Karsenbarg

    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.
    VlanIds List<string>
    list of vlan ids to be added in NDB
    Description string
    Description of stretched vlan
    Metadata PiersKarsenbarg.Nutanix.Inputs.NdbStretchedVlanMetadata
    Update the stretched VLAN Gateway and Subnet Mask IP address

    • metadata.gateway: Update the gateway of stretched vlan
    • metadata.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.
    VlanIds []string
    list of vlan ids to be added in NDB
    Description string
    Description of stretched vlan
    Metadata NdbStretchedVlanMetadataArgs
    Update the stretched VLAN Gateway and Subnet Mask IP address

    • metadata.gateway: Update the gateway of stretched vlan
    • metadata.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.
    vlanIds List<String>
    list of vlan ids to be added in NDB
    description String
    Description of stretched vlan
    metadata NdbStretchedVlanMetadata
    Update the stretched VLAN Gateway and Subnet Mask IP address

    • metadata.gateway: Update the gateway of stretched vlan
    • metadata.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.
    vlanIds string[]
    list of vlan ids to be added in NDB
    description string
    Description of stretched vlan
    metadata NdbStretchedVlanMetadata
    Update the stretched VLAN Gateway and Subnet Mask IP address

    • metadata.gateway: Update the gateway of stretched vlan
    • metadata.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 NdbStretchedVlanMetadataArgs
    Update the stretched VLAN Gateway and Subnet Mask IP address

    • metadata.gateway: Update the gateway of stretched vlan
    • metadata.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.
    vlanIds 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 vlan
    • metadata.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.
    VlansLists List<PiersKarsenbarg.Nutanix.Outputs.NdbStretchedVlanVlansList>
    properties of vlans
    Id string
    The provider-assigned unique ID for this managed resource.
    VlansLists []NdbStretchedVlanVlansList
    properties of vlans
    id String
    The provider-assigned unique ID for this managed resource.
    vlansLists List<NdbStretchedVlanVlansList>
    properties of vlans
    id string
    The provider-assigned unique ID for this managed resource.
    vlansLists NdbStretchedVlanVlansList[]
    properties of vlans
    id str
    The provider-assigned unique ID for this managed resource.
    vlans_lists Sequence[NdbStretchedVlanVlansList]
    properties of vlans
    id String
    The provider-assigned unique ID for this managed resource.
    vlansLists 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.
    The following state arguments are supported:
    Description string
    Description of stretched vlan
    Metadata PiersKarsenbarg.Nutanix.Inputs.NdbStretchedVlanMetadata
    Update the stretched VLAN Gateway and Subnet Mask IP address

    • metadata.gateway: Update the gateway of stretched vlan
    • metadata.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.
    VlanIds List<string>
    list of vlan ids to be added in NDB
    VlansLists List<PiersKarsenbarg.Nutanix.Inputs.NdbStretchedVlanVlansList>
    properties of vlans
    Description string
    Description of stretched vlan
    Metadata NdbStretchedVlanMetadataArgs
    Update the stretched VLAN Gateway and Subnet Mask IP address

    • metadata.gateway: Update the gateway of stretched vlan
    • metadata.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.
    VlanIds []string
    list of vlan ids to be added in NDB
    VlansLists []NdbStretchedVlanVlansListArgs
    properties of vlans
    description String
    Description of stretched vlan
    metadata NdbStretchedVlanMetadata
    Update the stretched VLAN Gateway and Subnet Mask IP address

    • metadata.gateway: Update the gateway of stretched vlan
    • metadata.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.
    vlanIds List<String>
    list of vlan ids to be added in NDB
    vlansLists List<NdbStretchedVlanVlansList>
    properties of vlans
    description string
    Description of stretched vlan
    metadata NdbStretchedVlanMetadata
    Update the stretched VLAN Gateway and Subnet Mask IP address

    • metadata.gateway: Update the gateway of stretched vlan
    • metadata.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.
    vlanIds string[]
    list of vlan ids to be added in NDB
    vlansLists NdbStretchedVlanVlansList[]
    properties of vlans
    description str
    Description of stretched vlan
    metadata NdbStretchedVlanMetadataArgs
    Update the stretched VLAN Gateway and Subnet Mask IP address

    • metadata.gateway: Update the gateway of stretched vlan
    • metadata.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[NdbStretchedVlanVlansListArgs]
    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 vlan
    • metadata.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.
    vlanIds List<String>
    list of vlan ids to be added in NDB
    vlansLists List<Property Map>
    properties of vlans

    Supporting Types

    NdbStretchedVlanMetadata, NdbStretchedVlanMetadataArgs

    Gateway string
    SubnetMask string
    Gateway string
    SubnetMask string
    gateway String
    subnetMask String
    gateway string
    subnetMask string
    gateway String
    subnetMask String

    NdbStretchedVlanVlansList, NdbStretchedVlanVlansListArgs

    ClusterId 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<PiersKarsenbarg.Nutanix.Inputs.NdbStretchedVlanVlansListProperty>
    properties of network
    PropertiesMaps List<PiersKarsenbarg.Nutanix.Inputs.NdbStretchedVlanVlansListPropertiesMap>
    properties map of network
    StretchedVlanId string
    stretched vlan id
    Type string
    type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
    ClusterId 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 []NdbStretchedVlanVlansListProperty
    properties of network
    PropertiesMaps []NdbStretchedVlanVlansListPropertiesMap
    properties map of network
    StretchedVlanId string
    stretched vlan id
    Type string
    type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
    clusterId 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<NdbStretchedVlanVlansListProperty>
    properties of network
    propertiesMaps List<NdbStretchedVlanVlansListPropertiesMap>
    properties map of network
    stretchedVlanId String
    stretched vlan id
    type String
    type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
    clusterId 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 NdbStretchedVlanVlansListProperty[]
    properties of network
    propertiesMaps NdbStretchedVlanVlansListPropertiesMap[]
    properties map of network
    stretchedVlanId string
    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[NdbStretchedVlanVlansListProperty]
    properties of network
    properties_maps Sequence[NdbStretchedVlanVlansListPropertiesMap]
    properties map of network
    stretched_vlan_id str
    stretched vlan id
    type str
    type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.
    clusterId 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
    propertiesMaps List<Property Map>
    properties map of network
    stretchedVlanId String
    stretched vlan id
    type String
    type of vlan. static VLANs that are managed in NDB can be added to a stretched VLAN.

    NdbStretchedVlanVlansListPropertiesMap, NdbStretchedVlanVlansListPropertiesMapArgs

    VlanGateway string
    gateway of vlan
    VlanPrimaryDns string
    primary dns of vlan
    VlanSecondaryDns string
    secondary dns of vlan
    VlanSubnetMask string
    subnet mask of vlan
    VlanGateway string
    gateway of vlan
    VlanPrimaryDns string
    primary dns of vlan
    VlanSecondaryDns string
    secondary dns of vlan
    VlanSubnetMask string
    subnet mask of vlan
    vlanGateway String
    gateway of vlan
    vlanPrimaryDns String
    primary dns of vlan
    vlanSecondaryDns String
    secondary dns of vlan
    vlanSubnetMask String
    subnet mask of vlan
    vlanGateway string
    gateway of vlan
    vlanPrimaryDns string
    primary dns of vlan
    vlanSecondaryDns string
    secondary dns of vlan
    vlanSubnetMask string
    subnet mask of vlan
    vlan_gateway str
    gateway of vlan
    vlan_primary_dns str
    primary dns of vlan
    vlan_secondary_dns str
    secondary dns of vlan
    vlan_subnet_mask str
    subnet mask of vlan
    vlanGateway String
    gateway of vlan
    vlanPrimaryDns String
    primary dns of vlan
    vlanSecondaryDns String
    secondary dns of vlan
    vlanSubnetMask String
    subnet mask of vlan

    NdbStretchedVlanVlansListProperty, NdbStretchedVlanVlansListPropertyArgs

    Name string
    name for the stretched VLAN
    Secure bool
    Value string
    Name string
    name for the stretched VLAN
    Secure bool
    Value string
    name String
    name for the stretched VLAN
    secure Boolean
    value String
    name string
    name for the stretched VLAN
    secure boolean
    value string
    name str
    name for the stretched VLAN
    secure bool
    value str
    name String
    name for the stretched VLAN
    secure Boolean
    value String

    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.0.52 published on Friday, Jun 7, 2024 by Piers Karsenbarg