1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getGlobalprotectMatchList
Viewing docs for Strata Cloud Manager v1.0.5
published on Saturday, Mar 21, 2026 by Pulumi
scm logo
Viewing docs for Strata Cloud Manager v1.0.5
published on Saturday, Mar 21, 2026 by Pulumi

    GlobalprotectMatchList data source

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    // Look up the globalprotect match list by its ID.
    const globalprotectMatchListDs = scm.getGlobalprotectMatchList({
        id: "89c5fc2d-dba8-4560-b853-4eb1ecd36025",
    });
    export const globalprotectMatchListDataSourceResults = globalprotectMatchListDs;
    
    import pulumi
    import pulumi_scm as scm
    
    # Look up the globalprotect match list by its ID.
    globalprotect_match_list_ds = scm.get_globalprotect_match_list(id="89c5fc2d-dba8-4560-b853-4eb1ecd36025")
    pulumi.export("globalprotectMatchListDataSourceResults", globalprotect_match_list_ds)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-scm/sdk/go/scm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Look up the globalprotect match list by its ID.
    		globalprotectMatchListDs, err := scm.LookupGlobalprotectMatchList(ctx, &scm.LookupGlobalprotectMatchListArgs{
    			Id: "89c5fc2d-dba8-4560-b853-4eb1ecd36025",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("globalprotectMatchListDataSourceResults", globalprotectMatchListDs)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // Look up the globalprotect match list by its ID.
        var globalprotectMatchListDs = Scm.GetGlobalprotectMatchList.Invoke(new()
        {
            Id = "89c5fc2d-dba8-4560-b853-4eb1ecd36025",
        });
    
        return new Dictionary<string, object?>
        {
            ["globalprotectMatchListDataSourceResults"] = globalprotectMatchListDs,
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.ScmFunctions;
    import com.pulumi.scm.inputs.GetGlobalprotectMatchListArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            // Look up the globalprotect match list by its ID.
            final var globalprotectMatchListDs = ScmFunctions.getGlobalprotectMatchList(GetGlobalprotectMatchListArgs.builder()
                .id("89c5fc2d-dba8-4560-b853-4eb1ecd36025")
                .build());
    
            ctx.export("globalprotectMatchListDataSourceResults", globalprotectMatchListDs);
        }
    }
    
    variables:
      # Look up the globalprotect match list by its ID.
      globalprotectMatchListDs:
        fn::invoke:
          function: scm:getGlobalprotectMatchList
          arguments:
            id: 89c5fc2d-dba8-4560-b853-4eb1ecd36025
    outputs:
      # Output the details of the globalprotect match list
      globalprotectMatchListDataSourceResults: ${globalprotectMatchListDs}
    

    Using getGlobalprotectMatchList

    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 getGlobalprotectMatchList(args: GetGlobalprotectMatchListArgs, opts?: InvokeOptions): Promise<GetGlobalprotectMatchListResult>
    function getGlobalprotectMatchListOutput(args: GetGlobalprotectMatchListOutputArgs, opts?: InvokeOptions): Output<GetGlobalprotectMatchListResult>
    def get_globalprotect_match_list(device: Optional[str] = None,
                                     folder: Optional[str] = None,
                                     id: Optional[str] = None,
                                     name: Optional[str] = None,
                                     snippet: Optional[str] = None,
                                     opts: Optional[InvokeOptions] = None) -> GetGlobalprotectMatchListResult
    def get_globalprotect_match_list_output(device: Optional[pulumi.Input[str]] = None,
                                     folder: Optional[pulumi.Input[str]] = None,
                                     id: Optional[pulumi.Input[str]] = None,
                                     name: Optional[pulumi.Input[str]] = None,
                                     snippet: Optional[pulumi.Input[str]] = None,
                                     opts: Optional[InvokeOptions] = None) -> Output[GetGlobalprotectMatchListResult]
    func LookupGlobalprotectMatchList(ctx *Context, args *LookupGlobalprotectMatchListArgs, opts ...InvokeOption) (*LookupGlobalprotectMatchListResult, error)
    func LookupGlobalprotectMatchListOutput(ctx *Context, args *LookupGlobalprotectMatchListOutputArgs, opts ...InvokeOption) LookupGlobalprotectMatchListResultOutput

    > Note: This function is named LookupGlobalprotectMatchList in the Go SDK.

    public static class GetGlobalprotectMatchList 
    {
        public static Task<GetGlobalprotectMatchListResult> InvokeAsync(GetGlobalprotectMatchListArgs args, InvokeOptions? opts = null)
        public static Output<GetGlobalprotectMatchListResult> Invoke(GetGlobalprotectMatchListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetGlobalprotectMatchListResult> getGlobalprotectMatchList(GetGlobalprotectMatchListArgs args, InvokeOptions options)
    public static Output<GetGlobalprotectMatchListResult> getGlobalprotectMatchList(GetGlobalprotectMatchListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getGlobalprotectMatchList:getGlobalprotectMatchList
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    UUID of the resource
    Device string
    The device in which the resource is defined
    Folder string
    Name string
    Snippet string
    Id string
    UUID of the resource
    Device string
    The device in which the resource is defined
    Folder string
    Name string
    Snippet string
    id String
    UUID of the resource
    device String
    The device in which the resource is defined
    folder String
    name String
    snippet String
    id string
    UUID of the resource
    device string
    The device in which the resource is defined
    folder string
    name string
    snippet string
    id str
    UUID of the resource
    device str
    The device in which the resource is defined
    folder str
    name str
    snippet str
    id String
    UUID of the resource
    device String
    The device in which the resource is defined
    folder String
    name String
    snippet String

    getGlobalprotectMatchList Result

    The following output properties are available:

    Description string
    Device string
    The device in which the resource is defined
    Filter string
    Folder string
    Id string
    UUID of the resource
    Name string
    Quarantine bool
    SendEmails List<string>
    SendHttps List<string>
    SendSnmptraps List<string>
    SendSyslogs List<string>
    SendToPanorama bool
    Snippet string
    Tfid string
    Description string
    Device string
    The device in which the resource is defined
    Filter string
    Folder string
    Id string
    UUID of the resource
    Name string
    Quarantine bool
    SendEmails []string
    SendHttps []string
    SendSnmptraps []string
    SendSyslogs []string
    SendToPanorama bool
    Snippet string
    Tfid string
    description String
    device String
    The device in which the resource is defined
    filter String
    folder String
    id String
    UUID of the resource
    name String
    quarantine Boolean
    sendEmails List<String>
    sendHttps List<String>
    sendSnmptraps List<String>
    sendSyslogs List<String>
    sendToPanorama Boolean
    snippet String
    tfid String
    description string
    device string
    The device in which the resource is defined
    filter string
    folder string
    id string
    UUID of the resource
    name string
    quarantine boolean
    sendEmails string[]
    sendHttps string[]
    sendSnmptraps string[]
    sendSyslogs string[]
    sendToPanorama boolean
    snippet string
    tfid string
    description str
    device str
    The device in which the resource is defined
    filter str
    folder str
    id str
    UUID of the resource
    name str
    quarantine bool
    send_emails Sequence[str]
    send_https Sequence[str]
    send_snmptraps Sequence[str]
    send_syslogs Sequence[str]
    send_to_panorama bool
    snippet str
    tfid str
    description String
    device String
    The device in which the resource is defined
    filter String
    folder String
    id String
    UUID of the resource
    name String
    quarantine Boolean
    sendEmails List<String>
    sendHttps List<String>
    sendSnmptraps List<String>
    sendSyslogs List<String>
    sendToPanorama Boolean
    snippet String
    tfid String

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Viewing docs for Strata Cloud Manager v1.0.5
    published on Saturday, Mar 21, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.