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

    Retrieves a listing of config items.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    // Fetch a list of all layer3 sub-interfaces
    const allLayer3Subinterfaces = scm.getLayer3SubinterfaceList({
        folder: "ngfw-shared",
    });
    export const scmLayer3SubinterfaceList = allLayer3Subinterfaces.then(allLayer3Subinterfaces => .reduce((__obj, interface) => ({ ...__obj, [_interface.name]: _interface })));
    
    import pulumi
    import pulumi_scm as scm
    
    # Fetch a list of all layer3 sub-interfaces
    all_layer3_subinterfaces = scm.get_layer3_subinterface_list(folder="ngfw-shared")
    pulumi.export("scmLayer3SubinterfaceList", {interface.name: interface for interface in all_layer3_subinterfaces.datas})
    
    Example coming soon!
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // Fetch a list of all layer3 sub-interfaces
        var allLayer3Subinterfaces = Scm.GetLayer3SubinterfaceList.Invoke(new()
        {
            Folder = "ngfw-shared",
        });
    
        return new Dictionary<string, object?>
        {
            ["scmLayer3SubinterfaceList"] = ,
        };
    });
    
    Example coming soon!
    
    Example coming soon!
    

    Using getLayer3SubinterfaceList

    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 getLayer3SubinterfaceList(args: GetLayer3SubinterfaceListArgs, opts?: InvokeOptions): Promise<GetLayer3SubinterfaceListResult>
    function getLayer3SubinterfaceListOutput(args: GetLayer3SubinterfaceListOutputArgs, opts?: InvokeOptions): Output<GetLayer3SubinterfaceListResult>
    def get_layer3_subinterface_list(device: Optional[str] = None,
                                     folder: Optional[str] = None,
                                     limit: Optional[int] = None,
                                     name: Optional[str] = None,
                                     offset: Optional[int] = None,
                                     snippet: Optional[str] = None,
                                     opts: Optional[InvokeOptions] = None) -> GetLayer3SubinterfaceListResult
    def get_layer3_subinterface_list_output(device: Optional[pulumi.Input[str]] = None,
                                     folder: Optional[pulumi.Input[str]] = None,
                                     limit: Optional[pulumi.Input[int]] = None,
                                     name: Optional[pulumi.Input[str]] = None,
                                     offset: Optional[pulumi.Input[int]] = None,
                                     snippet: Optional[pulumi.Input[str]] = None,
                                     opts: Optional[InvokeOptions] = None) -> Output[GetLayer3SubinterfaceListResult]
    func GetLayer3SubinterfaceList(ctx *Context, args *GetLayer3SubinterfaceListArgs, opts ...InvokeOption) (*GetLayer3SubinterfaceListResult, error)
    func GetLayer3SubinterfaceListOutput(ctx *Context, args *GetLayer3SubinterfaceListOutputArgs, opts ...InvokeOption) GetLayer3SubinterfaceListResultOutput

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

    public static class GetLayer3SubinterfaceList 
    {
        public static Task<GetLayer3SubinterfaceListResult> InvokeAsync(GetLayer3SubinterfaceListArgs args, InvokeOptions? opts = null)
        public static Output<GetLayer3SubinterfaceListResult> Invoke(GetLayer3SubinterfaceListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetLayer3SubinterfaceListResult> getLayer3SubinterfaceList(GetLayer3SubinterfaceListArgs args, InvokeOptions options)
    public static Output<GetLayer3SubinterfaceListResult> getLayer3SubinterfaceList(GetLayer3SubinterfaceListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getLayer3SubinterfaceList:getLayer3SubinterfaceList
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Integer
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Integer
    The offset of the first item to return.
    snippet String
    The snippet of the item.
    device string
    The device of the item.
    folder string
    The folder of the item. Default: Shared.
    limit number
    The max number of items to return. Default: 200.
    name string
    The name of the item.
    offset number
    The offset of the first item to return.
    snippet string
    The snippet of the item.
    device str
    The device of the item.
    folder str
    The folder of the item. Default: Shared.
    limit int
    The max number of items to return. Default: 200.
    name str
    The name of the item.
    offset int
    The offset of the first item to return.
    snippet str
    The snippet of the item.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Number
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Number
    The offset of the first item to return.
    snippet String
    The snippet of the item.

    getLayer3SubinterfaceList Result

    The following output properties are available:

    Datas List<GetLayer3SubinterfaceListData>
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Total int
    The total number of items.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    Datas []GetLayer3SubinterfaceListData
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Total int
    The total number of items.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    datas List<GetLayer3SubinterfaceListData>
    The data.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    total Integer
    The total number of items.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Integer
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Integer
    The offset of the first item to return.
    snippet String
    The snippet of the item.
    datas GetLayer3SubinterfaceListData[]
    The data.
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    total number
    The total number of items.
    device string
    The device of the item.
    folder string
    The folder of the item. Default: Shared.
    limit number
    The max number of items to return. Default: 200.
    name string
    The name of the item.
    offset number
    The offset of the first item to return.
    snippet string
    The snippet of the item.
    datas Sequence[GetLayer3SubinterfaceListData]
    The data.
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    total int
    The total number of items.
    device str
    The device of the item.
    folder str
    The folder of the item. Default: Shared.
    limit int
    The max number of items to return. Default: 200.
    name str
    The name of the item.
    offset int
    The offset of the first item to return.
    snippet str
    The snippet of the item.
    datas List<Property Map>
    The data.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    total Number
    The total number of items.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Number
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Number
    The offset of the first item to return.
    snippet String
    The snippet of the item.

    Supporting Types

    GetLayer3SubinterfaceListData

    Arps List<GetLayer3SubinterfaceListDataArp>
    Layer 3 sub Interfaces ARP configuration
    Comment string
    Description
    DdnsConfig GetLayer3SubinterfaceListDataDdnsConfig
    Dynamic DNS configuration specific to the Layer 3 sub Interfaces.
    Device string
    The device in which the resource is defined
    DhcpClient GetLayer3SubinterfaceListDataDhcpClient
    Layer3 sub interfaces DHCP Client Object
    Folder string
    The folder in which the resource is defined
    Id string
    UUID of the resource
    InterfaceManagementProfile string
    Interface management profile
    Ips List<GetLayer3SubinterfaceListDataIp>
    L3 sub-interface IP Parent
    Mtu int
    MTU
    Name string
    L3 sub-interface name
    ParentInterface string
    Parent interface
    Snippet string
    The snippet in which the resource is defined
    Tag int
    VLAN tag
    Tfid string
    Arps []GetLayer3SubinterfaceListDataArp
    Layer 3 sub Interfaces ARP configuration
    Comment string
    Description
    DdnsConfig GetLayer3SubinterfaceListDataDdnsConfig
    Dynamic DNS configuration specific to the Layer 3 sub Interfaces.
    Device string
    The device in which the resource is defined
    DhcpClient GetLayer3SubinterfaceListDataDhcpClient
    Layer3 sub interfaces DHCP Client Object
    Folder string
    The folder in which the resource is defined
    Id string
    UUID of the resource
    InterfaceManagementProfile string
    Interface management profile
    Ips []GetLayer3SubinterfaceListDataIp
    L3 sub-interface IP Parent
    Mtu int
    MTU
    Name string
    L3 sub-interface name
    ParentInterface string
    Parent interface
    Snippet string
    The snippet in which the resource is defined
    Tag int
    VLAN tag
    Tfid string
    arps List<GetLayer3SubinterfaceListDataArp>
    Layer 3 sub Interfaces ARP configuration
    comment String
    Description
    ddnsConfig GetLayer3SubinterfaceListDataDdnsConfig
    Dynamic DNS configuration specific to the Layer 3 sub Interfaces.
    device String
    The device in which the resource is defined
    dhcpClient GetLayer3SubinterfaceListDataDhcpClient
    Layer3 sub interfaces DHCP Client Object
    folder String
    The folder in which the resource is defined
    id String
    UUID of the resource
    interfaceManagementProfile String
    Interface management profile
    ips List<GetLayer3SubinterfaceListDataIp>
    L3 sub-interface IP Parent
    mtu Integer
    MTU
    name String
    L3 sub-interface name
    parentInterface String
    Parent interface
    snippet String
    The snippet in which the resource is defined
    tag Integer
    VLAN tag
    tfid String
    arps GetLayer3SubinterfaceListDataArp[]
    Layer 3 sub Interfaces ARP configuration
    comment string
    Description
    ddnsConfig GetLayer3SubinterfaceListDataDdnsConfig
    Dynamic DNS configuration specific to the Layer 3 sub Interfaces.
    device string
    The device in which the resource is defined
    dhcpClient GetLayer3SubinterfaceListDataDhcpClient
    Layer3 sub interfaces DHCP Client Object
    folder string
    The folder in which the resource is defined
    id string
    UUID of the resource
    interfaceManagementProfile string
    Interface management profile
    ips GetLayer3SubinterfaceListDataIp[]
    L3 sub-interface IP Parent
    mtu number
    MTU
    name string
    L3 sub-interface name
    parentInterface string
    Parent interface
    snippet string
    The snippet in which the resource is defined
    tag number
    VLAN tag
    tfid string
    arps Sequence[GetLayer3SubinterfaceListDataArp]
    Layer 3 sub Interfaces ARP configuration
    comment str
    Description
    ddns_config GetLayer3SubinterfaceListDataDdnsConfig
    Dynamic DNS configuration specific to the Layer 3 sub Interfaces.
    device str
    The device in which the resource is defined
    dhcp_client GetLayer3SubinterfaceListDataDhcpClient
    Layer3 sub interfaces DHCP Client Object
    folder str
    The folder in which the resource is defined
    id str
    UUID of the resource
    interface_management_profile str
    Interface management profile
    ips Sequence[GetLayer3SubinterfaceListDataIp]
    L3 sub-interface IP Parent
    mtu int
    MTU
    name str
    L3 sub-interface name
    parent_interface str
    Parent interface
    snippet str
    The snippet in which the resource is defined
    tag int
    VLAN tag
    tfid str
    arps List<Property Map>
    Layer 3 sub Interfaces ARP configuration
    comment String
    Description
    ddnsConfig Property Map
    Dynamic DNS configuration specific to the Layer 3 sub Interfaces.
    device String
    The device in which the resource is defined
    dhcpClient Property Map
    Layer3 sub interfaces DHCP Client Object
    folder String
    The folder in which the resource is defined
    id String
    UUID of the resource
    interfaceManagementProfile String
    Interface management profile
    ips List<Property Map>
    L3 sub-interface IP Parent
    mtu Number
    MTU
    name String
    L3 sub-interface name
    parentInterface String
    Parent interface
    snippet String
    The snippet in which the resource is defined
    tag Number
    VLAN tag
    tfid String

    GetLayer3SubinterfaceListDataArp

    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

    GetLayer3SubinterfaceListDataDdnsConfig

    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

    GetLayer3SubinterfaceListDataDhcpClient

    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 GetLayer3SubinterfaceListDataDhcpClientSendHostname
    Layer3 sub interfaces DHCP Client 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 GetLayer3SubinterfaceListDataDhcpClientSendHostname
    Layer3 sub interfaces DHCP Client 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 GetLayer3SubinterfaceListDataDhcpClientSendHostname
    Layer3 sub interfaces DHCP Client 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 GetLayer3SubinterfaceListDataDhcpClientSendHostname
    Layer3 sub interfaces DHCP Client 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 GetLayer3SubinterfaceListDataDhcpClientSendHostname
    Layer3 sub interfaces DHCP Client 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
    Layer3 sub interfaces DHCP Client Send hostname

    GetLayer3SubinterfaceListDataDhcpClientSendHostname

    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

    GetLayer3SubinterfaceListDataIp

    Name string
    L3 sub-interface IP address(es)
    Name string
    L3 sub-interface IP address(es)
    name String
    L3 sub-interface IP address(es)
    name string
    L3 sub-interface IP address(es)
    name str
    L3 sub-interface IP address(es)
    name String
    L3 sub-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