1. Packages
  2. Packages
  3. Strata Cloud Manager Provider
  4. API Docs
  5. AntiSpywareSignature
Viewing docs for Strata Cloud Manager v1.0.6
published on Saturday, Apr 25, 2026 by Pulumi
scm logo
Viewing docs for Strata Cloud Manager v1.0.6
published on Saturday, Apr 25, 2026 by Pulumi

    AntiSpywareSignature resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    const scmAntiSpywareSignature1 = new scm.AntiSpywareSignature("scm_anti_spyware_signature_1", {
        folder: "ngfw-shared",
        threatId: "6900001",
        comment: "Managed by Pulumi",
        direction: "client2server",
        severity: "critical",
        threatname: "Example Threat",
        defaultAction: {
            alert: {},
        },
        signature: {
            combination: {
                andConditions: [{
                    name: "And Condition 1",
                    orCondition: [{
                        name: "Test",
                        threat_id: "10001",
                    }],
                }],
                orderFree: false,
                timeAttribute: {
                    interval: 3600,
                    threshold: 60,
                    trackBy: "source",
                },
            },
        },
    });
    
    import pulumi
    import pulumi_scm as scm
    
    scm_anti_spyware_signature1 = scm.AntiSpywareSignature("scm_anti_spyware_signature_1",
        folder="ngfw-shared",
        threat_id="6900001",
        comment="Managed by Pulumi",
        direction="client2server",
        severity="critical",
        threatname="Example Threat",
        default_action={
            "alert": {},
        },
        signature={
            "combination": {
                "and_conditions": [{
                    "name": "And Condition 1",
                    "or_condition": [{
                        "name": "Test",
                        "threat_id": "10001",
                    }],
                }],
                "order_free": False,
                "time_attribute": {
                    "interval": 3600,
                    "threshold": 60,
                    "track_by": "source",
                },
            },
        })
    
    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 {
    		_, err := scm.NewAntiSpywareSignature(ctx, "scm_anti_spyware_signature_1", &scm.AntiSpywareSignatureArgs{
    			Folder:     pulumi.String("ngfw-shared"),
    			ThreatId:   pulumi.String("6900001"),
    			Comment:    pulumi.String("Managed by Pulumi"),
    			Direction:  pulumi.String("client2server"),
    			Severity:   pulumi.String("critical"),
    			Threatname: pulumi.String("Example Threat"),
    			DefaultAction: &scm.AntiSpywareSignatureDefaultActionArgs{
    				Alert: &scm.AntiSpywareSignatureDefaultActionAlertArgs{},
    			},
    			Signature: &scm.AntiSpywareSignatureSignatureArgs{
    				Combination: &scm.AntiSpywareSignatureSignatureCombinationArgs{
    					AndConditions: scm.AntiSpywareSignatureSignatureCombinationAndConditionArray{
    						&scm.AntiSpywareSignatureSignatureCombinationAndConditionArgs{
    							Name: pulumi.String("And Condition 1"),
    							OrCondition: []map[string]interface{}{
    								map[string]interface{}{
    									"name":      "Test",
    									"threat_id": "10001",
    								},
    							},
    						},
    					},
    					OrderFree: pulumi.Bool(false),
    					TimeAttribute: &scm.AntiSpywareSignatureSignatureCombinationTimeAttributeArgs{
    						Interval:  pulumi.Int(3600),
    						Threshold: pulumi.Int(60),
    						TrackBy:   pulumi.String("source"),
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        var scmAntiSpywareSignature1 = new Scm.Index.AntiSpywareSignature("scm_anti_spyware_signature_1", new()
        {
            Folder = "ngfw-shared",
            ThreatId = "6900001",
            Comment = "Managed by Pulumi",
            Direction = "client2server",
            Severity = "critical",
            Threatname = "Example Threat",
            DefaultAction = new Scm.Inputs.AntiSpywareSignatureDefaultActionArgs
            {
                Alert = null,
            },
            Signature = new Scm.Inputs.AntiSpywareSignatureSignatureArgs
            {
                Combination = new Scm.Inputs.AntiSpywareSignatureSignatureCombinationArgs
                {
                    AndConditions = new[]
                    {
                        new Scm.Inputs.AntiSpywareSignatureSignatureCombinationAndConditionArgs
                        {
                            Name = "And Condition 1",
                            OrCondition = new[]
                            {
                                
                                {
                                    { "name", "Test" },
                                    { "threat_id", "10001" },
                                },
                            },
                        },
                    },
                    OrderFree = false,
                    TimeAttribute = new Scm.Inputs.AntiSpywareSignatureSignatureCombinationTimeAttributeArgs
                    {
                        Interval = 3600,
                        Threshold = 60,
                        TrackBy = "source",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.AntiSpywareSignature;
    import com.pulumi.scm.AntiSpywareSignatureArgs;
    import com.pulumi.scm.inputs.AntiSpywareSignatureDefaultActionArgs;
    import com.pulumi.scm.inputs.AntiSpywareSignatureDefaultActionAlertArgs;
    import com.pulumi.scm.inputs.AntiSpywareSignatureSignatureArgs;
    import com.pulumi.scm.inputs.AntiSpywareSignatureSignatureCombinationArgs;
    import com.pulumi.scm.inputs.AntiSpywareSignatureSignatureCombinationTimeAttributeArgs;
    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) {
            var scmAntiSpywareSignature1 = new AntiSpywareSignature("scmAntiSpywareSignature1", AntiSpywareSignatureArgs.builder()
                .folder("ngfw-shared")
                .threatId("6900001")
                .comment("Managed by Pulumi")
                .direction("client2server")
                .severity("critical")
                .threatname("Example Threat")
                .defaultAction(AntiSpywareSignatureDefaultActionArgs.builder()
                    .alert(AntiSpywareSignatureDefaultActionAlertArgs.builder()
                        .build())
                    .build())
                .signature(AntiSpywareSignatureSignatureArgs.builder()
                    .combination(AntiSpywareSignatureSignatureCombinationArgs.builder()
                        .andConditions(AntiSpywareSignatureSignatureCombinationAndConditionArgs.builder()
                            .name("And Condition 1")
                            .orCondition(List.of(Map.ofEntries(
                                Map.entry("name", "Test"),
                                Map.entry("threat_id", "10001")
                            )))
                            .build())
                        .orderFree(false)
                        .timeAttribute(AntiSpywareSignatureSignatureCombinationTimeAttributeArgs.builder()
                            .interval(3600)
                            .threshold(60)
                            .trackBy("source")
                            .build())
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      scmAntiSpywareSignature1:
        type: scm:AntiSpywareSignature
        name: scm_anti_spyware_signature_1
        properties:
          folder: ngfw-shared
          threatId: 6.900001e+06
          comment: Managed by Pulumi
          direction: client2server
          severity: critical
          threatname: Example Threat
          defaultAction:
            alert: {}
          signature:
            combination:
              andConditions:
                - name: And Condition 1
                  orCondition:
                    - name: Test
                      threat_id: '10001'
              orderFree: false
              timeAttribute:
                interval: 3600
                threshold: 60
                trackBy: source
    

    Create AntiSpywareSignature Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AntiSpywareSignature(name: string, args: AntiSpywareSignatureArgs, opts?: CustomResourceOptions);
    @overload
    def AntiSpywareSignature(resource_name: str,
                             args: AntiSpywareSignatureArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def AntiSpywareSignature(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             threat_id: Optional[str] = None,
                             threatname: Optional[str] = None,
                             folder: Optional[str] = None,
                             default_action: Optional[AntiSpywareSignatureDefaultActionArgs] = None,
                             device: Optional[str] = None,
                             direction: Optional[str] = None,
                             bugtraqs: Optional[Sequence[str]] = None,
                             references: Optional[Sequence[str]] = None,
                             severity: Optional[str] = None,
                             signature: Optional[AntiSpywareSignatureSignatureArgs] = None,
                             snippet: Optional[str] = None,
                             cves: Optional[Sequence[str]] = None,
                             comment: Optional[str] = None,
                             vendors: Optional[Sequence[str]] = None)
    func NewAntiSpywareSignature(ctx *Context, name string, args AntiSpywareSignatureArgs, opts ...ResourceOption) (*AntiSpywareSignature, error)
    public AntiSpywareSignature(string name, AntiSpywareSignatureArgs args, CustomResourceOptions? opts = null)
    public AntiSpywareSignature(String name, AntiSpywareSignatureArgs args)
    public AntiSpywareSignature(String name, AntiSpywareSignatureArgs args, CustomResourceOptions options)
    
    type: scm:AntiSpywareSignature
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args AntiSpywareSignatureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AntiSpywareSignatureArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AntiSpywareSignatureArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AntiSpywareSignatureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AntiSpywareSignatureArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    AntiSpywareSignature Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The AntiSpywareSignature resource accepts the following input properties:

    ThreatId string
    threat id range \n\n and \n\n
    Threatname string
    Threatname
    Bugtraqs List<string>
    Bugtraq
    Comment string
    Comment
    Cves List<string>
    Cve
    DefaultAction AntiSpywareSignatureDefaultAction
    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

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    References List<string>
    Reference
    Severity string
    Severity
    Signature AntiSpywareSignatureSignature
    anti spyware signature
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Vendors List<string>
    Vendor
    ThreatId string
    threat id range \n\n and \n\n
    Threatname string
    Threatname
    Bugtraqs []string
    Bugtraq
    Comment string
    Comment
    Cves []string
    Cve
    DefaultAction AntiSpywareSignatureDefaultActionArgs
    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

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    References []string
    Reference
    Severity string
    Severity
    Signature AntiSpywareSignatureSignatureArgs
    anti spyware signature
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Vendors []string
    Vendor
    threatId String
    threat id range \n\n and \n\n
    threatname String
    Threatname
    bugtraqs List<String>
    Bugtraq
    comment String
    Comment
    cves List<String>
    Cve
    defaultAction AntiSpywareSignatureDefaultAction
    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

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    references List<String>
    Reference
    severity String
    Severity
    signature AntiSpywareSignatureSignature
    anti spyware signature
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    vendors List<String>
    Vendor
    threatId string
    threat id range \n\n and \n\n
    threatname string
    Threatname
    bugtraqs string[]
    Bugtraq
    comment string
    Comment
    cves string[]
    Cve
    defaultAction AntiSpywareSignatureDefaultAction
    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

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    references string[]
    Reference
    severity string
    Severity
    signature AntiSpywareSignatureSignature
    anti spyware signature
    snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    vendors string[]
    Vendor
    threat_id str
    threat id range \n\n and \n\n
    threatname str
    Threatname
    bugtraqs Sequence[str]
    Bugtraq
    comment str
    Comment
    cves Sequence[str]
    Cve
    default_action AntiSpywareSignatureDefaultActionArgs
    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

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    references Sequence[str]
    Reference
    severity str
    Severity
    signature AntiSpywareSignatureSignatureArgs
    anti spyware signature
    snippet str

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    vendors Sequence[str]
    Vendor
    threatId String
    threat id range \n\n and \n\n
    threatname String
    Threatname
    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

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    references List<String>
    Reference
    severity String
    Severity
    signature Property Map
    anti spyware signature
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    vendors List<String>
    Vendor

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AntiSpywareSignature resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    The Terraform ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    The Terraform ID.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    The Terraform ID.
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    The Terraform ID.
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    The Terraform ID.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    The Terraform ID.

    Look up Existing AntiSpywareSignature Resource

    Get an existing AntiSpywareSignature resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AntiSpywareSignatureState, opts?: CustomResourceOptions): AntiSpywareSignature
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            bugtraqs: Optional[Sequence[str]] = None,
            comment: Optional[str] = None,
            cves: Optional[Sequence[str]] = None,
            default_action: Optional[AntiSpywareSignatureDefaultActionArgs] = None,
            device: Optional[str] = None,
            direction: Optional[str] = None,
            folder: Optional[str] = None,
            references: Optional[Sequence[str]] = None,
            severity: Optional[str] = None,
            signature: Optional[AntiSpywareSignatureSignatureArgs] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None,
            threat_id: Optional[str] = None,
            threatname: Optional[str] = None,
            vendors: Optional[Sequence[str]] = None) -> AntiSpywareSignature
    func GetAntiSpywareSignature(ctx *Context, name string, id IDInput, state *AntiSpywareSignatureState, opts ...ResourceOption) (*AntiSpywareSignature, error)
    public static AntiSpywareSignature Get(string name, Input<string> id, AntiSpywareSignatureState? state, CustomResourceOptions? opts = null)
    public static AntiSpywareSignature get(String name, Output<String> id, AntiSpywareSignatureState state, CustomResourceOptions options)
    resources:  _:    type: scm:AntiSpywareSignature    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Bugtraqs List<string>
    Bugtraq
    Comment string
    Comment
    Cves List<string>
    Cve
    DefaultAction AntiSpywareSignatureDefaultAction
    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

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    References List<string>
    Reference
    Severity string
    Severity
    Signature AntiSpywareSignatureSignature
    anti spyware signature
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Tfid string
    The Terraform ID.
    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 AntiSpywareSignatureDefaultActionArgs
    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

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    References []string
    Reference
    Severity string
    Severity
    Signature AntiSpywareSignatureSignatureArgs
    anti spyware signature
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Tfid string
    The Terraform ID.
    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 AntiSpywareSignatureDefaultAction
    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

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    references List<String>
    Reference
    severity String
    Severity
    signature AntiSpywareSignatureSignature
    anti spyware signature
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid String
    The Terraform ID.
    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 AntiSpywareSignatureDefaultAction
    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

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    references string[]
    Reference
    severity string
    Severity
    signature AntiSpywareSignatureSignature
    anti spyware signature
    snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid string
    The Terraform ID.
    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 AntiSpywareSignatureDefaultActionArgs
    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

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    references Sequence[str]
    Reference
    severity str
    Severity
    signature AntiSpywareSignatureSignatureArgs
    anti spyware signature
    snippet str

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid str
    The Terraform ID.
    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

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    references List<String>
    Reference
    severity String
    Severity
    signature Property Map
    anti spyware signature
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid String
    The Terraform ID.
    threatId String
    threat id range \n\n and \n\n
    threatname String
    Threatname
    vendors List<String>
    Vendor

    Supporting Types

    AntiSpywareSignatureDefaultAction, AntiSpywareSignatureDefaultActionArgs

    Alert AntiSpywareSignatureDefaultActionAlert
    Alert
    Allow AntiSpywareSignatureDefaultActionAllow

    Allow

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    BlockIp AntiSpywareSignatureDefaultActionBlockIp

    anti spyware signature block ip

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    Drop AntiSpywareSignatureDefaultActionDrop

    Drop

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    ResetBoth AntiSpywareSignatureDefaultActionResetBoth

    Reset both

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    ResetClient AntiSpywareSignatureDefaultActionResetClient

    Reset client

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    ResetServer AntiSpywareSignatureDefaultActionResetServer

    Reset server

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    Alert AntiSpywareSignatureDefaultActionAlert
    Alert
    Allow AntiSpywareSignatureDefaultActionAllow

    Allow

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    BlockIp AntiSpywareSignatureDefaultActionBlockIp

    anti spyware signature block ip

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    Drop AntiSpywareSignatureDefaultActionDrop

    Drop

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    ResetBoth AntiSpywareSignatureDefaultActionResetBoth

    Reset both

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    ResetClient AntiSpywareSignatureDefaultActionResetClient

    Reset client

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    ResetServer AntiSpywareSignatureDefaultActionResetServer

    Reset server

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    alert AntiSpywareSignatureDefaultActionAlert
    Alert
    allow AntiSpywareSignatureDefaultActionAllow

    Allow

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    blockIp AntiSpywareSignatureDefaultActionBlockIp

    anti spyware signature block ip

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    drop AntiSpywareSignatureDefaultActionDrop

    Drop

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    resetBoth AntiSpywareSignatureDefaultActionResetBoth

    Reset both

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    resetClient AntiSpywareSignatureDefaultActionResetClient

    Reset client

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    resetServer AntiSpywareSignatureDefaultActionResetServer

    Reset server

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    alert AntiSpywareSignatureDefaultActionAlert
    Alert
    allow AntiSpywareSignatureDefaultActionAllow

    Allow

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    blockIp AntiSpywareSignatureDefaultActionBlockIp

    anti spyware signature block ip

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    drop AntiSpywareSignatureDefaultActionDrop

    Drop

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    resetBoth AntiSpywareSignatureDefaultActionResetBoth

    Reset both

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    resetClient AntiSpywareSignatureDefaultActionResetClient

    Reset client

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    resetServer AntiSpywareSignatureDefaultActionResetServer

    Reset server

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    alert AntiSpywareSignatureDefaultActionAlert
    Alert
    allow AntiSpywareSignatureDefaultActionAllow

    Allow

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    block_ip AntiSpywareSignatureDefaultActionBlockIp

    anti spyware signature block ip

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    drop AntiSpywareSignatureDefaultActionDrop

    Drop

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    reset_both AntiSpywareSignatureDefaultActionResetBoth

    Reset both

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    reset_client AntiSpywareSignatureDefaultActionResetClient

    Reset client

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    reset_server AntiSpywareSignatureDefaultActionResetServer

    Reset server

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    alert Property Map
    Alert
    allow Property Map

    Allow

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    blockIp Property Map

    anti spyware signature block ip

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    drop Property Map

    Drop

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    resetBoth Property Map

    Reset both

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    resetClient Property Map

    Reset client

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    resetServer Property Map

    Reset server

    ℹ️ Note: You must specify exactly one of alert, allow, blockIp, drop, resetBoth, resetClient, and resetServer.

    AntiSpywareSignatureDefaultActionBlockIp, AntiSpywareSignatureDefaultActionBlockIpArgs

    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

    AntiSpywareSignatureSignature, AntiSpywareSignatureSignatureArgs

    Combination AntiSpywareSignatureSignatureCombination
    anti spyware signature combination
    Standards List<AntiSpywareSignatureSignatureStandard>

    Standard

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

    Combination AntiSpywareSignatureSignatureCombination
    anti spyware signature combination
    Standards []AntiSpywareSignatureSignatureStandard

    Standard

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

    combination AntiSpywareSignatureSignatureCombination
    anti spyware signature combination
    standards List<AntiSpywareSignatureSignatureStandard>

    Standard

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

    combination AntiSpywareSignatureSignatureCombination
    anti spyware signature combination
    standards AntiSpywareSignatureSignatureStandard[]

    Standard

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

    combination AntiSpywareSignatureSignatureCombination
    anti spyware signature combination
    standards Sequence[AntiSpywareSignatureSignatureStandard]

    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.

    AntiSpywareSignatureSignatureCombination, AntiSpywareSignatureSignatureCombinationArgs

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

    AntiSpywareSignatureSignatureCombinationAndCondition, AntiSpywareSignatureSignatureCombinationAndConditionArgs

    name String
    Name
    orConditions List<Property Map>
    Or condition

    AntiSpywareSignatureSignatureCombinationAndConditionOrCondition, AntiSpywareSignatureSignatureCombinationAndConditionOrConditionArgs

    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

    AntiSpywareSignatureSignatureCombinationTimeAttribute, AntiSpywareSignatureSignatureCombinationTimeAttributeArgs

    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

    AntiSpywareSignatureSignatureStandard, AntiSpywareSignatureSignatureStandardArgs

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

    AntiSpywareSignatureSignatureStandardAndCondition, AntiSpywareSignatureSignatureStandardAndConditionArgs

    name String
    Name
    orConditions List<Property Map>
    Or condition

    AntiSpywareSignatureSignatureStandardAndConditionOrCondition, AntiSpywareSignatureSignatureStandardAndConditionOrConditionArgs

    name String
    Name
    operator Property Map
    Operator

    AntiSpywareSignatureSignatureStandardAndConditionOrConditionOperator, AntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorArgs

    AntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorEqualTo, AntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorEqualToArgs

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

    AntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorEqualToQualifier, AntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorEqualToQualifierArgs

    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

    AntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorGreaterThan, AntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorGreaterThanArgs

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

    AntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorGreaterThanQualifier, AntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorGreaterThanQualifierArgs

    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

    AntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorLessThan, AntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorLessThanArgs

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

    AntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorLessThanQualifier, AntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorLessThanQualifierArgs

    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

    AntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorPatternMatch, AntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorPatternMatchArgs

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

    AntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorPatternMatchQualifier, AntiSpywareSignatureSignatureStandardAndConditionOrConditionOperatorPatternMatchQualifierArgs

    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

    Import

    The following command can be used to import a resource not managed by Terraform:

    $ pulumi import scm:index/antiSpywareSignature:AntiSpywareSignature example folder:::id
    

    or

    $ pulumi import scm:index/antiSpywareSignature:AntiSpywareSignature example :snippet::id
    

    or

    $ pulumi import scm:index/antiSpywareSignature:AntiSpywareSignature example ::device:id
    

    Note: Please provide just one of folder, snippet, or device for the import command.

    To learn more about importing existing cloud resources, see Importing resources.

    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.6
    published on Saturday, Apr 25, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.