Viewing docs for Strata Cloud Manager v1.0.5
published on Saturday, Mar 21, 2026 by Pulumi
published on Saturday, Mar 21, 2026 by Pulumi
Viewing docs for Strata Cloud Manager v1.0.5
published on Saturday, Mar 21, 2026 by Pulumi
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";
// List all system match lists in the ngfw-shared folder
const example = scm.getSystemMatchListList({
folder: "ngfw-shared",
});
export const systemMatchListListResults = example.then(example => .reduce((__obj, item) => ({ ...__obj, [item.id]: {
name: item.name,
folder: item.folder,
} })));
import pulumi
import pulumi_scm as scm
# List all system match lists in the ngfw-shared folder
example = scm.get_system_match_list_list(folder="ngfw-shared")
pulumi.export("systemMatchListListResults", {item.id: {
"name": item.name,
"folder": item.folder,
} for item in example.datas})
Example coming soon!
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
// List all system match lists in the ngfw-shared folder
var example = Scm.GetSystemMatchListList.Invoke(new()
{
Folder = "ngfw-shared",
});
return new Dictionary<string, object?>
{
["systemMatchListListResults"] = .ToDictionary(item => {
var item = item.Value;
return item.Id;
}, item => {
var item = item.Value;
return
{
{ "name", item.Name },
{ "folder", item.Folder },
};
}),
};
});
Example coming soon!
Example coming soon!
Using getSystemMatchListList
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 getSystemMatchListList(args: GetSystemMatchListListArgs, opts?: InvokeOptions): Promise<GetSystemMatchListListResult>
function getSystemMatchListListOutput(args: GetSystemMatchListListOutputArgs, opts?: InvokeOptions): Output<GetSystemMatchListListResult>def get_system_match_list_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) -> GetSystemMatchListListResult
def get_system_match_list_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[GetSystemMatchListListResult]func GetSystemMatchListList(ctx *Context, args *GetSystemMatchListListArgs, opts ...InvokeOption) (*GetSystemMatchListListResult, error)
func GetSystemMatchListListOutput(ctx *Context, args *GetSystemMatchListListOutputArgs, opts ...InvokeOption) GetSystemMatchListListResultOutput> Note: This function is named GetSystemMatchListList in the Go SDK.
public static class GetSystemMatchListList
{
public static Task<GetSystemMatchListListResult> InvokeAsync(GetSystemMatchListListArgs args, InvokeOptions? opts = null)
public static Output<GetSystemMatchListListResult> Invoke(GetSystemMatchListListInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetSystemMatchListListResult> getSystemMatchListList(GetSystemMatchListListArgs args, InvokeOptions options)
public static Output<GetSystemMatchListListResult> getSystemMatchListList(GetSystemMatchListListArgs args, InvokeOptions options)
fn::invoke:
function: scm:index/getSystemMatchListList:getSystemMatchListList
arguments:
# arguments dictionaryThe following arguments are supported:
getSystemMatchListList Result
The following output properties are available:
- Datas
List<Get
System Match List List Data> - 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
[]Get
System Match List List Data - 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<Get
System Match List List Data> - 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
Get
System Match List List Data[] - 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[Get
System Match List List Data] - 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
GetSystemMatchListListData
- Description string
- Description of the system match list entry
- Device string
- The device in which the resource is defined
- Filter string
- Filter of the system match list entry
- Folder string
- The folder of the item. Default: Shared.
- Id string
- UUID of the resource
- Name string
- The name of the item.
- Send
Emails List<string> - Send Email List of the system match list entry
- Send
Https List<string> - Send HTTP List of the system match list entry
- Send
Snmptraps List<string> - Send SNMP Trap List of the system match list entry
- Send
Syslogs List<string> - Send Sys Log List of the system match list entry
- Send
To boolPanorama - Send to Panorama Flag of the system match list entry
- Snippet string
- The snippet of the item.
- Tfid string
- The Terraform ID.
- Description string
- Description of the system match list entry
- Device string
- The device in which the resource is defined
- Filter string
- Filter of the system match list entry
- Folder string
- The folder of the item. Default: Shared.
- Id string
- UUID of the resource
- Name string
- The name of the item.
- Send
Emails []string - Send Email List of the system match list entry
- Send
Https []string - Send HTTP List of the system match list entry
- Send
Snmptraps []string - Send SNMP Trap List of the system match list entry
- Send
Syslogs []string - Send Sys Log List of the system match list entry
- Send
To boolPanorama - Send to Panorama Flag of the system match list entry
- Snippet string
- The snippet of the item.
- Tfid string
- The Terraform ID.
- description String
- Description of the system match list entry
- device String
- The device in which the resource is defined
- filter String
- Filter of the system match list entry
- folder String
- The folder of the item. Default: Shared.
- id String
- UUID of the resource
- name String
- The name of the item.
- send
Emails List<String> - Send Email List of the system match list entry
- send
Https List<String> - Send HTTP List of the system match list entry
- send
Snmptraps List<String> - Send SNMP Trap List of the system match list entry
- send
Syslogs List<String> - Send Sys Log List of the system match list entry
- send
To BooleanPanorama - Send to Panorama Flag of the system match list entry
- snippet String
- The snippet of the item.
- tfid String
- The Terraform ID.
- description string
- Description of the system match list entry
- device string
- The device in which the resource is defined
- filter string
- Filter of the system match list entry
- folder string
- The folder of the item. Default: Shared.
- id string
- UUID of the resource
- name string
- The name of the item.
- send
Emails string[] - Send Email List of the system match list entry
- send
Https string[] - Send HTTP List of the system match list entry
- send
Snmptraps string[] - Send SNMP Trap List of the system match list entry
- send
Syslogs string[] - Send Sys Log List of the system match list entry
- send
To booleanPanorama - Send to Panorama Flag of the system match list entry
- snippet string
- The snippet of the item.
- tfid string
- The Terraform ID.
- description str
- Description of the system match list entry
- device str
- The device in which the resource is defined
- filter str
- Filter of the system match list entry
- folder str
- The folder of the item. Default: Shared.
- id str
- UUID of the resource
- name str
- The name of the item.
- send_
emails Sequence[str] - Send Email List of the system match list entry
- send_
https Sequence[str] - Send HTTP List of the system match list entry
- send_
snmptraps Sequence[str] - Send SNMP Trap List of the system match list entry
- send_
syslogs Sequence[str] - Send Sys Log List of the system match list entry
- send_
to_ boolpanorama - Send to Panorama Flag of the system match list entry
- snippet str
- The snippet of the item.
- tfid str
- The Terraform ID.
- description String
- Description of the system match list entry
- device String
- The device in which the resource is defined
- filter String
- Filter of the system match list entry
- folder String
- The folder of the item. Default: Shared.
- id String
- UUID of the resource
- name String
- The name of the item.
- send
Emails List<String> - Send Email List of the system match list entry
- send
Https List<String> - Send HTTP List of the system match list entry
- send
Snmptraps List<String> - Send SNMP Trap List of the system match list entry
- send
Syslogs List<String> - Send Sys Log List of the system match list entry
- send
To BooleanPanorama - Send to Panorama Flag of the system match list entry
- snippet String
- The snippet of the item.
- tfid String
- The Terraform ID.
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 v1.0.5
published on Saturday, Mar 21, 2026 by Pulumi
published on Saturday, Mar 21, 2026 by Pulumi
