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 hipmatch match lists in the ngfw-shared folder
const example = scm.getHipmatchMatchListList({
folder: "ngfw-shared",
});
export const hipmatchMatchListListResults = example.then(example => .reduce((__obj, item) => ({ ...__obj, [item.id]: {
name: item.name,
folder: item.folder,
} })));
import pulumi
import pulumi_scm as scm
# List all hipmatch match lists in the ngfw-shared folder
example = scm.get_hipmatch_match_list_list(folder="ngfw-shared")
pulumi.export("hipmatchMatchListListResults", {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 hipmatch match lists in the ngfw-shared folder
var example = Scm.GetHipmatchMatchListList.Invoke(new()
{
Folder = "ngfw-shared",
});
return new Dictionary<string, object?>
{
["hipmatchMatchListListResults"] = .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 getHipmatchMatchListList
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 getHipmatchMatchListList(args: GetHipmatchMatchListListArgs, opts?: InvokeOptions): Promise<GetHipmatchMatchListListResult>
function getHipmatchMatchListListOutput(args: GetHipmatchMatchListListOutputArgs, opts?: InvokeOptions): Output<GetHipmatchMatchListListResult>def get_hipmatch_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) -> GetHipmatchMatchListListResult
def get_hipmatch_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[GetHipmatchMatchListListResult]func GetHipmatchMatchListList(ctx *Context, args *GetHipmatchMatchListListArgs, opts ...InvokeOption) (*GetHipmatchMatchListListResult, error)
func GetHipmatchMatchListListOutput(ctx *Context, args *GetHipmatchMatchListListOutputArgs, opts ...InvokeOption) GetHipmatchMatchListListResultOutput> Note: This function is named GetHipmatchMatchListList in the Go SDK.
public static class GetHipmatchMatchListList
{
public static Task<GetHipmatchMatchListListResult> InvokeAsync(GetHipmatchMatchListListArgs args, InvokeOptions? opts = null)
public static Output<GetHipmatchMatchListListResult> Invoke(GetHipmatchMatchListListInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetHipmatchMatchListListResult> getHipmatchMatchListList(GetHipmatchMatchListListArgs args, InvokeOptions options)
public static Output<GetHipmatchMatchListListResult> getHipmatchMatchListList(GetHipmatchMatchListListArgs args, InvokeOptions options)
fn::invoke:
function: scm:index/getHipmatchMatchListList:getHipmatchMatchListList
arguments:
# arguments dictionaryThe following arguments are supported:
getHipmatchMatchListList Result
The following output properties are available:
- Datas
List<Get
Hipmatch 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
Hipmatch 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
Hipmatch 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
Hipmatch 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
Hipmatch 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
GetHipmatchMatchListListData
- Description string
- Description of the hipmatch match list entry
- Device string
- The device in which the resource is defined
- Filter string
- Filter of the hipmatch 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.
- Quarantine bool
- Quarantine Flag of the hipmatch match list entry
- Send
Emails List<string> - Send Email List of the hipmatch match list entry
- Send
Https List<string> - Send HTTP List of the hipmatch match list entry
- Send
Snmptraps List<string> - Send SNMP Trap List of the hipmatch match list entry
- Send
Syslogs List<string> - Send Sys Log List of the hipmatch match list entry
- Send
To boolPanorama - Send to Panorama Flag of the hipmatch match list entry
- Snippet string
- The snippet of the item.
- Tfid string
- The Terraform ID.
- Description string
- Description of the hipmatch match list entry
- Device string
- The device in which the resource is defined
- Filter string
- Filter of the hipmatch 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.
- Quarantine bool
- Quarantine Flag of the hipmatch match list entry
- Send
Emails []string - Send Email List of the hipmatch match list entry
- Send
Https []string - Send HTTP List of the hipmatch match list entry
- Send
Snmptraps []string - Send SNMP Trap List of the hipmatch match list entry
- Send
Syslogs []string - Send Sys Log List of the hipmatch match list entry
- Send
To boolPanorama - Send to Panorama Flag of the hipmatch match list entry
- Snippet string
- The snippet of the item.
- Tfid string
- The Terraform ID.
- description String
- Description of the hipmatch match list entry
- device String
- The device in which the resource is defined
- filter String
- Filter of the hipmatch 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.
- quarantine Boolean
- Quarantine Flag of the hipmatch match list entry
- send
Emails List<String> - Send Email List of the hipmatch match list entry
- send
Https List<String> - Send HTTP List of the hipmatch match list entry
- send
Snmptraps List<String> - Send SNMP Trap List of the hipmatch match list entry
- send
Syslogs List<String> - Send Sys Log List of the hipmatch match list entry
- send
To BooleanPanorama - Send to Panorama Flag of the hipmatch match list entry
- snippet String
- The snippet of the item.
- tfid String
- The Terraform ID.
- description string
- Description of the hipmatch match list entry
- device string
- The device in which the resource is defined
- filter string
- Filter of the hipmatch 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.
- quarantine boolean
- Quarantine Flag of the hipmatch match list entry
- send
Emails string[] - Send Email List of the hipmatch match list entry
- send
Https string[] - Send HTTP List of the hipmatch match list entry
- send
Snmptraps string[] - Send SNMP Trap List of the hipmatch match list entry
- send
Syslogs string[] - Send Sys Log List of the hipmatch match list entry
- send
To booleanPanorama - Send to Panorama Flag of the hipmatch match list entry
- snippet string
- The snippet of the item.
- tfid string
- The Terraform ID.
- description str
- Description of the hipmatch match list entry
- device str
- The device in which the resource is defined
- filter str
- Filter of the hipmatch 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.
- quarantine bool
- Quarantine Flag of the hipmatch match list entry
- send_
emails Sequence[str] - Send Email List of the hipmatch match list entry
- send_
https Sequence[str] - Send HTTP List of the hipmatch match list entry
- send_
snmptraps Sequence[str] - Send SNMP Trap List of the hipmatch match list entry
- send_
syslogs Sequence[str] - Send Sys Log List of the hipmatch match list entry
- send_
to_ boolpanorama - Send to Panorama Flag of the hipmatch match list entry
- snippet str
- The snippet of the item.
- tfid str
- The Terraform ID.
- description String
- Description of the hipmatch match list entry
- device String
- The device in which the resource is defined
- filter String
- Filter of the hipmatch 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.
- quarantine Boolean
- Quarantine Flag of the hipmatch match list entry
- send
Emails List<String> - Send Email List of the hipmatch match list entry
- send
Https List<String> - Send HTTP List of the hipmatch match list entry
- send
Snmptraps List<String> - Send SNMP Trap List of the hipmatch match list entry
- send
Syslogs List<String> - Send Sys Log List of the hipmatch match list entry
- send
To BooleanPanorama - Send to Panorama Flag of the hipmatch 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
