1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getTunnelInterfaceList
Viewing docs for Strata Cloud Manager v1.0.5
published on Saturday, Mar 21, 2026 by Pulumi
scm logo
Viewing docs for Strata Cloud Manager v1.0.5
published on Saturday, Mar 21, 2026 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 tunnel interfaces
    const allTunnelInterfaces = scm.getTunnelInterfaceList({
        folder: "ngfw-shared",
    });
    export const scmTunnelInterfaceList = allTunnelInterfaces.then(allTunnelInterfaces => .reduce((__obj, interface) => ({ ...__obj, [_interface.name]: _interface })));
    
    import pulumi
    import pulumi_scm as scm
    
    # Fetch a list of all tunnel interfaces
    all_tunnel_interfaces = scm.get_tunnel_interface_list(folder="ngfw-shared")
    pulumi.export("scmTunnelInterfaceList", {interface.name: interface for interface in all_tunnel_interfaces.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 tunnel interfaces
        var allTunnelInterfaces = Scm.GetTunnelInterfaceList.Invoke(new()
        {
            Folder = "ngfw-shared",
        });
    
        return new Dictionary<string, object?>
        {
            ["scmTunnelInterfaceList"] = ,
        };
    });
    
    Example coming soon!
    
    Example coming soon!
    

    Using getTunnelInterfaceList

    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 getTunnelInterfaceList(args: GetTunnelInterfaceListArgs, opts?: InvokeOptions): Promise<GetTunnelInterfaceListResult>
    function getTunnelInterfaceListOutput(args: GetTunnelInterfaceListOutputArgs, opts?: InvokeOptions): Output<GetTunnelInterfaceListResult>
    def get_tunnel_interface_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) -> GetTunnelInterfaceListResult
    def get_tunnel_interface_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[GetTunnelInterfaceListResult]
    func GetTunnelInterfaceList(ctx *Context, args *GetTunnelInterfaceListArgs, opts ...InvokeOption) (*GetTunnelInterfaceListResult, error)
    func GetTunnelInterfaceListOutput(ctx *Context, args *GetTunnelInterfaceListOutputArgs, opts ...InvokeOption) GetTunnelInterfaceListResultOutput

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

    public static class GetTunnelInterfaceList 
    {
        public static Task<GetTunnelInterfaceListResult> InvokeAsync(GetTunnelInterfaceListArgs args, InvokeOptions? opts = null)
        public static Output<GetTunnelInterfaceListResult> Invoke(GetTunnelInterfaceListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetTunnelInterfaceListResult> getTunnelInterfaceList(GetTunnelInterfaceListArgs args, InvokeOptions options)
    public static Output<GetTunnelInterfaceListResult> getTunnelInterfaceList(GetTunnelInterfaceListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getTunnelInterfaceList:getTunnelInterfaceList
      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.

    getTunnelInterfaceList Result

    The following output properties are available:

    Datas List<GetTunnelInterfaceListData>
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    The Terraform ID.
    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 []GetTunnelInterfaceListData
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    The Terraform ID.
    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<GetTunnelInterfaceListData>
    The data.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    The Terraform ID.
    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 GetTunnelInterfaceListData[]
    The data.
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    The Terraform ID.
    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[GetTunnelInterfaceListData]
    The data.
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    The Terraform ID.
    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
    The Terraform ID.
    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

    GetTunnelInterfaceListData

    Comment string
    Description for tunnel interface
    DefaultValue string
    Default interface assignment for tunnel interface
    Device string
    The device in which the resource is defined
    Folder string
    The folder of the item. Default: Shared.
    Id string
    UUID of the resource for tunnel interface
    InterfaceManagementProfile string
    Interface management profile for tunnel interface
    Ips List<GetTunnelInterfaceListDataIp>
    Tunnel Interface IP Parent
    Ipv6 GetTunnelInterfaceListDataIpv6
    Tunnel Interface IPv6 Configuration
    Mtu int
    MTU for tunnel interface
    Name string
    The name of the item.
    NetflowProfile string
    Name of Netflow Profile to assign to Interface
    Snippet string
    The snippet of the item.
    Tfid string
    The Terraform ID.
    Comment string
    Description for tunnel interface
    DefaultValue string
    Default interface assignment for tunnel interface
    Device string
    The device in which the resource is defined
    Folder string
    The folder of the item. Default: Shared.
    Id string
    UUID of the resource for tunnel interface
    InterfaceManagementProfile string
    Interface management profile for tunnel interface
    Ips []GetTunnelInterfaceListDataIp
    Tunnel Interface IP Parent
    Ipv6 GetTunnelInterfaceListDataIpv6
    Tunnel Interface IPv6 Configuration
    Mtu int
    MTU for tunnel interface
    Name string
    The name of the item.
    NetflowProfile string
    Name of Netflow Profile to assign to Interface
    Snippet string
    The snippet of the item.
    Tfid string
    The Terraform ID.
    comment String
    Description for tunnel interface
    defaultValue String
    Default interface assignment for tunnel interface
    device String
    The device in which the resource is defined
    folder String
    The folder of the item. Default: Shared.
    id String
    UUID of the resource for tunnel interface
    interfaceManagementProfile String
    Interface management profile for tunnel interface
    ips List<GetTunnelInterfaceListDataIp>
    Tunnel Interface IP Parent
    ipv6 GetTunnelInterfaceListDataIpv6
    Tunnel Interface IPv6 Configuration
    mtu Integer
    MTU for tunnel interface
    name String
    The name of the item.
    netflowProfile String
    Name of Netflow Profile to assign to Interface
    snippet String
    The snippet of the item.
    tfid String
    The Terraform ID.
    comment string
    Description for tunnel interface
    defaultValue string
    Default interface assignment for tunnel interface
    device string
    The device in which the resource is defined
    folder string
    The folder of the item. Default: Shared.
    id string
    UUID of the resource for tunnel interface
    interfaceManagementProfile string
    Interface management profile for tunnel interface
    ips GetTunnelInterfaceListDataIp[]
    Tunnel Interface IP Parent
    ipv6 GetTunnelInterfaceListDataIpv6
    Tunnel Interface IPv6 Configuration
    mtu number
    MTU for tunnel interface
    name string
    The name of the item.
    netflowProfile string
    Name of Netflow Profile to assign to Interface
    snippet string
    The snippet of the item.
    tfid string
    The Terraform ID.
    comment str
    Description for tunnel interface
    default_value str
    Default interface assignment for tunnel interface
    device str
    The device in which the resource is defined
    folder str
    The folder of the item. Default: Shared.
    id str
    UUID of the resource for tunnel interface
    interface_management_profile str
    Interface management profile for tunnel interface
    ips Sequence[GetTunnelInterfaceListDataIp]
    Tunnel Interface IP Parent
    ipv6 GetTunnelInterfaceListDataIpv6
    Tunnel Interface IPv6 Configuration
    mtu int
    MTU for tunnel interface
    name str
    The name of the item.
    netflow_profile str
    Name of Netflow Profile to assign to Interface
    snippet str
    The snippet of the item.
    tfid str
    The Terraform ID.
    comment String
    Description for tunnel interface
    defaultValue String
    Default interface assignment for tunnel interface
    device String
    The device in which the resource is defined
    folder String
    The folder of the item. Default: Shared.
    id String
    UUID of the resource for tunnel interface
    interfaceManagementProfile String
    Interface management profile for tunnel interface
    ips List<Property Map>
    Tunnel Interface IP Parent
    ipv6 Property Map
    Tunnel Interface IPv6 Configuration
    mtu Number
    MTU for tunnel interface
    name String
    The name of the item.
    netflowProfile String
    Name of Netflow Profile to assign to Interface
    snippet String
    The snippet of the item.
    tfid String
    The Terraform ID.

    GetTunnelInterfaceListDataIp

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

    GetTunnelInterfaceListDataIpv6

    Addresses List<GetTunnelInterfaceListDataIpv6Address>
    IPv6 Address Parent for tunnel interface
    Enabled bool
    Enable IPv6 for tunnel interface
    InterfaceId string
    Interface ID for tunnel interface
    Addresses []GetTunnelInterfaceListDataIpv6Address
    IPv6 Address Parent for tunnel interface
    Enabled bool
    Enable IPv6 for tunnel interface
    InterfaceId string
    Interface ID for tunnel interface
    addresses List<GetTunnelInterfaceListDataIpv6Address>
    IPv6 Address Parent for tunnel interface
    enabled Boolean
    Enable IPv6 for tunnel interface
    interfaceId String
    Interface ID for tunnel interface
    addresses GetTunnelInterfaceListDataIpv6Address[]
    IPv6 Address Parent for tunnel interface
    enabled boolean
    Enable IPv6 for tunnel interface
    interfaceId string
    Interface ID for tunnel interface
    addresses Sequence[GetTunnelInterfaceListDataIpv6Address]
    IPv6 Address Parent for tunnel interface
    enabled bool
    Enable IPv6 for tunnel interface
    interface_id str
    Interface ID for tunnel interface
    addresses List<Property Map>
    IPv6 Address Parent for tunnel interface
    enabled Boolean
    Enable IPv6 for tunnel interface
    interfaceId String
    Interface ID for tunnel interface

    GetTunnelInterfaceListDataIpv6Address

    Anycast GetTunnelInterfaceListDataIpv6AddressAnycast
    Anycast for tunnel interface
    EnableOnInterface bool
    Enable Address on Interface for tunnel interface
    Name string
    IPv6 Address for tunnel interface
    Prefix GetTunnelInterfaceListDataIpv6AddressPrefix
    Use interface ID as host portion for tunnel interface
    Anycast GetTunnelInterfaceListDataIpv6AddressAnycast
    Anycast for tunnel interface
    EnableOnInterface bool
    Enable Address on Interface for tunnel interface
    Name string
    IPv6 Address for tunnel interface
    Prefix GetTunnelInterfaceListDataIpv6AddressPrefix
    Use interface ID as host portion for tunnel interface
    anycast GetTunnelInterfaceListDataIpv6AddressAnycast
    Anycast for tunnel interface
    enableOnInterface Boolean
    Enable Address on Interface for tunnel interface
    name String
    IPv6 Address for tunnel interface
    prefix GetTunnelInterfaceListDataIpv6AddressPrefix
    Use interface ID as host portion for tunnel interface
    anycast GetTunnelInterfaceListDataIpv6AddressAnycast
    Anycast for tunnel interface
    enableOnInterface boolean
    Enable Address on Interface for tunnel interface
    name string
    IPv6 Address for tunnel interface
    prefix GetTunnelInterfaceListDataIpv6AddressPrefix
    Use interface ID as host portion for tunnel interface
    anycast GetTunnelInterfaceListDataIpv6AddressAnycast
    Anycast for tunnel interface
    enable_on_interface bool
    Enable Address on Interface for tunnel interface
    name str
    IPv6 Address for tunnel interface
    prefix GetTunnelInterfaceListDataIpv6AddressPrefix
    Use interface ID as host portion for tunnel interface
    anycast Property Map
    Anycast for tunnel interface
    enableOnInterface Boolean
    Enable Address on Interface for tunnel interface
    name String
    IPv6 Address for tunnel interface
    prefix Property Map
    Use interface ID as host portion for tunnel interface

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Viewing docs for Strata Cloud Manager v1.0.5
    published on Saturday, Mar 21, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.