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 ethernet interfaces
const allEthernetInterfaces = scm.getEthernetInterfaceList({
folder: "ngfw-shared",
});
export const scmEthernetInterfaceList = allEthernetInterfaces.then(allEthernetInterfaces => .reduce((__obj, interface) => ({ ...__obj, [_interface.name]: _interface })));
import pulumi
import pulumi_scm as scm
# Fetch a list of all ethernet interfaces
all_ethernet_interfaces = scm.get_ethernet_interface_list(folder="ngfw-shared")
pulumi.export("scmEthernetInterfaceList", {interface.name: interface for interface in all_ethernet_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 ethernet interfaces
var allEthernetInterfaces = Scm.GetEthernetInterfaceList.Invoke(new()
{
Folder = "ngfw-shared",
});
return new Dictionary<string, object?>
{
["scmEthernetInterfaceList"] = ,
};
});
Example coming soon!
Example coming soon!
Using getEthernetInterfaceList
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 getEthernetInterfaceList(args: GetEthernetInterfaceListArgs, opts?: InvokeOptions): Promise<GetEthernetInterfaceListResult>
function getEthernetInterfaceListOutput(args: GetEthernetInterfaceListOutputArgs, opts?: InvokeOptions): Output<GetEthernetInterfaceListResult>def get_ethernet_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) -> GetEthernetInterfaceListResult
def get_ethernet_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[GetEthernetInterfaceListResult]func GetEthernetInterfaceList(ctx *Context, args *GetEthernetInterfaceListArgs, opts ...InvokeOption) (*GetEthernetInterfaceListResult, error)
func GetEthernetInterfaceListOutput(ctx *Context, args *GetEthernetInterfaceListOutputArgs, opts ...InvokeOption) GetEthernetInterfaceListResultOutput> Note: This function is named GetEthernetInterfaceList in the Go SDK.
public static class GetEthernetInterfaceList
{
public static Task<GetEthernetInterfaceListResult> InvokeAsync(GetEthernetInterfaceListArgs args, InvokeOptions? opts = null)
public static Output<GetEthernetInterfaceListResult> Invoke(GetEthernetInterfaceListInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetEthernetInterfaceListResult> getEthernetInterfaceList(GetEthernetInterfaceListArgs args, InvokeOptions options)
public static Output<GetEthernetInterfaceListResult> getEthernetInterfaceList(GetEthernetInterfaceListArgs args, InvokeOptions options)
fn::invoke:
function: scm:index/getEthernetInterfaceList:getEthernetInterfaceList
arguments:
# arguments dictionaryThe following arguments are supported:
getEthernetInterfaceList Result
The following output properties are available:
- Datas
List<Get
Ethernet 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
Ethernet 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
Ethernet 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
Ethernet 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
Ethernet 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
GetEthernetInterfaceListData
- Comment string
- Interface description
- Default
Value string - Default interface assignment
- Device string
- The device in which the resource is defined
- Encrypted
Values 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
Get
Ethernet Interface List Data Layer2 - Layer2
- Layer3
Get
Ethernet Interface List Data Layer3 - Ethernet Interface Layer 3 configuration
- Link
Duplex string - Link duplex
- Link
Speed string - Link speed
- Link
State string - Link state
- Name string
- Interface name
- Poe
Get
Ethernet Interface List Data Poe - Poe
- Snippet string
- The snippet in which the resource is defined
- Tap
Get
Ethernet Interface List Data Tap - Tap
- Tfid string
- Comment string
- Interface description
- Default
Value string - Default interface assignment
- Device string
- The device in which the resource is defined
- Encrypted
Values 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
Get
Ethernet Interface List Data Layer2 - Layer2
- Layer3
Get
Ethernet Interface List Data Layer3 - Ethernet Interface Layer 3 configuration
- Link
Duplex string - Link duplex
- Link
Speed string - Link speed
- Link
State string - Link state
- Name string
- Interface name
- Poe
Get
Ethernet Interface List Data Poe - Poe
- Snippet string
- The snippet in which the resource is defined
- Tap
Get
Ethernet Interface List Data Tap - Tap
- Tfid string
- comment String
- Interface description
- default
Value String - Default interface assignment
- device String
- The device in which the resource is defined
- encrypted
Values 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
Get
Ethernet Interface List Data Layer2 - Layer2
- layer3
Get
Ethernet Interface List Data Layer3 - Ethernet Interface Layer 3 configuration
- link
Duplex String - Link duplex
- link
Speed String - Link speed
- link
State String - Link state
- name String
- Interface name
- poe
Get
Ethernet Interface List Data Poe - Poe
- snippet String
- The snippet in which the resource is defined
- tap
Get
Ethernet Interface List Data Tap - Tap
- tfid String
- comment string
- Interface description
- default
Value string - Default interface assignment
- device string
- The device in which the resource is defined
- encrypted
Values {[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
Get
Ethernet Interface List Data Layer2 - Layer2
- layer3
Get
Ethernet Interface List Data Layer3 - Ethernet Interface Layer 3 configuration
- link
Duplex string - Link duplex
- link
Speed string - Link speed
- link
State string - Link state
- name string
- Interface name
- poe
Get
Ethernet Interface List Data Poe - Poe
- snippet string
- The snippet in which the resource is defined
- tap
Get
Ethernet Interface List Data Tap - 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
Get
Ethernet Interface List Data Layer2 - Layer2
- layer3
Get
Ethernet Interface List Data Layer3 - 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
Get
Ethernet Interface List Data Poe - Poe
- snippet str
- The snippet in which the resource is defined
- tap
Get
Ethernet Interface List Data Tap - Tap
- tfid str
- comment String
- Interface description
- default
Value String - Default interface assignment
- device String
- The device in which the resource is defined
- encrypted
Values 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
- link
Duplex String - Link duplex
- link
Speed String - Link speed
- link
State 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
GetEthernetInterfaceListDataLayer2
- Lldp
Get
Ethernet Interface List Data Layer2Lldp - LLDP Settings
- Vlan
Tag string - Assign interface to VLAN tag
- Lldp
Get
Ethernet Interface List Data Layer2Lldp - LLDP Settings
- Vlan
Tag string - Assign interface to VLAN tag
- lldp
Get
Ethernet Interface List Data Layer2Lldp - LLDP Settings
- vlan
Tag String - Assign interface to VLAN tag
- lldp
Get
Ethernet Interface List Data Layer2Lldp - LLDP Settings
- vlan
Tag string - Assign interface to VLAN tag
- lldp
Get
Ethernet Interface List Data Layer2Lldp - LLDP Settings
- vlan_
tag str - Assign interface to VLAN tag
- lldp Property Map
- LLDP Settings
- vlan
Tag String - Assign interface to VLAN tag
GetEthernetInterfaceListDataLayer2Lldp
- 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
GetEthernetInterfaceListDataLayer3
- Arps
List<Get
Ethernet Interface List Data Layer3Arp> - Ethernet Interfaces ARP configuration
- Ddns
Config GetEthernet Interface List Data Layer3Ddns Config - Dynamic DNS configuration specific to the Ethernet Interfaces.
- Dhcp
Client GetEthernet Interface List Data Layer3Dhcp Client - Ethernet Interfaces DHCP Client Object
- Interface
Management stringProfile - Interface management profile
- Ips
List<Get
Ethernet Interface List Data Layer3Ip> - Ethernet Interface IP addresses
- Mtu int
- MTU
- Pppoe
Get
Ethernet Interface List Data Layer3Pppoe - Pppoe
- Arps
[]Get
Ethernet Interface List Data Layer3Arp - Ethernet Interfaces ARP configuration
- Ddns
Config GetEthernet Interface List Data Layer3Ddns Config - Dynamic DNS configuration specific to the Ethernet Interfaces.
- Dhcp
Client GetEthernet Interface List Data Layer3Dhcp Client - Ethernet Interfaces DHCP Client Object
- Interface
Management stringProfile - Interface management profile
- Ips
[]Get
Ethernet Interface List Data Layer3Ip - Ethernet Interface IP addresses
- Mtu int
- MTU
- Pppoe
Get
Ethernet Interface List Data Layer3Pppoe - Pppoe
- arps
List<Get
Ethernet Interface List Data Layer3Arp> - Ethernet Interfaces ARP configuration
- ddns
Config GetEthernet Interface List Data Layer3Ddns Config - Dynamic DNS configuration specific to the Ethernet Interfaces.
- dhcp
Client GetEthernet Interface List Data Layer3Dhcp Client - Ethernet Interfaces DHCP Client Object
- interface
Management StringProfile - Interface management profile
- ips
List<Get
Ethernet Interface List Data Layer3Ip> - Ethernet Interface IP addresses
- mtu Integer
- MTU
- pppoe
Get
Ethernet Interface List Data Layer3Pppoe - Pppoe
- arps
Get
Ethernet Interface List Data Layer3Arp[] - Ethernet Interfaces ARP configuration
- ddns
Config GetEthernet Interface List Data Layer3Ddns Config - Dynamic DNS configuration specific to the Ethernet Interfaces.
- dhcp
Client GetEthernet Interface List Data Layer3Dhcp Client - Ethernet Interfaces DHCP Client Object
- interface
Management stringProfile - Interface management profile
- ips
Get
Ethernet Interface List Data Layer3Ip[] - Ethernet Interface IP addresses
- mtu number
- MTU
- pppoe
Get
Ethernet Interface List Data Layer3Pppoe - Pppoe
- arps
Sequence[Get
Ethernet Interface List Data Layer3Arp] - Ethernet Interfaces ARP configuration
- ddns_
config GetEthernet Interface List Data Layer3Ddns Config - Dynamic DNS configuration specific to the Ethernet Interfaces.
- dhcp_
client GetEthernet Interface List Data Layer3Dhcp Client - Ethernet Interfaces DHCP Client Object
- interface_
management_ strprofile - Interface management profile
- ips
Sequence[Get
Ethernet Interface List Data Layer3Ip] - Ethernet Interface IP addresses
- mtu int
- MTU
- pppoe
Get
Ethernet Interface List Data Layer3Pppoe - Pppoe
- arps List<Property Map>
- Ethernet Interfaces ARP configuration
- ddns
Config Property Map - Dynamic DNS configuration specific to the Ethernet Interfaces.
- dhcp
Client Property Map - Ethernet Interfaces DHCP Client Object
- interface
Management StringProfile - Interface management profile
- ips List<Property Map>
- Ethernet Interface IP addresses
- mtu Number
- MTU
- pppoe Property Map
- Pppoe
GetEthernetInterfaceListDataLayer3Arp
- hw_
address str - MAC address
- name str
- IP address
GetEthernetInterfaceListDataLayer3DdnsConfig
- 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
GetEthernetInterfaceListDataLayer3DhcpClient
- 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 GetEthernet Interface List Data Layer3Dhcp Client Send Hostname - Ethernet Interfaces DHCP ClientSend 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 GetEthernet Interface List Data Layer3Dhcp Client Send Hostname - Ethernet Interfaces DHCP ClientSend 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 GetEthernet Interface List Data Layer3Dhcp Client Send Hostname - Ethernet Interfaces DHCP ClientSend 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 GetEthernet Interface List Data Layer3Dhcp Client Send Hostname - Ethernet Interfaces DHCP ClientSend 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 GetEthernet Interface List Data Layer3Dhcp Client Send Hostname - Ethernet Interfaces DHCP ClientSend 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 - Ethernet Interfaces DHCP ClientSend hostname
GetEthernetInterfaceListDataLayer3DhcpClientSendHostname
GetEthernetInterfaceListDataLayer3Ip
- 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
GetEthernetInterfaceListDataLayer3Pppoe
- Access
Concentrator string - Access concentrator
- Authentication string
- Authentication protocol
- Default
Route intMetric - Metric of the default route created
- Enable bool
- Enable
- Passive
Get
Ethernet Interface List Data Layer3Pppoe Passive - Passive
- Password string
- Password
- Service string
- Service
- Static
Address GetEthernet Interface List Data Layer3Pppoe Static Address - Static address
- Username string
- Username
- Access
Concentrator string - Access concentrator
- Authentication string
- Authentication protocol
- Default
Route intMetric - Metric of the default route created
- Enable bool
- Enable
- Passive
Get
Ethernet Interface List Data Layer3Pppoe Passive - Passive
- Password string
- Password
- Service string
- Service
- Static
Address GetEthernet Interface List Data Layer3Pppoe Static Address - Static address
- Username string
- Username
- access
Concentrator String - Access concentrator
- authentication String
- Authentication protocol
- default
Route IntegerMetric - Metric of the default route created
- enable Boolean
- Enable
- passive
Get
Ethernet Interface List Data Layer3Pppoe Passive - Passive
- password String
- Password
- service String
- Service
- static
Address GetEthernet Interface List Data Layer3Pppoe Static Address - Static address
- username String
- Username
- access
Concentrator string - Access concentrator
- authentication string
- Authentication protocol
- default
Route numberMetric - Metric of the default route created
- enable boolean
- Enable
- passive
Get
Ethernet Interface List Data Layer3Pppoe Passive - Passive
- password string
- Password
- service string
- Service
- static
Address GetEthernet Interface List Data Layer3Pppoe Static Address - Static address
- username string
- Username
- access_
concentrator str - Access concentrator
- authentication str
- Authentication protocol
- default_
route_ intmetric - Metric of the default route created
- enable bool
- Enable
- passive
Get
Ethernet Interface List Data Layer3Pppoe Passive - Passive
- password str
- Password
- service str
- Service
- static_
address GetEthernet Interface List Data Layer3Pppoe Static Address - Static address
- username str
- Username
- access
Concentrator String - Access concentrator
- authentication String
- Authentication protocol
- default
Route NumberMetric - Metric of the default route created
- enable Boolean
- Enable
- passive Property Map
- Passive
- password String
- Password
- service String
- Service
- static
Address Property Map - Static address
- username String
- Username
GetEthernetInterfaceListDataLayer3PppoePassive
- 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
GetEthernetInterfaceListDataLayer3PppoeStaticAddress
- 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
GetEthernetInterfaceListDataPoe
- Poe
Enabled bool - Enabled PoE?
- Poe
Rsvd intPwr - PoE reserved power
- Poe
Enabled bool - Enabled PoE?
- Poe
Rsvd intPwr - PoE reserved power
- poe
Enabled Boolean - Enabled PoE?
- poe
Rsvd IntegerPwr - PoE reserved power
- poe
Enabled boolean - Enabled PoE?
- poe
Rsvd numberPwr - PoE reserved power
- poe_
enabled bool - Enabled PoE?
- poe_
rsvd_ intpwr - PoE reserved power
- poe
Enabled Boolean - Enabled PoE?
- poe
Rsvd NumberPwr - PoE reserved power
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
