1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getAntiSpywareSignatureList
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
scm logo
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 anti-spyware profiles
    const allAntiSpywareSignatures = scm.getAntiSpywareSignatureList({
        folder: "All",
    });
    export const scmAntiSpywareSignatureList = allAntiSpywareSignatures.then(allAntiSpywareSignatures => allAntiSpywareSignatures.datas);
    
    import pulumi
    import pulumi_scm as scm
    
    # Fetch a list of all anti-spyware profiles
    all_anti_spyware_signatures = scm.get_anti_spyware_signature_list(folder="All")
    pulumi.export("scmAntiSpywareSignatureList", all_anti_spyware_signatures.datas)
    
    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 {
    		// Fetch a list of all anti-spyware profiles
    		allAntiSpywareSignatures, err := scm.GetAntiSpywareSignatureList(ctx, &scm.GetAntiSpywareSignatureListArgs{
    			Folder: pulumi.StringRef("All"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("scmAntiSpywareSignatureList", allAntiSpywareSignatures.Datas)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // Fetch a list of all anti-spyware profiles
        var allAntiSpywareSignatures = Scm.GetAntiSpywareSignatureList.Invoke(new()
        {
            Folder = "All",
        });
    
        return new Dictionary<string, object?>
        {
            ["scmAntiSpywareSignatureList"] = allAntiSpywareSignatures.Apply(getAntiSpywareSignatureListResult => getAntiSpywareSignatureListResult.Datas),
        };
    });
    
    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.GetAntiSpywareSignatureListArgs;
    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) {
            // Fetch a list of all anti-spyware profiles
            final var allAntiSpywareSignatures = ScmFunctions.getAntiSpywareSignatureList(GetAntiSpywareSignatureListArgs.builder()
                .folder("All")
                .build());
    
            ctx.export("scmAntiSpywareSignatureList", allAntiSpywareSignatures.datas());
        }
    }
    
    variables:
      # Fetch a list of all anti-spyware profiles
      allAntiSpywareSignatures:
        fn::invoke:
          function: scm:getAntiSpywareSignatureList
          arguments:
            folder: All
    outputs:
      # Output the raw list of all anti-spyware profiles
      scmAntiSpywareSignatureList: ${allAntiSpywareSignatures.datas}
    

    Using getAntiSpywareSignatureList

    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 getAntiSpywareSignatureList(args: GetAntiSpywareSignatureListArgs, opts?: InvokeOptions): Promise<GetAntiSpywareSignatureListResult>
    function getAntiSpywareSignatureListOutput(args: GetAntiSpywareSignatureListOutputArgs, opts?: InvokeOptions): Output<GetAntiSpywareSignatureListResult>
    def get_anti_spyware_signature_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) -> GetAntiSpywareSignatureListResult
    def get_anti_spyware_signature_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[GetAntiSpywareSignatureListResult]
    func GetAntiSpywareSignatureList(ctx *Context, args *GetAntiSpywareSignatureListArgs, opts ...InvokeOption) (*GetAntiSpywareSignatureListResult, error)
    func GetAntiSpywareSignatureListOutput(ctx *Context, args *GetAntiSpywareSignatureListOutputArgs, opts ...InvokeOption) GetAntiSpywareSignatureListResultOutput

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

    public static class GetAntiSpywareSignatureList 
    {
        public static Task<GetAntiSpywareSignatureListResult> InvokeAsync(GetAntiSpywareSignatureListArgs args, InvokeOptions? opts = null)
        public static Output<GetAntiSpywareSignatureListResult> Invoke(GetAntiSpywareSignatureListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetAntiSpywareSignatureListResult> getAntiSpywareSignatureList(GetAntiSpywareSignatureListArgs args, InvokeOptions options)
    public static Output<GetAntiSpywareSignatureListResult> getAntiSpywareSignatureList(GetAntiSpywareSignatureListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getAntiSpywareSignatureList:getAntiSpywareSignatureList
      arguments:
        # arguments dictionary

    The following arguments are supported:

    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.
    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.
    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.
    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.
    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.
    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.

    getAntiSpywareSignatureList Result

    The following output properties are available:

    Datas List<GetAntiSpywareSignatureListData>
    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 []GetAntiSpywareSignatureListData
    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<GetAntiSpywareSignatureListData>
    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 GetAntiSpywareSignatureListData[]
    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[GetAntiSpywareSignatureListData]
    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

    GetAntiSpywareSignatureListData

    Bugtraqs List<string>
    Bugtraq
    Comment string
    Comment
    Cves List<string>
    Cve
    DefaultAction GetAntiSpywareSignatureListDataDefaultAction
    anti spyware signature default action
    Device string
    The device in which the resource is defined
    Direction string
    Direction
    Folder string
    The folder in which the resource is defined
    Id string
    UUID of the resource
    References List<string>
    Reference
    Severity string
    Severity
    Signature GetAntiSpywareSignatureListDataSignature
    anti spyware signature
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    ThreatId string
    threat id range \n\n and \n\n
    Threatname string
    Threatname
    Vendors List<string>
    Vendor
    Bugtraqs []string
    Bugtraq
    Comment string
    Comment
    Cves []string
    Cve
    DefaultAction GetAntiSpywareSignatureListDataDefaultAction
    anti spyware signature default action
    Device string
    The device in which the resource is defined
    Direction string
    Direction
    Folder string
    The folder in which the resource is defined
    Id string
    UUID of the resource
    References []string
    Reference
    Severity string
    Severity
    Signature GetAntiSpywareSignatureListDataSignature
    anti spyware signature
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    ThreatId string
    threat id range \n\n and \n\n
    Threatname string
    Threatname
    Vendors []string
    Vendor
    bugtraqs List<String>
    Bugtraq
    comment String
    Comment
    cves List<String>
    Cve
    defaultAction GetAntiSpywareSignatureListDataDefaultAction
    anti spyware signature default action
    device String
    The device in which the resource is defined
    direction String
    Direction
    folder String
    The folder in which the resource is defined
    id String
    UUID of the resource
    references List<String>
    Reference
    severity String
    Severity
    signature GetAntiSpywareSignatureListDataSignature
    anti spyware signature
    snippet String
    The snippet in which the resource is defined
    tfid String
    threatId String
    threat id range \n\n and \n\n
    threatname String
    Threatname
    vendors List<String>
    Vendor
    bugtraqs string[]
    Bugtraq
    comment string
    Comment
    cves string[]
    Cve
    defaultAction GetAntiSpywareSignatureListDataDefaultAction
    anti spyware signature default action
    device string
    The device in which the resource is defined
    direction string
    Direction
    folder string
    The folder in which the resource is defined
    id string
    UUID of the resource
    references string[]
    Reference
    severity string
    Severity
    signature GetAntiSpywareSignatureListDataSignature
    anti spyware signature
    snippet string
    The snippet in which the resource is defined
    tfid string
    threatId string
    threat id range \n\n and \n\n
    threatname string
    Threatname
    vendors string[]
    Vendor
    bugtraqs Sequence[str]
    Bugtraq
    comment str
    Comment
    cves Sequence[str]
    Cve
    default_action GetAntiSpywareSignatureListDataDefaultAction
    anti spyware signature default action
    device str
    The device in which the resource is defined
    direction str
    Direction
    folder str
    The folder in which the resource is defined
    id str
    UUID of the resource
    references Sequence[str]
    Reference
    severity str
    Severity
    signature GetAntiSpywareSignatureListDataSignature
    anti spyware signature
    snippet str
    The snippet in which the resource is defined
    tfid str
    threat_id str
    threat id range \n\n and \n\n
    threatname str
    Threatname
    vendors Sequence[str]
    Vendor
    bugtraqs List<String>
    Bugtraq
    comment String
    Comment
    cves List<String>
    Cve
    defaultAction Property Map
    anti spyware signature default action
    device String
    The device in which the resource is defined
    direction String
    Direction
    folder String
    The folder in which the resource is defined
    id String
    UUID of the resource
    references List<String>
    Reference
    severity String
    Severity
    signature Property Map
    anti spyware signature
    snippet String
    The snippet in which the resource is defined
    tfid String
    threatId String
    threat id range \n\n and \n\n
    threatname String
    Threatname
    vendors List<String>
    Vendor

    GetAntiSpywareSignatureListDataDefaultAction

    GetAntiSpywareSignatureListDataDefaultActionBlockIp

    Duration int
    Duration
    TrackBy string
    Track by
    Duration int
    Duration
    TrackBy string
    Track by
    duration Integer
    Duration
    trackBy String
    Track by
    duration number
    Duration
    trackBy string
    Track by
    duration int
    Duration
    track_by str
    Track by
    duration Number
    Duration
    trackBy String
    Track by

    GetAntiSpywareSignatureListDataSignature

    combination Property Map
    anti spyware signature combination
    standards List<Property Map>
    Standard

    GetAntiSpywareSignatureListDataSignatureCombination

    andConditions List<Property Map>
    And condition
    orderFree Boolean
    Order free
    timeAttribute Property Map
    anti spyware time attribute

    GetAntiSpywareSignatureListDataSignatureCombinationAndCondition

    name String
    Name
    orConditions List<Property Map>
    Or condition

    GetAntiSpywareSignatureListDataSignatureCombinationAndConditionOrCondition

    Name string
    Name
    ThreatId string
    Threat id
    Name string
    Name
    ThreatId string
    Threat id
    name String
    Name
    threatId String
    Threat id
    name string
    Name
    threatId string
    Threat id
    name str
    Name
    threat_id str
    Threat id
    name String
    Name
    threatId String
    Threat id

    GetAntiSpywareSignatureListDataSignatureCombinationTimeAttribute

    Interval int
    Interval
    Threshold int
    Threshold
    TrackBy string
    Track by
    Interval int
    Interval
    Threshold int
    Threshold
    TrackBy string
    Track by
    interval Integer
    Interval
    threshold Integer
    Threshold
    trackBy String
    Track by
    interval number
    Interval
    threshold number
    Threshold
    trackBy string
    Track by
    interval int
    Interval
    threshold int
    Threshold
    track_by str
    Track by
    interval Number
    Interval
    threshold Number
    Threshold
    trackBy String
    Track by

    GetAntiSpywareSignatureListDataSignatureStandard

    andConditions GetAntiSpywareSignatureListDataSignatureStandardAndCondition[]
    And condition
    comment string
    Comment
    name string
    Name
    orderFree boolean
    Order free
    scope string
    Scope
    andConditions List<Property Map>
    And condition
    comment String
    Comment
    name String
    Name
    orderFree Boolean
    Order free
    scope String
    Scope

    GetAntiSpywareSignatureListDataSignatureStandardAndCondition

    name String
    Name
    orConditions List<Property Map>
    Or condition

    GetAntiSpywareSignatureListDataSignatureStandardAndConditionOrCondition

    name String
    Name
    operator Property Map
    Operator

    GetAntiSpywareSignatureListDataSignatureStandardAndConditionOrConditionOperator

    GetAntiSpywareSignatureListDataSignatureStandardAndConditionOrConditionOperatorEqualTo

    context String
    Context
    negate Boolean
    Negate
    qualifiers List<Property Map>
    Qualifier
    value Number
    Value

    GetAntiSpywareSignatureListDataSignatureStandardAndConditionOrConditionOperatorEqualToQualifier

    Name string
    Name
    Value string
    Value
    Name string
    Name
    Value string
    Value
    name String
    Name
    value String
    Value
    name string
    Name
    value string
    Value
    name str
    Name
    value str
    Value
    name String
    Name
    value String
    Value

    GetAntiSpywareSignatureListDataSignatureStandardAndConditionOrConditionOperatorGreaterThan

    context String
    Context
    qualifiers List<Property Map>
    Qualifier
    value Number
    Value

    GetAntiSpywareSignatureListDataSignatureStandardAndConditionOrConditionOperatorGreaterThanQualifier

    Name string
    Name
    Value string
    Value
    Name string
    Name
    Value string
    Value
    name String
    Name
    value String
    Value
    name string
    Name
    value string
    Value
    name str
    Name
    value str
    Value
    name String
    Name
    value String
    Value

    GetAntiSpywareSignatureListDataSignatureStandardAndConditionOrConditionOperatorLessThan

    context String
    Context
    qualifiers List<Property Map>
    Qualifier
    value Number
    Value

    GetAntiSpywareSignatureListDataSignatureStandardAndConditionOrConditionOperatorLessThanQualifier

    Name string
    Name
    Value string
    Value
    Name string
    Name
    Value string
    Value
    name String
    Name
    value String
    Value
    name string
    Name
    value string
    Value
    name str
    Name
    value str
    Value
    name String
    Name
    value String
    Value

    GetAntiSpywareSignatureListDataSignatureStandardAndConditionOrConditionOperatorPatternMatch

    context String
    Context
    negate Boolean
    Negate
    pattern String
    Pattern
    qualifiers List<Property Map>
    Qualifier

    GetAntiSpywareSignatureListDataSignatureStandardAndConditionOrConditionOperatorPatternMatchQualifier

    Name string
    Name
    Value string
    Value
    Name string
    Name
    Value string
    Value
    name String
    Name
    value String
    Value
    name string
    Name
    value string
    Value
    name str
    Name
    value str
    Value
    name String
    Name
    value String
    Value

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate