1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. VlanInterface
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
scm logo
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi

    VlanInterface resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    //
    // Creates a vlan interface used as parent-interface for subsequent examples
    //
    const scmVlanInterfaceIpv4 = new scm.VlanInterface("scm_vlan_interface_ipv4", {
        name: "$scm_vlan_interface_ipv4",
        comment: "Managed by Pulumi",
        folder: "ngfw-shared",
        vlanTag: "1234",
        ips: [{
            name: "198.18.1.1/24",
        }],
    });
    
    import pulumi
    import pulumi_scm as scm
    
    #
    # Creates a vlan interface used as parent-interface for subsequent examples
    #
    scm_vlan_interface_ipv4 = scm.VlanInterface("scm_vlan_interface_ipv4",
        name="$scm_vlan_interface_ipv4",
        comment="Managed by Pulumi",
        folder="ngfw-shared",
        vlan_tag="1234",
        ips=[{
            "name": "198.18.1.1/24",
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-scm/sdk/go/scm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Creates a vlan interface used as parent-interface for subsequent examples
    		_, err := scm.NewVlanInterface(ctx, "scm_vlan_interface_ipv4", &scm.VlanInterfaceArgs{
    			Name:    pulumi.String("$scm_vlan_interface_ipv4"),
    			Comment: pulumi.String("Managed by Pulumi"),
    			Folder:  pulumi.String("ngfw-shared"),
    			VlanTag: pulumi.String("1234"),
    			Ips: scm.VlanInterfaceIpArray{
    				&scm.VlanInterfaceIpArgs{
    					Name: pulumi.String("198.18.1.1/24"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        //
        // Creates a vlan interface used as parent-interface for subsequent examples
        //
        var scmVlanInterfaceIpv4 = new Scm.VlanInterface("scm_vlan_interface_ipv4", new()
        {
            Name = "$scm_vlan_interface_ipv4",
            Comment = "Managed by Pulumi",
            Folder = "ngfw-shared",
            VlanTag = "1234",
            Ips = new[]
            {
                new Scm.Inputs.VlanInterfaceIpArgs
                {
                    Name = "198.18.1.1/24",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.VlanInterface;
    import com.pulumi.scm.VlanInterfaceArgs;
    import com.pulumi.scm.inputs.VlanInterfaceIpArgs;
    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) {
            //
            // Creates a vlan interface used as parent-interface for subsequent examples
            //
            var scmVlanInterfaceIpv4 = new VlanInterface("scmVlanInterfaceIpv4", VlanInterfaceArgs.builder()
                .name("$scm_vlan_interface_ipv4")
                .comment("Managed by Pulumi")
                .folder("ngfw-shared")
                .vlanTag("1234")
                .ips(VlanInterfaceIpArgs.builder()
                    .name("198.18.1.1/24")
                    .build())
                .build());
    
        }
    }
    
    resources:
      #
      # Creates a vlan interface used as parent-interface for subsequent examples
      #
      scmVlanInterfaceIpv4:
        type: scm:VlanInterface
        name: scm_vlan_interface_ipv4
        properties:
          name: $scm_vlan_interface_ipv4
          comment: Managed by Pulumi
          folder: ngfw-shared
          vlanTag: '1234'
          ips:
            - name: 198.18.1.1/24
    

    Create VlanInterface Resource

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

    Constructor syntax

    new VlanInterface(name: string, args?: VlanInterfaceArgs, opts?: CustomResourceOptions);
    @overload
    def VlanInterface(resource_name: str,
                      args: Optional[VlanInterfaceArgs] = None,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def VlanInterface(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      arps: Optional[Sequence[VlanInterfaceArpArgs]] = None,
                      comment: Optional[str] = None,
                      ddns_config: Optional[VlanInterfaceDdnsConfigArgs] = None,
                      default_value: Optional[str] = None,
                      device: Optional[str] = None,
                      dhcp_client: Optional[VlanInterfaceDhcpClientArgs] = None,
                      folder: Optional[str] = None,
                      interface_management_profile: Optional[str] = None,
                      ips: Optional[Sequence[VlanInterfaceIpArgs]] = None,
                      mtu: Optional[int] = None,
                      name: Optional[str] = None,
                      snippet: Optional[str] = None,
                      vlan_tag: Optional[str] = None)
    func NewVlanInterface(ctx *Context, name string, args *VlanInterfaceArgs, opts ...ResourceOption) (*VlanInterface, error)
    public VlanInterface(string name, VlanInterfaceArgs? args = null, CustomResourceOptions? opts = null)
    public VlanInterface(String name, VlanInterfaceArgs args)
    public VlanInterface(String name, VlanInterfaceArgs args, CustomResourceOptions options)
    
    type: scm:VlanInterface
    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 VlanInterfaceArgs
    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 VlanInterfaceArgs
    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 VlanInterfaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VlanInterfaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VlanInterfaceArgs
    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 vlanInterfaceResource = new Scm.VlanInterface("vlanInterfaceResource", new()
    {
        Arps = new[]
        {
            new Scm.Inputs.VlanInterfaceArpArgs
            {
                HwAddress = "string",
                Interface = "string",
                Name = "string",
            },
        },
        Comment = "string",
        DdnsConfig = new Scm.Inputs.VlanInterfaceDdnsConfigArgs
        {
            DdnsCertProfile = "string",
            DdnsHostname = "string",
            DdnsVendor = "string",
            DdnsVendorConfig = "string",
            DdnsEnabled = false,
            DdnsIp = "string",
            DdnsUpdateInterval = 0,
        },
        DefaultValue = "string",
        Device = "string",
        DhcpClient = new Scm.Inputs.VlanInterfaceDhcpClientArgs
        {
            CreateDefaultRoute = false,
            DefaultRouteMetric = 0,
            Enable = false,
            SendHostname = new Scm.Inputs.VlanInterfaceDhcpClientSendHostnameArgs
            {
                Enable = false,
                Hostname = "string",
            },
        },
        Folder = "string",
        InterfaceManagementProfile = "string",
        Ips = new[]
        {
            new Scm.Inputs.VlanInterfaceIpArgs
            {
                Name = "string",
            },
        },
        Mtu = 0,
        Name = "string",
        Snippet = "string",
        VlanTag = "string",
    });
    
    example, err := scm.NewVlanInterface(ctx, "vlanInterfaceResource", &scm.VlanInterfaceArgs{
    	Arps: scm.VlanInterfaceArpArray{
    		&scm.VlanInterfaceArpArgs{
    			HwAddress: pulumi.String("string"),
    			Interface: pulumi.String("string"),
    			Name:      pulumi.String("string"),
    		},
    	},
    	Comment: pulumi.String("string"),
    	DdnsConfig: &scm.VlanInterfaceDdnsConfigArgs{
    		DdnsCertProfile:    pulumi.String("string"),
    		DdnsHostname:       pulumi.String("string"),
    		DdnsVendor:         pulumi.String("string"),
    		DdnsVendorConfig:   pulumi.String("string"),
    		DdnsEnabled:        pulumi.Bool(false),
    		DdnsIp:             pulumi.String("string"),
    		DdnsUpdateInterval: pulumi.Int(0),
    	},
    	DefaultValue: pulumi.String("string"),
    	Device:       pulumi.String("string"),
    	DhcpClient: &scm.VlanInterfaceDhcpClientArgs{
    		CreateDefaultRoute: pulumi.Bool(false),
    		DefaultRouteMetric: pulumi.Int(0),
    		Enable:             pulumi.Bool(false),
    		SendHostname: &scm.VlanInterfaceDhcpClientSendHostnameArgs{
    			Enable:   pulumi.Bool(false),
    			Hostname: pulumi.String("string"),
    		},
    	},
    	Folder:                     pulumi.String("string"),
    	InterfaceManagementProfile: pulumi.String("string"),
    	Ips: scm.VlanInterfaceIpArray{
    		&scm.VlanInterfaceIpArgs{
    			Name: pulumi.String("string"),
    		},
    	},
    	Mtu:     pulumi.Int(0),
    	Name:    pulumi.String("string"),
    	Snippet: pulumi.String("string"),
    	VlanTag: pulumi.String("string"),
    })
    
    var vlanInterfaceResource = new VlanInterface("vlanInterfaceResource", VlanInterfaceArgs.builder()
        .arps(VlanInterfaceArpArgs.builder()
            .hwAddress("string")
            .interface_("string")
            .name("string")
            .build())
        .comment("string")
        .ddnsConfig(VlanInterfaceDdnsConfigArgs.builder()
            .ddnsCertProfile("string")
            .ddnsHostname("string")
            .ddnsVendor("string")
            .ddnsVendorConfig("string")
            .ddnsEnabled(false)
            .ddnsIp("string")
            .ddnsUpdateInterval(0)
            .build())
        .defaultValue("string")
        .device("string")
        .dhcpClient(VlanInterfaceDhcpClientArgs.builder()
            .createDefaultRoute(false)
            .defaultRouteMetric(0)
            .enable(false)
            .sendHostname(VlanInterfaceDhcpClientSendHostnameArgs.builder()
                .enable(false)
                .hostname("string")
                .build())
            .build())
        .folder("string")
        .interfaceManagementProfile("string")
        .ips(VlanInterfaceIpArgs.builder()
            .name("string")
            .build())
        .mtu(0)
        .name("string")
        .snippet("string")
        .vlanTag("string")
        .build());
    
    vlan_interface_resource = scm.VlanInterface("vlanInterfaceResource",
        arps=[{
            "hw_address": "string",
            "interface": "string",
            "name": "string",
        }],
        comment="string",
        ddns_config={
            "ddns_cert_profile": "string",
            "ddns_hostname": "string",
            "ddns_vendor": "string",
            "ddns_vendor_config": "string",
            "ddns_enabled": False,
            "ddns_ip": "string",
            "ddns_update_interval": 0,
        },
        default_value="string",
        device="string",
        dhcp_client={
            "create_default_route": False,
            "default_route_metric": 0,
            "enable": False,
            "send_hostname": {
                "enable": False,
                "hostname": "string",
            },
        },
        folder="string",
        interface_management_profile="string",
        ips=[{
            "name": "string",
        }],
        mtu=0,
        name="string",
        snippet="string",
        vlan_tag="string")
    
    const vlanInterfaceResource = new scm.VlanInterface("vlanInterfaceResource", {
        arps: [{
            hwAddress: "string",
            "interface": "string",
            name: "string",
        }],
        comment: "string",
        ddnsConfig: {
            ddnsCertProfile: "string",
            ddnsHostname: "string",
            ddnsVendor: "string",
            ddnsVendorConfig: "string",
            ddnsEnabled: false,
            ddnsIp: "string",
            ddnsUpdateInterval: 0,
        },
        defaultValue: "string",
        device: "string",
        dhcpClient: {
            createDefaultRoute: false,
            defaultRouteMetric: 0,
            enable: false,
            sendHostname: {
                enable: false,
                hostname: "string",
            },
        },
        folder: "string",
        interfaceManagementProfile: "string",
        ips: [{
            name: "string",
        }],
        mtu: 0,
        name: "string",
        snippet: "string",
        vlanTag: "string",
    });
    
    type: scm:VlanInterface
    properties:
        arps:
            - hwAddress: string
              interface: string
              name: string
        comment: string
        ddnsConfig:
            ddnsCertProfile: string
            ddnsEnabled: false
            ddnsHostname: string
            ddnsIp: string
            ddnsUpdateInterval: 0
            ddnsVendor: string
            ddnsVendorConfig: string
        defaultValue: string
        device: string
        dhcpClient:
            createDefaultRoute: false
            defaultRouteMetric: 0
            enable: false
            sendHostname:
                enable: false
                hostname: string
        folder: string
        interfaceManagementProfile: string
        ips:
            - name: string
        mtu: 0
        name: string
        snippet: string
        vlanTag: string
    

    VlanInterface 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 VlanInterface resource accepts the following input properties:

    Arps List<VlanInterfaceArp>
    ARP configuration
    Comment string
    Description
    DdnsConfig VlanInterfaceDdnsConfig
    Dynamic DNS configuration specific to the Vlan Interfaces.
    DefaultValue string
    Default interface assignment
    Device string
    The device in which the resource is defined
    DhcpClient VlanInterfaceDhcpClient
    Vlan interfaces DHCP Client Object
    Folder string
    The folder in which the resource is defined
    InterfaceManagementProfile string
    Interface management profile
    Ips List<VlanInterfaceIp>
    VLAN Interface IP Parent
    Mtu int
    MTU
    Name string
    L3 sub-interface name
    Snippet string
    The snippet in which the resource is defined
    VlanTag string
    VLAN tag
    Arps []VlanInterfaceArpArgs
    ARP configuration
    Comment string
    Description
    DdnsConfig VlanInterfaceDdnsConfigArgs
    Dynamic DNS configuration specific to the Vlan Interfaces.
    DefaultValue string
    Default interface assignment
    Device string
    The device in which the resource is defined
    DhcpClient VlanInterfaceDhcpClientArgs
    Vlan interfaces DHCP Client Object
    Folder string
    The folder in which the resource is defined
    InterfaceManagementProfile string
    Interface management profile
    Ips []VlanInterfaceIpArgs
    VLAN Interface IP Parent
    Mtu int
    MTU
    Name string
    L3 sub-interface name
    Snippet string
    The snippet in which the resource is defined
    VlanTag string
    VLAN tag
    arps List<VlanInterfaceArp>
    ARP configuration
    comment String
    Description
    ddnsConfig VlanInterfaceDdnsConfig
    Dynamic DNS configuration specific to the Vlan Interfaces.
    defaultValue String
    Default interface assignment
    device String
    The device in which the resource is defined
    dhcpClient VlanInterfaceDhcpClient
    Vlan interfaces DHCP Client Object
    folder String
    The folder in which the resource is defined
    interfaceManagementProfile String
    Interface management profile
    ips List<VlanInterfaceIp>
    VLAN Interface IP Parent
    mtu Integer
    MTU
    name String
    L3 sub-interface name
    snippet String
    The snippet in which the resource is defined
    vlanTag String
    VLAN tag
    arps VlanInterfaceArp[]
    ARP configuration
    comment string
    Description
    ddnsConfig VlanInterfaceDdnsConfig
    Dynamic DNS configuration specific to the Vlan Interfaces.
    defaultValue string
    Default interface assignment
    device string
    The device in which the resource is defined
    dhcpClient VlanInterfaceDhcpClient
    Vlan interfaces DHCP Client Object
    folder string
    The folder in which the resource is defined
    interfaceManagementProfile string
    Interface management profile
    ips VlanInterfaceIp[]
    VLAN Interface IP Parent
    mtu number
    MTU
    name string
    L3 sub-interface name
    snippet string
    The snippet in which the resource is defined
    vlanTag string
    VLAN tag
    arps Sequence[VlanInterfaceArpArgs]
    ARP configuration
    comment str
    Description
    ddns_config VlanInterfaceDdnsConfigArgs
    Dynamic DNS configuration specific to the Vlan Interfaces.
    default_value str
    Default interface assignment
    device str
    The device in which the resource is defined
    dhcp_client VlanInterfaceDhcpClientArgs
    Vlan interfaces DHCP Client Object
    folder str
    The folder in which the resource is defined
    interface_management_profile str
    Interface management profile
    ips Sequence[VlanInterfaceIpArgs]
    VLAN Interface IP Parent
    mtu int
    MTU
    name str
    L3 sub-interface name
    snippet str
    The snippet in which the resource is defined
    vlan_tag str
    VLAN tag
    arps List<Property Map>
    ARP configuration
    comment String
    Description
    ddnsConfig Property Map
    Dynamic DNS configuration specific to the Vlan Interfaces.
    defaultValue String
    Default interface assignment
    device String
    The device in which the resource is defined
    dhcpClient Property Map
    Vlan interfaces DHCP Client Object
    folder String
    The folder in which the resource is defined
    interfaceManagementProfile String
    Interface management profile
    ips List<Property Map>
    VLAN Interface IP Parent
    mtu Number
    MTU
    name String
    L3 sub-interface name
    snippet String
    The snippet in which the resource is defined
    vlanTag String
    VLAN tag

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String

    Look up Existing VlanInterface Resource

    Get an existing VlanInterface 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?: VlanInterfaceState, opts?: CustomResourceOptions): VlanInterface
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arps: Optional[Sequence[VlanInterfaceArpArgs]] = None,
            comment: Optional[str] = None,
            ddns_config: Optional[VlanInterfaceDdnsConfigArgs] = None,
            default_value: Optional[str] = None,
            device: Optional[str] = None,
            dhcp_client: Optional[VlanInterfaceDhcpClientArgs] = None,
            folder: Optional[str] = None,
            interface_management_profile: Optional[str] = None,
            ips: Optional[Sequence[VlanInterfaceIpArgs]] = None,
            mtu: Optional[int] = None,
            name: Optional[str] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None,
            vlan_tag: Optional[str] = None) -> VlanInterface
    func GetVlanInterface(ctx *Context, name string, id IDInput, state *VlanInterfaceState, opts ...ResourceOption) (*VlanInterface, error)
    public static VlanInterface Get(string name, Input<string> id, VlanInterfaceState? state, CustomResourceOptions? opts = null)
    public static VlanInterface get(String name, Output<String> id, VlanInterfaceState state, CustomResourceOptions options)
    resources:  _:    type: scm:VlanInterface    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:
    Arps List<VlanInterfaceArp>
    ARP configuration
    Comment string
    Description
    DdnsConfig VlanInterfaceDdnsConfig
    Dynamic DNS configuration specific to the Vlan Interfaces.
    DefaultValue string
    Default interface assignment
    Device string
    The device in which the resource is defined
    DhcpClient VlanInterfaceDhcpClient
    Vlan interfaces DHCP Client Object
    Folder string
    The folder in which the resource is defined
    InterfaceManagementProfile string
    Interface management profile
    Ips List<VlanInterfaceIp>
    VLAN Interface IP Parent
    Mtu int
    MTU
    Name string
    L3 sub-interface name
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    VlanTag string
    VLAN tag
    Arps []VlanInterfaceArpArgs
    ARP configuration
    Comment string
    Description
    DdnsConfig VlanInterfaceDdnsConfigArgs
    Dynamic DNS configuration specific to the Vlan Interfaces.
    DefaultValue string
    Default interface assignment
    Device string
    The device in which the resource is defined
    DhcpClient VlanInterfaceDhcpClientArgs
    Vlan interfaces DHCP Client Object
    Folder string
    The folder in which the resource is defined
    InterfaceManagementProfile string
    Interface management profile
    Ips []VlanInterfaceIpArgs
    VLAN Interface IP Parent
    Mtu int
    MTU
    Name string
    L3 sub-interface name
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    VlanTag string
    VLAN tag
    arps List<VlanInterfaceArp>
    ARP configuration
    comment String
    Description
    ddnsConfig VlanInterfaceDdnsConfig
    Dynamic DNS configuration specific to the Vlan Interfaces.
    defaultValue String
    Default interface assignment
    device String
    The device in which the resource is defined
    dhcpClient VlanInterfaceDhcpClient
    Vlan interfaces DHCP Client Object
    folder String
    The folder in which the resource is defined
    interfaceManagementProfile String
    Interface management profile
    ips List<VlanInterfaceIp>
    VLAN Interface IP Parent
    mtu Integer
    MTU
    name String
    L3 sub-interface name
    snippet String
    The snippet in which the resource is defined
    tfid String
    vlanTag String
    VLAN tag
    arps VlanInterfaceArp[]
    ARP configuration
    comment string
    Description
    ddnsConfig VlanInterfaceDdnsConfig
    Dynamic DNS configuration specific to the Vlan Interfaces.
    defaultValue string
    Default interface assignment
    device string
    The device in which the resource is defined
    dhcpClient VlanInterfaceDhcpClient
    Vlan interfaces DHCP Client Object
    folder string
    The folder in which the resource is defined
    interfaceManagementProfile string
    Interface management profile
    ips VlanInterfaceIp[]
    VLAN Interface IP Parent
    mtu number
    MTU
    name string
    L3 sub-interface name
    snippet string
    The snippet in which the resource is defined
    tfid string
    vlanTag string
    VLAN tag
    arps Sequence[VlanInterfaceArpArgs]
    ARP configuration
    comment str
    Description
    ddns_config VlanInterfaceDdnsConfigArgs
    Dynamic DNS configuration specific to the Vlan Interfaces.
    default_value str
    Default interface assignment
    device str
    The device in which the resource is defined
    dhcp_client VlanInterfaceDhcpClientArgs
    Vlan interfaces DHCP Client Object
    folder str
    The folder in which the resource is defined
    interface_management_profile str
    Interface management profile
    ips Sequence[VlanInterfaceIpArgs]
    VLAN Interface IP Parent
    mtu int
    MTU
    name str
    L3 sub-interface name
    snippet str
    The snippet in which the resource is defined
    tfid str
    vlan_tag str
    VLAN tag
    arps List<Property Map>
    ARP configuration
    comment String
    Description
    ddnsConfig Property Map
    Dynamic DNS configuration specific to the Vlan Interfaces.
    defaultValue String
    Default interface assignment
    device String
    The device in which the resource is defined
    dhcpClient Property Map
    Vlan interfaces DHCP Client Object
    folder String
    The folder in which the resource is defined
    interfaceManagementProfile String
    Interface management profile
    ips List<Property Map>
    VLAN Interface IP Parent
    mtu Number
    MTU
    name String
    L3 sub-interface name
    snippet String
    The snippet in which the resource is defined
    tfid String
    vlanTag String
    VLAN tag

    Supporting Types

    VlanInterfaceArp, VlanInterfaceArpArgs

    HwAddress string
    MAC address
    Interface string
    ARP interface
    Name string
    IP address
    HwAddress string
    MAC address
    Interface string
    ARP interface
    Name string
    IP address
    hwAddress String
    MAC address
    interface_ String
    ARP interface
    name String
    IP address
    hwAddress string
    MAC address
    interface string
    ARP interface
    name string
    IP address
    hw_address str
    MAC address
    interface str
    ARP interface
    name str
    IP address
    hwAddress String
    MAC address
    interface String
    ARP interface
    name String
    IP address

    VlanInterfaceDdnsConfig, VlanInterfaceDdnsConfigArgs

    DdnsCertProfile string
    Certificate profile
    DdnsHostname string
    Ddns hostname
    DdnsVendor string
    DDNS vendor
    DdnsVendorConfig string
    DDNS vendor
    DdnsEnabled bool
    Enable DDNS?
    DdnsIp string
    IP to register (static only)
    DdnsUpdateInterval int
    Update interval (days)
    DdnsCertProfile string
    Certificate profile
    DdnsHostname string
    Ddns hostname
    DdnsVendor string
    DDNS vendor
    DdnsVendorConfig string
    DDNS vendor
    DdnsEnabled bool
    Enable DDNS?
    DdnsIp string
    IP to register (static only)
    DdnsUpdateInterval int
    Update interval (days)
    ddnsCertProfile String
    Certificate profile
    ddnsHostname String
    Ddns hostname
    ddnsVendor String
    DDNS vendor
    ddnsVendorConfig String
    DDNS vendor
    ddnsEnabled Boolean
    Enable DDNS?
    ddnsIp String
    IP to register (static only)
    ddnsUpdateInterval Integer
    Update interval (days)
    ddnsCertProfile string
    Certificate profile
    ddnsHostname string
    Ddns hostname
    ddnsVendor string
    DDNS vendor
    ddnsVendorConfig string
    DDNS vendor
    ddnsEnabled boolean
    Enable DDNS?
    ddnsIp string
    IP to register (static only)
    ddnsUpdateInterval number
    Update interval (days)
    ddns_cert_profile str
    Certificate profile
    ddns_hostname str
    Ddns hostname
    ddns_vendor str
    DDNS vendor
    ddns_vendor_config str
    DDNS vendor
    ddns_enabled bool
    Enable DDNS?
    ddns_ip str
    IP to register (static only)
    ddns_update_interval int
    Update interval (days)
    ddnsCertProfile String
    Certificate profile
    ddnsHostname String
    Ddns hostname
    ddnsVendor String
    DDNS vendor
    ddnsVendorConfig String
    DDNS vendor
    ddnsEnabled Boolean
    Enable DDNS?
    ddnsIp String
    IP to register (static only)
    ddnsUpdateInterval Number
    Update interval (days)

    VlanInterfaceDhcpClient, VlanInterfaceDhcpClientArgs

    CreateDefaultRoute bool
    Automatically create default route pointing to default gateway provided by server
    DefaultRouteMetric int
    Metric of the default route created
    Enable bool
    Enable DHCP?
    SendHostname VlanInterfaceDhcpClientSendHostname
    Send hostname
    CreateDefaultRoute bool
    Automatically create default route pointing to default gateway provided by server
    DefaultRouteMetric int
    Metric of the default route created
    Enable bool
    Enable DHCP?
    SendHostname VlanInterfaceDhcpClientSendHostname
    Send hostname
    createDefaultRoute Boolean
    Automatically create default route pointing to default gateway provided by server
    defaultRouteMetric Integer
    Metric of the default route created
    enable Boolean
    Enable DHCP?
    sendHostname VlanInterfaceDhcpClientSendHostname
    Send hostname
    createDefaultRoute boolean
    Automatically create default route pointing to default gateway provided by server
    defaultRouteMetric number
    Metric of the default route created
    enable boolean
    Enable DHCP?
    sendHostname VlanInterfaceDhcpClientSendHostname
    Send hostname
    create_default_route bool
    Automatically create default route pointing to default gateway provided by server
    default_route_metric int
    Metric of the default route created
    enable bool
    Enable DHCP?
    send_hostname VlanInterfaceDhcpClientSendHostname
    Send hostname
    createDefaultRoute Boolean
    Automatically create default route pointing to default gateway provided by server
    defaultRouteMetric Number
    Metric of the default route created
    enable Boolean
    Enable DHCP?
    sendHostname Property Map
    Send hostname

    VlanInterfaceDhcpClientSendHostname, VlanInterfaceDhcpClientSendHostnameArgs

    Enable bool
    Enable
    Hostname string
    Set interface hostname
    Enable bool
    Enable
    Hostname string
    Set interface hostname
    enable Boolean
    Enable
    hostname String
    Set interface hostname
    enable boolean
    Enable
    hostname string
    Set interface hostname
    enable bool
    Enable
    hostname str
    Set interface hostname
    enable Boolean
    Enable
    hostname String
    Set interface hostname

    VlanInterfaceIp, VlanInterfaceIpArgs

    Name string
    VLAN Interface IP address(es)
    Name string
    VLAN Interface IP address(es)
    name String
    VLAN Interface IP address(es)
    name string
    VLAN Interface IP address(es)
    name str
    VLAN Interface IP address(es)
    name String
    VLAN Interface IP address(es)

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate