1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getAntiSpywareSignature
Strata Cloud Manager v1.0.1 published on Wednesday, Nov 26, 2025 by Pulumi
scm logo
Strata Cloud Manager v1.0.1 published on Wednesday, Nov 26, 2025 by Pulumi

    AntiSpywareSignature data source

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    // Look up anti-spyware-profile by ID
    const scmAntiSpywareSignatureDs = scm.getAntiSpywareSignature({
        id: "7720ab77-d9fe-42c1-8001-6ef2202aae8c",
    });
    export const scmAntiSpywareSignatureOutput = {
        threadId: scmAntiSpywareSignatureDs.then(scmAntiSpywareSignatureDs => scmAntiSpywareSignatureDs.id),
        folder: scmAntiSpywareSignatureDs.then(scmAntiSpywareSignatureDs => scmAntiSpywareSignatureDs.folder),
        name: scmAntiSpywareSignatureDs.then(scmAntiSpywareSignatureDs => scmAntiSpywareSignatureDs.name),
        comment: scmAntiSpywareSignatureDs.then(scmAntiSpywareSignatureDs => scmAntiSpywareSignatureDs.comment),
        severity: scmAntiSpywareSignatureDs.then(scmAntiSpywareSignatureDs => scmAntiSpywareSignatureDs.severity),
        signature: scmAntiSpywareSignatureDs.then(scmAntiSpywareSignatureDs => scmAntiSpywareSignatureDs.signature),
    };
    
    import pulumi
    import pulumi_scm as scm
    
    # Look up anti-spyware-profile by ID
    scm_anti_spyware_signature_ds = scm.get_anti_spyware_signature(id="7720ab77-d9fe-42c1-8001-6ef2202aae8c")
    pulumi.export("scmAntiSpywareSignatureOutput", {
        "threadId": scm_anti_spyware_signature_ds.id,
        "folder": scm_anti_spyware_signature_ds.folder,
        "name": scm_anti_spyware_signature_ds.name,
        "comment": scm_anti_spyware_signature_ds.comment,
        "severity": scm_anti_spyware_signature_ds.severity,
        "signature": scm_anti_spyware_signature_ds.signature,
    })
    
    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 anti-spyware-profile by ID
    		scmAntiSpywareSignatureDs, err := scm.LookupAntiSpywareSignature(ctx, &scm.LookupAntiSpywareSignatureArgs{
    			Id: "7720ab77-d9fe-42c1-8001-6ef2202aae8c",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("scmAntiSpywareSignatureOutput", pulumi.Map{
    			"threadId":  scmAntiSpywareSignatureDs.Id,
    			"folder":    scmAntiSpywareSignatureDs.Folder,
    			"name":      scmAntiSpywareSignatureDs.Name,
    			"comment":   scmAntiSpywareSignatureDs.Comment,
    			"severity":  scmAntiSpywareSignatureDs.Severity,
    			"signature": scmAntiSpywareSignatureDs.Signature,
    		})
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // Look up anti-spyware-profile by ID
        var scmAntiSpywareSignatureDs = Scm.GetAntiSpywareSignature.Invoke(new()
        {
            Id = "7720ab77-d9fe-42c1-8001-6ef2202aae8c",
        });
    
        return new Dictionary<string, object?>
        {
            ["scmAntiSpywareSignatureOutput"] = 
            {
                { "threadId", scmAntiSpywareSignatureDs.Apply(getAntiSpywareSignatureResult => getAntiSpywareSignatureResult.Id) },
                { "folder", scmAntiSpywareSignatureDs.Apply(getAntiSpywareSignatureResult => getAntiSpywareSignatureResult.Folder) },
                { "name", scmAntiSpywareSignatureDs.Apply(getAntiSpywareSignatureResult => getAntiSpywareSignatureResult.Name) },
                { "comment", scmAntiSpywareSignatureDs.Apply(getAntiSpywareSignatureResult => getAntiSpywareSignatureResult.Comment) },
                { "severity", scmAntiSpywareSignatureDs.Apply(getAntiSpywareSignatureResult => getAntiSpywareSignatureResult.Severity) },
                { "signature", scmAntiSpywareSignatureDs.Apply(getAntiSpywareSignatureResult => getAntiSpywareSignatureResult.Signature) },
            },
        };
    });
    
    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.GetAntiSpywareSignatureArgs;
    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 anti-spyware-profile by ID
            final var scmAntiSpywareSignatureDs = ScmFunctions.getAntiSpywareSignature(GetAntiSpywareSignatureArgs.builder()
                .id("7720ab77-d9fe-42c1-8001-6ef2202aae8c")
                .build());
    
            ctx.export("scmAntiSpywareSignatureOutput", Map.ofEntries(
                Map.entry("threadId", scmAntiSpywareSignatureDs.id()),
                Map.entry("folder", scmAntiSpywareSignatureDs.folder()),
                Map.entry("name", scmAntiSpywareSignatureDs.name()),
                Map.entry("comment", scmAntiSpywareSignatureDs.comment()),
                Map.entry("severity", scmAntiSpywareSignatureDs.severity()),
                Map.entry("signature", scmAntiSpywareSignatureDs.signature())
            ));
        }
    }
    
    variables:
      # Look up anti-spyware-profile by ID
      scmAntiSpywareSignatureDs:
        fn::invoke:
          function: scm:getAntiSpywareSignature
          arguments:
            id: 7720ab77-d9fe-42c1-8001-6ef2202aae8c
    outputs:
      # Output values of anti-spyware-profile
      scmAntiSpywareSignatureOutput:
        threadId: ${scmAntiSpywareSignatureDs.id}
        folder: ${scmAntiSpywareSignatureDs.folder}
        name: ${scmAntiSpywareSignatureDs.name}
        comment: ${scmAntiSpywareSignatureDs.comment}
        severity: ${scmAntiSpywareSignatureDs.severity}
        signature: ${scmAntiSpywareSignatureDs.signature}
    

    Using getAntiSpywareSignature

    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 getAntiSpywareSignature(args: GetAntiSpywareSignatureArgs, opts?: InvokeOptions): Promise<GetAntiSpywareSignatureResult>
    function getAntiSpywareSignatureOutput(args: GetAntiSpywareSignatureOutputArgs, opts?: InvokeOptions): Output<GetAntiSpywareSignatureResult>
    def get_anti_spyware_signature(id: Optional[str] = None,
                                   opts: Optional[InvokeOptions] = None) -> GetAntiSpywareSignatureResult
    def get_anti_spyware_signature_output(id: Optional[pulumi.Input[str]] = None,
                                   opts: Optional[InvokeOptions] = None) -> Output[GetAntiSpywareSignatureResult]
    func LookupAntiSpywareSignature(ctx *Context, args *LookupAntiSpywareSignatureArgs, opts ...InvokeOption) (*LookupAntiSpywareSignatureResult, error)
    func LookupAntiSpywareSignatureOutput(ctx *Context, args *LookupAntiSpywareSignatureOutputArgs, opts ...InvokeOption) LookupAntiSpywareSignatureResultOutput

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

    public static class GetAntiSpywareSignature 
    {
        public static Task<GetAntiSpywareSignatureResult> InvokeAsync(GetAntiSpywareSignatureArgs args, InvokeOptions? opts = null)
        public static Output<GetAntiSpywareSignatureResult> Invoke(GetAntiSpywareSignatureInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetAntiSpywareSignatureResult> getAntiSpywareSignature(GetAntiSpywareSignatureArgs args, InvokeOptions options)
    public static Output<GetAntiSpywareSignatureResult> getAntiSpywareSignature(GetAntiSpywareSignatureArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getAntiSpywareSignature:getAntiSpywareSignature
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    UUID of the resource
    Id string
    UUID of the resource
    id String
    UUID of the resource
    id string
    UUID of the resource
    id str
    UUID of the resource
    id String
    UUID of the resource

    getAntiSpywareSignature Result

    The following output properties are available:

    Bugtraqs List<string>
    Bugtraq
    Comment string
    Comment
    Cves List<string>
    Cve
    DefaultAction GetAntiSpywareSignatureDefaultAction
    anti spyware signature default action
    Device string
    The device in which the resource is defined
    Direction string
    Folder string
    Id string
    UUID of the resource
    References List<string>
    Severity string
    Signature GetAntiSpywareSignatureSignature
    Snippet string
    Tfid string
    ThreatId string
    Threatname string
    Vendors List<string>
    Bugtraqs []string
    Bugtraq
    Comment string
    Comment
    Cves []string
    Cve
    DefaultAction GetAntiSpywareSignatureDefaultAction
    anti spyware signature default action
    Device string
    The device in which the resource is defined
    Direction string
    Folder string
    Id string
    UUID of the resource
    References []string
    Severity string
    Signature GetAntiSpywareSignatureSignature
    Snippet string
    Tfid string
    ThreatId string
    Threatname string
    Vendors []string
    bugtraqs List<String>
    Bugtraq
    comment String
    Comment
    cves List<String>
    Cve
    defaultAction GetAntiSpywareSignatureDefaultAction
    anti spyware signature default action
    device String
    The device in which the resource is defined
    direction String
    folder String
    id String
    UUID of the resource
    references List<String>
    severity String
    signature GetAntiSpywareSignatureSignature
    snippet String
    tfid String
    threatId String
    threatname String
    vendors List<String>
    bugtraqs string[]
    Bugtraq
    comment string
    Comment
    cves string[]
    Cve
    defaultAction GetAntiSpywareSignatureDefaultAction
    anti spyware signature default action
    device string
    The device in which the resource is defined
    direction string
    folder string
    id string
    UUID of the resource
    references string[]
    severity string
    signature GetAntiSpywareSignatureSignature
    snippet string
    tfid string
    threatId string
    threatname string
    vendors string[]
    bugtraqs Sequence[str]
    Bugtraq
    comment str
    Comment
    cves Sequence[str]
    Cve
    default_action GetAntiSpywareSignatureDefaultAction
    anti spyware signature default action
    device str
    The device in which the resource is defined
    direction str
    folder str
    id str
    UUID of the resource
    references Sequence[str]
    severity str
    signature GetAntiSpywareSignatureSignature
    snippet str
    tfid str
    threat_id str
    threatname str
    vendors Sequence[str]
    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
    folder String
    id String
    UUID of the resource
    references List<String>
    severity String
    signature Property Map
    snippet String
    tfid String
    threatId String
    threatname String
    vendors List<String>

    Supporting Types

    GetAntiSpywareSignatureDefaultAction

    Alert GetAntiSpywareSignatureDefaultActionAlert
    Alert
    Allow GetAntiSpywareSignatureDefaultActionAllow

    Allow

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    BlockIp GetAntiSpywareSignatureDefaultActionBlockIp

    anti spyware signature block ip

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    Drop GetAntiSpywareSignatureDefaultActionDrop

    Drop

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    ResetBoth GetAntiSpywareSignatureDefaultActionResetBoth

    Reset both

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    ResetClient GetAntiSpywareSignatureDefaultActionResetClient

    Reset client

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    ResetServer GetAntiSpywareSignatureDefaultActionResetServer

    Reset server

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    Alert GetAntiSpywareSignatureDefaultActionAlert
    Alert
    Allow GetAntiSpywareSignatureDefaultActionAllow

    Allow

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    BlockIp GetAntiSpywareSignatureDefaultActionBlockIp

    anti spyware signature block ip

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    Drop GetAntiSpywareSignatureDefaultActionDrop

    Drop

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    ResetBoth GetAntiSpywareSignatureDefaultActionResetBoth

    Reset both

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    ResetClient GetAntiSpywareSignatureDefaultActionResetClient

    Reset client

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    ResetServer GetAntiSpywareSignatureDefaultActionResetServer

    Reset server

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    alert GetAntiSpywareSignatureDefaultActionAlert
    Alert
    allow GetAntiSpywareSignatureDefaultActionAllow

    Allow

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    blockIp GetAntiSpywareSignatureDefaultActionBlockIp

    anti spyware signature block ip

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    drop GetAntiSpywareSignatureDefaultActionDrop

    Drop

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    resetBoth GetAntiSpywareSignatureDefaultActionResetBoth

    Reset both

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    resetClient GetAntiSpywareSignatureDefaultActionResetClient

    Reset client

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    resetServer GetAntiSpywareSignatureDefaultActionResetServer

    Reset server

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    alert GetAntiSpywareSignatureDefaultActionAlert
    Alert
    allow GetAntiSpywareSignatureDefaultActionAllow

    Allow

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    blockIp GetAntiSpywareSignatureDefaultActionBlockIp

    anti spyware signature block ip

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    drop GetAntiSpywareSignatureDefaultActionDrop

    Drop

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    resetBoth GetAntiSpywareSignatureDefaultActionResetBoth

    Reset both

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    resetClient GetAntiSpywareSignatureDefaultActionResetClient

    Reset client

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    resetServer GetAntiSpywareSignatureDefaultActionResetServer

    Reset server

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    alert GetAntiSpywareSignatureDefaultActionAlert
    Alert
    allow GetAntiSpywareSignatureDefaultActionAllow

    Allow

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    block_ip GetAntiSpywareSignatureDefaultActionBlockIp

    anti spyware signature block ip

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    drop GetAntiSpywareSignatureDefaultActionDrop

    Drop

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    reset_both GetAntiSpywareSignatureDefaultActionResetBoth

    Reset both

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    reset_client GetAntiSpywareSignatureDefaultActionResetClient

    Reset client

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    reset_server GetAntiSpywareSignatureDefaultActionResetServer

    Reset server

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    alert Property Map
    Alert
    allow Property Map

    Allow

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    blockIp Property Map

    anti spyware signature block ip

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    drop Property Map

    Drop

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    resetBoth Property Map

    Reset both

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    resetClient Property Map

    Reset client

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    resetServer Property Map

    Reset server

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, drop, reset_both, reset_client, and reset_server.

    GetAntiSpywareSignatureDefaultActionBlockIp

    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

    GetAntiSpywareSignatureSignature

    Combination GetAntiSpywareSignatureSignatureCombination
    anti spyware signature combination
    Standards List<GetAntiSpywareSignatureSignatureStandard>

    Standard

    ℹ️ Note: You must specify exactly one of combination and standard.

    Combination GetAntiSpywareSignatureSignatureCombination
    anti spyware signature combination
    Standards []GetAntiSpywareSignatureSignatureStandard

    Standard

    ℹ️ Note: You must specify exactly one of combination and standard.

    combination GetAntiSpywareSignatureSignatureCombination
    anti spyware signature combination
    standards List<GetAntiSpywareSignatureSignatureStandard>

    Standard

    ℹ️ Note: You must specify exactly one of combination and standard.

    combination GetAntiSpywareSignatureSignatureCombination
    anti spyware signature combination
    standards GetAntiSpywareSignatureSignatureStandard[]

    Standard

    ℹ️ Note: You must specify exactly one of combination and standard.

    combination GetAntiSpywareSignatureSignatureCombination
    anti spyware signature combination
    standards Sequence[GetAntiSpywareSignatureSignatureStandard]

    Standard

    ℹ️ Note: You must specify exactly one of combination and standard.

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

    Standard

    ℹ️ Note: You must specify exactly one of combination and standard.

    GetAntiSpywareSignatureSignatureCombination

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

    GetAntiSpywareSignatureSignatureCombinationAndCondition

    name String
    Name
    orConditions List<Property Map>
    Or condition

    GetAntiSpywareSignatureSignatureCombinationAndConditionOrCondition

    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

    GetAntiSpywareSignatureSignatureCombinationTimeAttribute

    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

    GetAntiSpywareSignatureSignatureStandard

    AndConditions List<GetAntiSpywareSignatureSignatureStandardAndCondition>
    And condition
    Comment string
    Comment
    Name string
    Name
    OrderFree bool
    Order free
    Scope string
    Scope
    AndConditions []GetAntiSpywareSignatureSignatureStandardAndCondition
    And condition
    Comment string
    Comment
    Name string
    Name
    OrderFree bool
    Order free
    Scope string
    Scope
    andConditions List<GetAntiSpywareSignatureSignatureStandardAndCondition>
    And condition
    comment String
    Comment
    name String
    Name
    orderFree Boolean
    Order free
    scope String
    Scope
    andConditions GetAntiSpywareSignatureSignatureStandardAndCondition[]
    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

    GetAntiSpywareSignatureSignatureStandardAndCondition

    name String
    Name
    orConditions List<Property Map>
    Or condition

    GetAntiSpywareSignatureSignatureStandardAndConditionOrCondition

    name String
    Name
    operator Property Map
    Operator

    GetAntiSpywareSignatureSignatureStandardAndConditionOrConditionOperator

    GetAntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorEqualTo

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

    GetAntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorEqualToQualifier

    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

    GetAntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorGreaterThan

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

    GetAntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorGreaterThanQualifier

    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

    GetAntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorLessThan

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

    GetAntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorLessThanQualifier

    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

    GetAntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorPatternMatch

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

    GetAntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorPatternMatchQualifier

    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 v1.0.1 published on Wednesday, Nov 26, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate