Viewing docs for Strata Cloud Manager v0.4.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
Viewing docs for Strata Cloud Manager v0.4.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 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 dictionaryThe following arguments are supported:
getTunnelInterfaceList Result
The following output properties are available:
- Datas
List<Get
Tunnel Interface List Data> - 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
[]Get
Tunnel Interface List Data - 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<Get
Tunnel Interface List Data> - 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
Get
Tunnel Interface List Data[] - 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[Get
Tunnel Interface List Data] - 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
GetTunnelInterfaceListData
- Comment string
- Description
- Default
Value string - Default interface assignment
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Id string
- UUID of the resource
- Interface
Management stringProfile - Interface management profile
- Ips
List<Get
Tunnel Interface List Data Ip> - Tunnel Interface IP Parent
- Mtu int
- MTU
- Name string
- L3 sub-interface name
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- Comment string
- Description
- Default
Value string - Default interface assignment
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Id string
- UUID of the resource
- Interface
Management stringProfile - Interface management profile
- Ips
[]Get
Tunnel Interface List Data Ip - Tunnel Interface IP Parent
- Mtu int
- MTU
- Name string
- L3 sub-interface name
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- comment String
- Description
- default
Value String - Default interface assignment
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- id String
- UUID of the resource
- interface
Management StringProfile - Interface management profile
- ips
List<Get
Tunnel Interface List Data Ip> - Tunnel Interface IP Parent
- mtu Integer
- MTU
- name String
- L3 sub-interface name
- snippet String
- The snippet in which the resource is defined
- tfid String
- comment string
- Description
- default
Value string - Default interface assignment
- device string
- The device in which the resource is defined
- folder string
- The folder in which the resource is defined
- id string
- UUID of the resource
- interface
Management stringProfile - Interface management profile
- ips
Get
Tunnel Interface List Data Ip[] - Tunnel Interface IP Parent
- mtu number
- MTU
- name string
- L3 sub-interface name
- snippet string
- The snippet in which the resource is defined
- tfid string
- comment str
- Description
- default_
value str - Default interface assignment
- device str
- The device in which the resource is defined
- folder str
- The folder in which the resource is defined
- id str
- UUID of the resource
- interface_
management_ strprofile - Interface management profile
- ips
Sequence[Get
Tunnel Interface List Data Ip] - Tunnel Interface IP Parent
- mtu int
- MTU
- name str
- L3 sub-interface name
- snippet str
- The snippet in which the resource is defined
- tfid str
- comment String
- Description
- default
Value String - Default interface assignment
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- id String
- UUID of the resource
- interface
Management StringProfile - Interface management profile
- ips List<Property Map>
- Tunnel Interface IP Parent
- mtu Number
- MTU
- name String
- L3 sub-interface name
- snippet String
- The snippet in which the resource is defined
- tfid String
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)
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
Viewing docs for Strata Cloud Manager v0.4.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi