1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getEthernetInterface
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

    EthernetInterface data source

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    // Look up ethernet interface by its ID.
    const scmL3IntfStaticDs = scm.getEthernetInterface({
        id: "ddad1e64-0b64-41a4-b361-c6199769a8f2",
    });
    export const ethernetInterfaceDataSourceResults = {
        id: scmL3IntfStaticDs.then(scmL3IntfStaticDs => scmL3IntfStaticDs.id),
        name: scmL3IntfStaticDs.then(scmL3IntfStaticDs => scmL3IntfStaticDs.name),
        comment: scmL3IntfStaticDs.then(scmL3IntfStaticDs => scmL3IntfStaticDs.comment),
        layer3: scmL3IntfStaticDs.then(scmL3IntfStaticDs => scmL3IntfStaticDs.layer3),
        folder: scmL3IntfStaticDs.then(scmL3IntfStaticDs => scmL3IntfStaticDs.folder),
    };
    
    import pulumi
    import pulumi_scm as scm
    
    # Look up ethernet interface by its ID.
    scm_l3_intf_static_ds = scm.get_ethernet_interface(id="ddad1e64-0b64-41a4-b361-c6199769a8f2")
    pulumi.export("ethernetInterfaceDataSourceResults", {
        "id": scm_l3_intf_static_ds.id,
        "name": scm_l3_intf_static_ds.name,
        "comment": scm_l3_intf_static_ds.comment,
        "layer3": scm_l3_intf_static_ds.layer3,
        "folder": scm_l3_intf_static_ds.folder,
    })
    
    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 {
    		// Look up ethernet interface by its ID.
    		scmL3IntfStaticDs, err := scm.LookupEthernetInterface(ctx, &scm.LookupEthernetInterfaceArgs{
    			Id: "ddad1e64-0b64-41a4-b361-c6199769a8f2",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("ethernetInterfaceDataSourceResults", pulumi.Map{
    			"id":      scmL3IntfStaticDs.Id,
    			"name":    scmL3IntfStaticDs.Name,
    			"comment": scmL3IntfStaticDs.Comment,
    			"layer3":  scmL3IntfStaticDs.Layer3,
    			"folder":  scmL3IntfStaticDs.Folder,
    		})
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // Look up ethernet interface by its ID.
        var scmL3IntfStaticDs = Scm.GetEthernetInterface.Invoke(new()
        {
            Id = "ddad1e64-0b64-41a4-b361-c6199769a8f2",
        });
    
        return new Dictionary<string, object?>
        {
            ["ethernetInterfaceDataSourceResults"] = 
            {
                { "id", scmL3IntfStaticDs.Apply(getEthernetInterfaceResult => getEthernetInterfaceResult.Id) },
                { "name", scmL3IntfStaticDs.Apply(getEthernetInterfaceResult => getEthernetInterfaceResult.Name) },
                { "comment", scmL3IntfStaticDs.Apply(getEthernetInterfaceResult => getEthernetInterfaceResult.Comment) },
                { "layer3", scmL3IntfStaticDs.Apply(getEthernetInterfaceResult => getEthernetInterfaceResult.Layer3) },
                { "folder", scmL3IntfStaticDs.Apply(getEthernetInterfaceResult => getEthernetInterfaceResult.Folder) },
            },
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.ScmFunctions;
    import com.pulumi.scm.inputs.GetEthernetInterfaceArgs;
    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) {
            // Look up ethernet interface by its ID.
            final var scmL3IntfStaticDs = ScmFunctions.getEthernetInterface(GetEthernetInterfaceArgs.builder()
                .id("ddad1e64-0b64-41a4-b361-c6199769a8f2")
                .build());
    
            ctx.export("ethernetInterfaceDataSourceResults", Map.ofEntries(
                Map.entry("id", scmL3IntfStaticDs.id()),
                Map.entry("name", scmL3IntfStaticDs.name()),
                Map.entry("comment", scmL3IntfStaticDs.comment()),
                Map.entry("layer3", scmL3IntfStaticDs.layer3()),
                Map.entry("folder", scmL3IntfStaticDs.folder())
            ));
        }
    }
    
    variables:
      # Look up ethernet interface by its ID.
      scmL3IntfStaticDs:
        fn::invoke:
          function: scm:getEthernetInterface
          arguments:
            id: ddad1e64-0b64-41a4-b361-c6199769a8f2
    outputs:
      # Output various attributes from the found ethernet interface to verify the lookups were successful.
      ethernetInterfaceDataSourceResults:
        id: ${scmL3IntfStaticDs.id}
        name: ${scmL3IntfStaticDs.name}
        comment: ${scmL3IntfStaticDs.comment}
        layer3: ${scmL3IntfStaticDs.layer3}
        folder: ${scmL3IntfStaticDs.folder}
    

    Using getEthernetInterface

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getEthernetInterface(args: GetEthernetInterfaceArgs, opts?: InvokeOptions): Promise<GetEthernetInterfaceResult>
    function getEthernetInterfaceOutput(args: GetEthernetInterfaceOutputArgs, opts?: InvokeOptions): Output<GetEthernetInterfaceResult>
    def get_ethernet_interface(id: Optional[str] = None,
                               name: Optional[str] = None,
                               opts: Optional[InvokeOptions] = None) -> GetEthernetInterfaceResult
    def get_ethernet_interface_output(id: Optional[pulumi.Input[str]] = None,
                               name: Optional[pulumi.Input[str]] = None,
                               opts: Optional[InvokeOptions] = None) -> Output[GetEthernetInterfaceResult]
    func LookupEthernetInterface(ctx *Context, args *LookupEthernetInterfaceArgs, opts ...InvokeOption) (*LookupEthernetInterfaceResult, error)
    func LookupEthernetInterfaceOutput(ctx *Context, args *LookupEthernetInterfaceOutputArgs, opts ...InvokeOption) LookupEthernetInterfaceResultOutput

    > Note: This function is named LookupEthernetInterface in the Go SDK.

    public static class GetEthernetInterface 
    {
        public static Task<GetEthernetInterfaceResult> InvokeAsync(GetEthernetInterfaceArgs args, InvokeOptions? opts = null)
        public static Output<GetEthernetInterfaceResult> Invoke(GetEthernetInterfaceInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetEthernetInterfaceResult> getEthernetInterface(GetEthernetInterfaceArgs args, InvokeOptions options)
    public static Output<GetEthernetInterfaceResult> getEthernetInterface(GetEthernetInterfaceArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getEthernetInterface:getEthernetInterface
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    UUID of the resource
    Name string
    Interface name
    Id string
    UUID of the resource
    Name string
    Interface name
    id String
    UUID of the resource
    name String
    Interface name
    id string
    UUID of the resource
    name string
    Interface name
    id str
    UUID of the resource
    name str
    Interface name
    id String
    UUID of the resource
    name String
    Interface name

    getEthernetInterface Result

    The following output properties are available:

    Comment string
    Interface description
    DefaultValue string
    Default interface assignment
    Device string
    The device in which the resource is defined
    EncryptedValues Dictionary<string, string>
    Map of sensitive values returned from the API.
    Folder string
    The folder in which the resource is defined
    Id string
    UUID of the resource
    Layer2 GetEthernetInterfaceLayer2
    Layer2
    Layer3 GetEthernetInterfaceLayer3
    Ethernet Interface Layer 3 configuration
    LinkDuplex string
    Link duplex
    LinkSpeed string
    Link speed
    LinkState string
    Link state
    Name string
    Interface name
    Poe GetEthernetInterfacePoe
    Poe
    Snippet string
    The snippet in which the resource is defined
    Tap GetEthernetInterfaceTap
    Tap
    Tfid string
    Comment string
    Interface description
    DefaultValue string
    Default interface assignment
    Device string
    The device in which the resource is defined
    EncryptedValues map[string]string
    Map of sensitive values returned from the API.
    Folder string
    The folder in which the resource is defined
    Id string
    UUID of the resource
    Layer2 GetEthernetInterfaceLayer2
    Layer2
    Layer3 GetEthernetInterfaceLayer3
    Ethernet Interface Layer 3 configuration
    LinkDuplex string
    Link duplex
    LinkSpeed string
    Link speed
    LinkState string
    Link state
    Name string
    Interface name
    Poe GetEthernetInterfacePoe
    Poe
    Snippet string
    The snippet in which the resource is defined
    Tap GetEthernetInterfaceTap
    Tap
    Tfid string
    comment String
    Interface description
    defaultValue String
    Default interface assignment
    device String
    The device in which the resource is defined
    encryptedValues Map<String,String>
    Map of sensitive values returned from the API.
    folder String
    The folder in which the resource is defined
    id String
    UUID of the resource
    layer2 GetEthernetInterfaceLayer2
    Layer2
    layer3 GetEthernetInterfaceLayer3
    Ethernet Interface Layer 3 configuration
    linkDuplex String
    Link duplex
    linkSpeed String
    Link speed
    linkState String
    Link state
    name String
    Interface name
    poe GetEthernetInterfacePoe
    Poe
    snippet String
    The snippet in which the resource is defined
    tap GetEthernetInterfaceTap
    Tap
    tfid String
    comment string
    Interface description
    defaultValue string
    Default interface assignment
    device string
    The device in which the resource is defined
    encryptedValues {[key: string]: string}
    Map of sensitive values returned from the API.
    folder string
    The folder in which the resource is defined
    id string
    UUID of the resource
    layer2 GetEthernetInterfaceLayer2
    Layer2
    layer3 GetEthernetInterfaceLayer3
    Ethernet Interface Layer 3 configuration
    linkDuplex string
    Link duplex
    linkSpeed string
    Link speed
    linkState string
    Link state
    name string
    Interface name
    poe GetEthernetInterfacePoe
    Poe
    snippet string
    The snippet in which the resource is defined
    tap GetEthernetInterfaceTap
    Tap
    tfid string
    comment str
    Interface description
    default_value str
    Default interface assignment
    device str
    The device in which the resource is defined
    encrypted_values Mapping[str, str]
    Map of sensitive values returned from the API.
    folder str
    The folder in which the resource is defined
    id str
    UUID of the resource
    layer2 GetEthernetInterfaceLayer2
    Layer2
    layer3 GetEthernetInterfaceLayer3
    Ethernet Interface Layer 3 configuration
    link_duplex str
    Link duplex
    link_speed str
    Link speed
    link_state str
    Link state
    name str
    Interface name
    poe GetEthernetInterfacePoe
    Poe
    snippet str
    The snippet in which the resource is defined
    tap GetEthernetInterfaceTap
    Tap
    tfid str
    comment String
    Interface description
    defaultValue String
    Default interface assignment
    device String
    The device in which the resource is defined
    encryptedValues Map<String>
    Map of sensitive values returned from the API.
    folder String
    The folder in which the resource is defined
    id String
    UUID of the resource
    layer2 Property Map
    Layer2
    layer3 Property Map
    Ethernet Interface Layer 3 configuration
    linkDuplex String
    Link duplex
    linkSpeed String
    Link speed
    linkState String
    Link state
    name String
    Interface name
    poe Property Map
    Poe
    snippet String
    The snippet in which the resource is defined
    tap Property Map
    Tap
    tfid String

    Supporting Types

    GetEthernetInterfaceLayer2

    Lldp GetEthernetInterfaceLayer2Lldp
    LLDP Settings
    VlanTag string
    Assign interface to VLAN tag
    Lldp GetEthernetInterfaceLayer2Lldp
    LLDP Settings
    VlanTag string
    Assign interface to VLAN tag
    lldp GetEthernetInterfaceLayer2Lldp
    LLDP Settings
    vlanTag String
    Assign interface to VLAN tag
    lldp GetEthernetInterfaceLayer2Lldp
    LLDP Settings
    vlanTag string
    Assign interface to VLAN tag
    lldp GetEthernetInterfaceLayer2Lldp
    LLDP Settings
    vlan_tag str
    Assign interface to VLAN tag
    lldp Property Map
    LLDP Settings
    vlanTag String
    Assign interface to VLAN tag

    GetEthernetInterfaceLayer2Lldp

    Enable bool
    Enable LLDP on Interface
    Enable bool
    Enable LLDP on Interface
    enable Boolean
    Enable LLDP on Interface
    enable boolean
    Enable LLDP on Interface
    enable bool
    Enable LLDP on Interface
    enable Boolean
    Enable LLDP on Interface

    GetEthernetInterfaceLayer3

    Arps List<GetEthernetInterfaceLayer3Arp>
    Ethernet Interfaces ARP configuration
    DdnsConfig GetEthernetInterfaceLayer3DdnsConfig
    Dynamic DNS configuration specific to the Ethernet Interfaces.
    DhcpClient GetEthernetInterfaceLayer3DhcpClient
    Ethernet Interfaces DHCP Client Object
    InterfaceManagementProfile string
    Interface management profile
    Ips List<GetEthernetInterfaceLayer3Ip>
    Ethernet Interface IP addresses
    Mtu int
    MTU
    Pppoe GetEthernetInterfaceLayer3Pppoe
    Pppoe
    Arps []GetEthernetInterfaceLayer3Arp
    Ethernet Interfaces ARP configuration
    DdnsConfig GetEthernetInterfaceLayer3DdnsConfig
    Dynamic DNS configuration specific to the Ethernet Interfaces.
    DhcpClient GetEthernetInterfaceLayer3DhcpClient
    Ethernet Interfaces DHCP Client Object
    InterfaceManagementProfile string
    Interface management profile
    Ips []GetEthernetInterfaceLayer3Ip
    Ethernet Interface IP addresses
    Mtu int
    MTU
    Pppoe GetEthernetInterfaceLayer3Pppoe
    Pppoe
    arps List<GetEthernetInterfaceLayer3Arp>
    Ethernet Interfaces ARP configuration
    ddnsConfig GetEthernetInterfaceLayer3DdnsConfig
    Dynamic DNS configuration specific to the Ethernet Interfaces.
    dhcpClient GetEthernetInterfaceLayer3DhcpClient
    Ethernet Interfaces DHCP Client Object
    interfaceManagementProfile String
    Interface management profile
    ips List<GetEthernetInterfaceLayer3Ip>
    Ethernet Interface IP addresses
    mtu Integer
    MTU
    pppoe GetEthernetInterfaceLayer3Pppoe
    Pppoe
    arps GetEthernetInterfaceLayer3Arp[]
    Ethernet Interfaces ARP configuration
    ddnsConfig GetEthernetInterfaceLayer3DdnsConfig
    Dynamic DNS configuration specific to the Ethernet Interfaces.
    dhcpClient GetEthernetInterfaceLayer3DhcpClient
    Ethernet Interfaces DHCP Client Object
    interfaceManagementProfile string
    Interface management profile
    ips GetEthernetInterfaceLayer3Ip[]
    Ethernet Interface IP addresses
    mtu number
    MTU
    pppoe GetEthernetInterfaceLayer3Pppoe
    Pppoe
    arps Sequence[GetEthernetInterfaceLayer3Arp]
    Ethernet Interfaces ARP configuration
    ddns_config GetEthernetInterfaceLayer3DdnsConfig
    Dynamic DNS configuration specific to the Ethernet Interfaces.
    dhcp_client GetEthernetInterfaceLayer3DhcpClient
    Ethernet Interfaces DHCP Client Object
    interface_management_profile str
    Interface management profile
    ips Sequence[GetEthernetInterfaceLayer3Ip]
    Ethernet Interface IP addresses
    mtu int
    MTU
    pppoe GetEthernetInterfaceLayer3Pppoe
    Pppoe
    arps List<Property Map>
    Ethernet Interfaces ARP configuration
    ddnsConfig Property Map
    Dynamic DNS configuration specific to the Ethernet Interfaces.
    dhcpClient Property Map
    Ethernet Interfaces DHCP Client Object
    interfaceManagementProfile String
    Interface management profile
    ips List<Property Map>
    Ethernet Interface IP addresses
    mtu Number
    MTU
    pppoe Property Map
    Pppoe

    GetEthernetInterfaceLayer3Arp

    HwAddress string
    MAC address
    Name string
    IP address
    HwAddress string
    MAC address
    Name string
    IP address
    hwAddress String
    MAC address
    name String
    IP address
    hwAddress string
    MAC address
    name string
    IP address
    hw_address str
    MAC address
    name str
    IP address
    hwAddress String
    MAC address
    name String
    IP address

    GetEthernetInterfaceLayer3DdnsConfig

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

    GetEthernetInterfaceLayer3DhcpClient

    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 GetEthernetInterfaceLayer3DhcpClientSendHostname
    Ethernet Interfaces DHCP ClientSend 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 GetEthernetInterfaceLayer3DhcpClientSendHostname
    Ethernet Interfaces DHCP ClientSend 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 GetEthernetInterfaceLayer3DhcpClientSendHostname
    Ethernet Interfaces DHCP ClientSend 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 GetEthernetInterfaceLayer3DhcpClientSendHostname
    Ethernet Interfaces DHCP ClientSend 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 GetEthernetInterfaceLayer3DhcpClientSendHostname
    Ethernet Interfaces DHCP ClientSend 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
    Ethernet Interfaces DHCP ClientSend hostname

    GetEthernetInterfaceLayer3DhcpClientSendHostname

    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

    GetEthernetInterfaceLayer3Ip

    Name string
    Ethernet Interface IP addresses name
    Name string
    Ethernet Interface IP addresses name
    name String
    Ethernet Interface IP addresses name
    name string
    Ethernet Interface IP addresses name
    name str
    Ethernet Interface IP addresses name
    name String
    Ethernet Interface IP addresses name

    GetEthernetInterfaceLayer3Pppoe

    AccessConcentrator string
    Access concentrator
    Authentication string
    Authentication protocol
    DefaultRouteMetric int
    Metric of the default route created
    Enable bool
    Enable
    Passive GetEthernetInterfaceLayer3PppoePassive
    Passive
    Password string
    Password
    Service string
    Service
    StaticAddress GetEthernetInterfaceLayer3PppoeStaticAddress
    Static address
    Username string
    Username
    AccessConcentrator string
    Access concentrator
    Authentication string
    Authentication protocol
    DefaultRouteMetric int
    Metric of the default route created
    Enable bool
    Enable
    Passive GetEthernetInterfaceLayer3PppoePassive
    Passive
    Password string
    Password
    Service string
    Service
    StaticAddress GetEthernetInterfaceLayer3PppoeStaticAddress
    Static address
    Username string
    Username
    accessConcentrator String
    Access concentrator
    authentication String
    Authentication protocol
    defaultRouteMetric Integer
    Metric of the default route created
    enable Boolean
    Enable
    passive GetEthernetInterfaceLayer3PppoePassive
    Passive
    password String
    Password
    service String
    Service
    staticAddress GetEthernetInterfaceLayer3PppoeStaticAddress
    Static address
    username String
    Username
    accessConcentrator string
    Access concentrator
    authentication string
    Authentication protocol
    defaultRouteMetric number
    Metric of the default route created
    enable boolean
    Enable
    passive GetEthernetInterfaceLayer3PppoePassive
    Passive
    password string
    Password
    service string
    Service
    staticAddress GetEthernetInterfaceLayer3PppoeStaticAddress
    Static address
    username string
    Username
    access_concentrator str
    Access concentrator
    authentication str
    Authentication protocol
    default_route_metric int
    Metric of the default route created
    enable bool
    Enable
    passive GetEthernetInterfaceLayer3PppoePassive
    Passive
    password str
    Password
    service str
    Service
    static_address GetEthernetInterfaceLayer3PppoeStaticAddress
    Static address
    username str
    Username
    accessConcentrator String
    Access concentrator
    authentication String
    Authentication protocol
    defaultRouteMetric Number
    Metric of the default route created
    enable Boolean
    Enable
    passive Property Map
    Passive
    password String
    Password
    service String
    Service
    staticAddress Property Map
    Static address
    username String
    Username

    GetEthernetInterfaceLayer3PppoePassive

    Enable bool
    Passive Mode enabled
    Enable bool
    Passive Mode enabled
    enable Boolean
    Passive Mode enabled
    enable boolean
    Passive Mode enabled
    enable bool
    Passive Mode enabled
    enable Boolean
    Passive Mode enabled

    GetEthernetInterfaceLayer3PppoeStaticAddress

    Ip string
    Static IP address
    Ip string
    Static IP address
    ip String
    Static IP address
    ip string
    Static IP address
    ip str
    Static IP address
    ip String
    Static IP address

    GetEthernetInterfacePoe

    PoeEnabled bool
    Enabled PoE?
    PoeRsvdPwr int
    PoE reserved power
    PoeEnabled bool
    Enabled PoE?
    PoeRsvdPwr int
    PoE reserved power
    poeEnabled Boolean
    Enabled PoE?
    poeRsvdPwr Integer
    PoE reserved power
    poeEnabled boolean
    Enabled PoE?
    poeRsvdPwr number
    PoE reserved power
    poe_enabled bool
    Enabled PoE?
    poe_rsvd_pwr int
    PoE reserved power
    poeEnabled Boolean
    Enabled PoE?
    poeRsvdPwr Number
    PoE reserved power

    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