Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
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 aggregate interfaces
const allAggregateInterfaces = scm.getAggregateInterfaceList({
folder: "ngfw-shared",
});
export const scmAggregateInterfaceList = allAggregateInterfaces.then(allAggregateInterfaces => .reduce((__obj, interface) => ({ ...__obj, [_interface.name]: _interface })));
import pulumi
import pulumi_scm as scm
# Fetch a list of all aggregate interfaces
all_aggregate_interfaces = scm.get_aggregate_interface_list(folder="ngfw-shared")
pulumi.export("scmAggregateInterfaceList", {interface.name: interface for interface in all_aggregate_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 aggregate interfaces
var allAggregateInterfaces = Scm.GetAggregateInterfaceList.Invoke(new()
{
Folder = "ngfw-shared",
});
return new Dictionary<string, object?>
{
["scmAggregateInterfaceList"] = ,
};
});
Example coming soon!
Example coming soon!
Using getAggregateInterfaceList
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 getAggregateInterfaceList(args: GetAggregateInterfaceListArgs, opts?: InvokeOptions): Promise<GetAggregateInterfaceListResult>
function getAggregateInterfaceListOutput(args: GetAggregateInterfaceListOutputArgs, opts?: InvokeOptions): Output<GetAggregateInterfaceListResult>def get_aggregate_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) -> GetAggregateInterfaceListResult
def get_aggregate_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[GetAggregateInterfaceListResult]func GetAggregateInterfaceList(ctx *Context, args *GetAggregateInterfaceListArgs, opts ...InvokeOption) (*GetAggregateInterfaceListResult, error)
func GetAggregateInterfaceListOutput(ctx *Context, args *GetAggregateInterfaceListOutputArgs, opts ...InvokeOption) GetAggregateInterfaceListResultOutput> Note: This function is named GetAggregateInterfaceList in the Go SDK.
public static class GetAggregateInterfaceList
{
public static Task<GetAggregateInterfaceListResult> InvokeAsync(GetAggregateInterfaceListArgs args, InvokeOptions? opts = null)
public static Output<GetAggregateInterfaceListResult> Invoke(GetAggregateInterfaceListInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetAggregateInterfaceListResult> getAggregateInterfaceList(GetAggregateInterfaceListArgs args, InvokeOptions options)
public static Output<GetAggregateInterfaceListResult> getAggregateInterfaceList(GetAggregateInterfaceListArgs args, InvokeOptions options)
fn::invoke:
function: scm:index/getAggregateInterfaceList:getAggregateInterfaceList
arguments:
# arguments dictionaryThe following arguments are supported:
getAggregateInterfaceList Result
The following output properties are available:
- Datas
List<Get
Aggregate 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
Aggregate 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
Aggregate 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
Aggregate 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
Aggregate 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
GetAggregateInterfaceListData
- Comment string
- Aggregate interface 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
- Layer2
Get
Aggregate Interface List Data Layer2 - Layer2
- Layer3
Get
Aggregate Interface List Data Layer3 - Aggregate Interface Layer 3 configuration
- Name string
- Aggregate interface name
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- Comment string
- Aggregate interface 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
- Layer2
Get
Aggregate Interface List Data Layer2 - Layer2
- Layer3
Get
Aggregate Interface List Data Layer3 - Aggregate Interface Layer 3 configuration
- Name string
- Aggregate interface name
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- comment String
- Aggregate interface 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
- layer2
Get
Aggregate Interface List Data Layer2 - Layer2
- layer3
Get
Aggregate Interface List Data Layer3 - Aggregate Interface Layer 3 configuration
- name String
- Aggregate interface name
- snippet String
- The snippet in which the resource is defined
- tfid String
- comment string
- Aggregate interface 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
- layer2
Get
Aggregate Interface List Data Layer2 - Layer2
- layer3
Get
Aggregate Interface List Data Layer3 - Aggregate Interface Layer 3 configuration
- name string
- Aggregate interface name
- snippet string
- The snippet in which the resource is defined
- tfid string
- comment str
- Aggregate interface 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
- layer2
Get
Aggregate Interface List Data Layer2 - Layer2
- layer3
Get
Aggregate Interface List Data Layer3 - Aggregate Interface Layer 3 configuration
- name str
- Aggregate interface name
- snippet str
- The snippet in which the resource is defined
- tfid str
- comment String
- Aggregate interface 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
- layer2 Property Map
- Layer2
- layer3 Property Map
- Aggregate Interface Layer 3 configuration
- name String
- Aggregate interface name
- snippet String
- The snippet in which the resource is defined
- tfid String
GetAggregateInterfaceListDataLayer2
- Lacp
Get
Aggregate Interface List Data Layer2Lacp - Lacp
- Vlan
Tag string - VLAN tag
- Lacp
Get
Aggregate Interface List Data Layer2Lacp - Lacp
- Vlan
Tag string - VLAN tag
- lacp
Get
Aggregate Interface List Data Layer2Lacp - Lacp
- vlan
Tag String - VLAN tag
- lacp
Get
Aggregate Interface List Data Layer2Lacp - Lacp
- vlan
Tag string - VLAN tag
- lacp
Get
Aggregate Interface List Data Layer2Lacp - Lacp
- vlan_
tag str - VLAN tag
- lacp Property Map
- Lacp
- vlan
Tag String - VLAN tag
GetAggregateInterfaceListDataLayer2Lacp
- Enable bool
- Enable LACP?
- Fast
Failover bool - Fast failover
- Max
Ports int - Maximum number of physical ports bundled in the LAG
- Mode string
- Mode
- System
Priority int - LACP system priority in system ID
- Transmission
Rate string - Transmission mode
- Enable bool
- Enable LACP?
- Fast
Failover bool - Fast failover
- Max
Ports int - Maximum number of physical ports bundled in the LAG
- Mode string
- Mode
- System
Priority int - LACP system priority in system ID
- Transmission
Rate string - Transmission mode
- enable Boolean
- Enable LACP?
- fast
Failover Boolean - Fast failover
- max
Ports Integer - Maximum number of physical ports bundled in the LAG
- mode String
- Mode
- system
Priority Integer - LACP system priority in system ID
- transmission
Rate String - Transmission mode
- enable boolean
- Enable LACP?
- fast
Failover boolean - Fast failover
- max
Ports number - Maximum number of physical ports bundled in the LAG
- mode string
- Mode
- system
Priority number - LACP system priority in system ID
- transmission
Rate string - Transmission mode
- enable bool
- Enable LACP?
- fast_
failover bool - Fast failover
- max_
ports int - Maximum number of physical ports bundled in the LAG
- mode str
- Mode
- system_
priority int - LACP system priority in system ID
- transmission_
rate str - Transmission mode
- enable Boolean
- Enable LACP?
- fast
Failover Boolean - Fast failover
- max
Ports Number - Maximum number of physical ports bundled in the LAG
- mode String
- Mode
- system
Priority Number - LACP system priority in system ID
- transmission
Rate String - Transmission mode
GetAggregateInterfaceListDataLayer3
- Arps
List<Get
Aggregate Interface List Data Layer3Arp> - Aggregate Ethernet ARP configuration
- Ddns
Config GetAggregate Interface List Data Layer3Ddns Config - Dynamic DNS configuration specific to the Aggregate Interface.
- Dhcp
Client GetAggregate Interface List Data Layer3Dhcp Client - Aggregate Ethernet DHCP Client Object
- Interface
Management stringProfile - Interface management profile
- Ips
List<Get
Aggregate Interface List Data Layer3Ip> - Aggregate Interface IP addresses
- Lacp
Get
Aggregate Interface List Data Layer3Lacp - Lacp
- Mtu int
- MTU
- Arps
[]Get
Aggregate Interface List Data Layer3Arp - Aggregate Ethernet ARP configuration
- Ddns
Config GetAggregate Interface List Data Layer3Ddns Config - Dynamic DNS configuration specific to the Aggregate Interface.
- Dhcp
Client GetAggregate Interface List Data Layer3Dhcp Client - Aggregate Ethernet DHCP Client Object
- Interface
Management stringProfile - Interface management profile
- Ips
[]Get
Aggregate Interface List Data Layer3Ip - Aggregate Interface IP addresses
- Lacp
Get
Aggregate Interface List Data Layer3Lacp - Lacp
- Mtu int
- MTU
- arps
List<Get
Aggregate Interface List Data Layer3Arp> - Aggregate Ethernet ARP configuration
- ddns
Config GetAggregate Interface List Data Layer3Ddns Config - Dynamic DNS configuration specific to the Aggregate Interface.
- dhcp
Client GetAggregate Interface List Data Layer3Dhcp Client - Aggregate Ethernet DHCP Client Object
- interface
Management StringProfile - Interface management profile
- ips
List<Get
Aggregate Interface List Data Layer3Ip> - Aggregate Interface IP addresses
- lacp
Get
Aggregate Interface List Data Layer3Lacp - Lacp
- mtu Integer
- MTU
- arps
Get
Aggregate Interface List Data Layer3Arp[] - Aggregate Ethernet ARP configuration
- ddns
Config GetAggregate Interface List Data Layer3Ddns Config - Dynamic DNS configuration specific to the Aggregate Interface.
- dhcp
Client GetAggregate Interface List Data Layer3Dhcp Client - Aggregate Ethernet DHCP Client Object
- interface
Management stringProfile - Interface management profile
- ips
Get
Aggregate Interface List Data Layer3Ip[] - Aggregate Interface IP addresses
- lacp
Get
Aggregate Interface List Data Layer3Lacp - Lacp
- mtu number
- MTU
- arps
Sequence[Get
Aggregate Interface List Data Layer3Arp] - Aggregate Ethernet ARP configuration
- ddns_
config GetAggregate Interface List Data Layer3Ddns Config - Dynamic DNS configuration specific to the Aggregate Interface.
- dhcp_
client GetAggregate Interface List Data Layer3Dhcp Client - Aggregate Ethernet DHCP Client Object
- interface_
management_ strprofile - Interface management profile
- ips
Sequence[Get
Aggregate Interface List Data Layer3Ip] - Aggregate Interface IP addresses
- lacp
Get
Aggregate Interface List Data Layer3Lacp - Lacp
- mtu int
- MTU
- arps List<Property Map>
- Aggregate Ethernet ARP configuration
- ddns
Config Property Map - Dynamic DNS configuration specific to the Aggregate Interface.
- dhcp
Client Property Map - Aggregate Ethernet DHCP Client Object
- interface
Management StringProfile - Interface management profile
- ips List<Property Map>
- Aggregate Interface IP addresses
- lacp Property Map
- Lacp
- mtu Number
- MTU
GetAggregateInterfaceListDataLayer3Arp
- hw_
address str - MAC address
- name str
- IP address
GetAggregateInterfaceListDataLayer3DdnsConfig
- Ddns
Cert stringProfile - Certificate profile
- Ddns
Enabled bool - Enable DDNS?
- Ddns
Hostname string - Ddns hostname
- Ddns
Ip string - IP to register (static only)
- Ddns
Update intInterval - Update interval (days)
- Ddns
Vendor string - DDNS vendor
- Ddns
Vendor stringConfig - DDNS vendor
- Ddns
Cert stringProfile - Certificate profile
- Ddns
Enabled bool - Enable DDNS?
- Ddns
Hostname string - Ddns hostname
- Ddns
Ip string - IP to register (static only)
- Ddns
Update intInterval - Update interval (days)
- Ddns
Vendor string - DDNS vendor
- Ddns
Vendor stringConfig - DDNS vendor
- ddns
Cert StringProfile - Certificate profile
- ddns
Enabled Boolean - Enable DDNS?
- ddns
Hostname String - Ddns hostname
- ddns
Ip String - IP to register (static only)
- ddns
Update IntegerInterval - Update interval (days)
- ddns
Vendor String - DDNS vendor
- ddns
Vendor StringConfig - DDNS vendor
- ddns
Cert stringProfile - Certificate profile
- ddns
Enabled boolean - Enable DDNS?
- ddns
Hostname string - Ddns hostname
- ddns
Ip string - IP to register (static only)
- ddns
Update numberInterval - Update interval (days)
- ddns
Vendor string - DDNS vendor
- ddns
Vendor stringConfig - DDNS vendor
- ddns_
cert_ strprofile - Certificate profile
- ddns_
enabled bool - Enable DDNS?
- ddns_
hostname str - Ddns hostname
- ddns_
ip str - IP to register (static only)
- ddns_
update_ intinterval - Update interval (days)
- ddns_
vendor str - DDNS vendor
- ddns_
vendor_ strconfig - DDNS vendor
- ddns
Cert StringProfile - Certificate profile
- ddns
Enabled Boolean - Enable DDNS?
- ddns
Hostname String - Ddns hostname
- ddns
Ip String - IP to register (static only)
- ddns
Update NumberInterval - Update interval (days)
- ddns
Vendor String - DDNS vendor
- ddns
Vendor StringConfig - DDNS vendor
GetAggregateInterfaceListDataLayer3DhcpClient
- Create
Default boolRoute - Automatically create default route pointing to default gateway provided by server
- Default
Route intMetric - Metric of the default route created
- Enable bool
- Enable DHCP?
- Send
Hostname GetAggregate Interface List Data Layer3Dhcp Client Send Hostname - Aggregate Ethernet DHCP Client Send hostname
- Create
Default boolRoute - Automatically create default route pointing to default gateway provided by server
- Default
Route intMetric - Metric of the default route created
- Enable bool
- Enable DHCP?
- Send
Hostname GetAggregate Interface List Data Layer3Dhcp Client Send Hostname - Aggregate Ethernet DHCP Client Send hostname
- create
Default BooleanRoute - Automatically create default route pointing to default gateway provided by server
- default
Route IntegerMetric - Metric of the default route created
- enable Boolean
- Enable DHCP?
- send
Hostname GetAggregate Interface List Data Layer3Dhcp Client Send Hostname - Aggregate Ethernet DHCP Client Send hostname
- create
Default booleanRoute - Automatically create default route pointing to default gateway provided by server
- default
Route numberMetric - Metric of the default route created
- enable boolean
- Enable DHCP?
- send
Hostname GetAggregate Interface List Data Layer3Dhcp Client Send Hostname - Aggregate Ethernet DHCP Client Send hostname
- create_
default_ boolroute - Automatically create default route pointing to default gateway provided by server
- default_
route_ intmetric - Metric of the default route created
- enable bool
- Enable DHCP?
- send_
hostname GetAggregate Interface List Data Layer3Dhcp Client Send Hostname - Aggregate Ethernet DHCP Client Send hostname
- create
Default BooleanRoute - Automatically create default route pointing to default gateway provided by server
- default
Route NumberMetric - Metric of the default route created
- enable Boolean
- Enable DHCP?
- send
Hostname Property Map - Aggregate Ethernet DHCP Client Send hostname
GetAggregateInterfaceListDataLayer3DhcpClientSendHostname
GetAggregateInterfaceListDataLayer3Ip
- Name string
- Aggregate Interface IP addresses name
- Name string
- Aggregate Interface IP addresses name
- name String
- Aggregate Interface IP addresses name
- name string
- Aggregate Interface IP addresses name
- name str
- Aggregate Interface IP addresses name
- name String
- Aggregate Interface IP addresses name
GetAggregateInterfaceListDataLayer3Lacp
- Enable bool
- Enable LACP?
- Fast
Failover bool - Fast failover
- Max
Ports int - Maximum number of physical ports bundled in the LAG
- Mode string
- Mode
- System
Priority int - LACP system priority in system ID
- Transmission
Rate string - Transmission mode
- Enable bool
- Enable LACP?
- Fast
Failover bool - Fast failover
- Max
Ports int - Maximum number of physical ports bundled in the LAG
- Mode string
- Mode
- System
Priority int - LACP system priority in system ID
- Transmission
Rate string - Transmission mode
- enable Boolean
- Enable LACP?
- fast
Failover Boolean - Fast failover
- max
Ports Integer - Maximum number of physical ports bundled in the LAG
- mode String
- Mode
- system
Priority Integer - LACP system priority in system ID
- transmission
Rate String - Transmission mode
- enable boolean
- Enable LACP?
- fast
Failover boolean - Fast failover
- max
Ports number - Maximum number of physical ports bundled in the LAG
- mode string
- Mode
- system
Priority number - LACP system priority in system ID
- transmission
Rate string - Transmission mode
- enable bool
- Enable LACP?
- fast_
failover bool - Fast failover
- max_
ports int - Maximum number of physical ports bundled in the LAG
- mode str
- Mode
- system_
priority int - LACP system priority in system ID
- transmission_
rate str - Transmission mode
- enable Boolean
- Enable LACP?
- fast
Failover Boolean - Fast failover
- max
Ports Number - Maximum number of physical ports bundled in the LAG
- mode String
- Mode
- system
Priority Number - LACP system priority in system ID
- transmission
Rate String - Transmission mode
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
