1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. AntiSpywareProfile
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

    AntiSpywareProfile resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    // Basic Anti-Spyware Profile
    const scmAntiSpywareProfile1 = new scm.AntiSpywareProfile("scm_anti_spyware_profile_1", {
        folder: "All",
        name: "scm_anti_spyware_profile_1",
        description: "Managed by Pulumi",
        cloudInlineAnalysis: true,
    });
    // Required object that will be referenced in examples
    const scmAddress1 = new scm.Address("scm_address_1", {
        folder: "Shared",
        name: "scm_address_1",
        description: "Made by Pulumi",
        ipNetmask: "10.2.3.4",
    });
    // Anti-Spyware Profile with exception EDL
    const scmAntiSpywareProfile2 = new scm.AntiSpywareProfile("scm_anti_spyware_profile_2", {
        folder: "All",
        name: "scm_anti_spyware_profile_2",
        description: "Managed by Pulumi",
        cloudInlineAnalysis: true,
        inlineExceptionIpAddresses: ["scm_address_1"],
    }, {
        dependsOn: [scmAddress1],
    });
    // Anti-Spyware Profile with rules
    const scmAntiSpywareProfile3 = new scm.AntiSpywareProfile("scm_anti_spyware_profile_3", {
        folder: "All",
        name: "scm_anti_spyware_profile_3",
        description: "Managed by Pulumi",
        cloudInlineAnalysis: true,
        rules: [{
            name: "Custom Rule",
            notes: "Managed by Pulumi",
            packetCapture: "single-packet",
            category: "net-worm",
            severity: ["critical"],
            threatName: "data-theft",
        }],
    });
    
    import pulumi
    import pulumi_scm as scm
    
    # Basic Anti-Spyware Profile
    scm_anti_spyware_profile1 = scm.AntiSpywareProfile("scm_anti_spyware_profile_1",
        folder="All",
        name="scm_anti_spyware_profile_1",
        description="Managed by Pulumi",
        cloud_inline_analysis=True)
    # Required object that will be referenced in examples
    scm_address1 = scm.Address("scm_address_1",
        folder="Shared",
        name="scm_address_1",
        description="Made by Pulumi",
        ip_netmask="10.2.3.4")
    # Anti-Spyware Profile with exception EDL
    scm_anti_spyware_profile2 = scm.AntiSpywareProfile("scm_anti_spyware_profile_2",
        folder="All",
        name="scm_anti_spyware_profile_2",
        description="Managed by Pulumi",
        cloud_inline_analysis=True,
        inline_exception_ip_addresses=["scm_address_1"],
        opts = pulumi.ResourceOptions(depends_on=[scm_address1]))
    # Anti-Spyware Profile with rules
    scm_anti_spyware_profile3 = scm.AntiSpywareProfile("scm_anti_spyware_profile_3",
        folder="All",
        name="scm_anti_spyware_profile_3",
        description="Managed by Pulumi",
        cloud_inline_analysis=True,
        rules=[{
            "name": "Custom Rule",
            "notes": "Managed by Pulumi",
            "packet_capture": "single-packet",
            "category": "net-worm",
            "severity": ["critical"],
            "threat_name": "data-theft",
        }])
    
    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 {
    		// Basic Anti-Spyware Profile
    		_, err := scm.NewAntiSpywareProfile(ctx, "scm_anti_spyware_profile_1", &scm.AntiSpywareProfileArgs{
    			Folder:              pulumi.String("All"),
    			Name:                pulumi.String("scm_anti_spyware_profile_1"),
    			Description:         pulumi.String("Managed by Pulumi"),
    			CloudInlineAnalysis: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		// Required object that will be referenced in examples
    		scmAddress1, err := scm.NewAddress(ctx, "scm_address_1", &scm.AddressArgs{
    			Folder:      pulumi.String("Shared"),
    			Name:        pulumi.String("scm_address_1"),
    			Description: pulumi.String("Made by Pulumi"),
    			IpNetmask:   pulumi.String("10.2.3.4"),
    		})
    		if err != nil {
    			return err
    		}
    		// Anti-Spyware Profile with exception EDL
    		_, err = scm.NewAntiSpywareProfile(ctx, "scm_anti_spyware_profile_2", &scm.AntiSpywareProfileArgs{
    			Folder:              pulumi.String("All"),
    			Name:                pulumi.String("scm_anti_spyware_profile_2"),
    			Description:         pulumi.String("Managed by Pulumi"),
    			CloudInlineAnalysis: pulumi.Bool(true),
    			InlineExceptionIpAddresses: pulumi.StringArray{
    				pulumi.String("scm_address_1"),
    			},
    		}, pulumi.DependsOn([]pulumi.Resource{
    			scmAddress1,
    		}))
    		if err != nil {
    			return err
    		}
    		// Anti-Spyware Profile with rules
    		_, err = scm.NewAntiSpywareProfile(ctx, "scm_anti_spyware_profile_3", &scm.AntiSpywareProfileArgs{
    			Folder:              pulumi.String("All"),
    			Name:                pulumi.String("scm_anti_spyware_profile_3"),
    			Description:         pulumi.String("Managed by Pulumi"),
    			CloudInlineAnalysis: pulumi.Bool(true),
    			Rules: scm.AntiSpywareProfileRuleArray{
    				&scm.AntiSpywareProfileRuleArgs{
    					Name:          pulumi.String("Custom Rule"),
    					Notes:         "Managed by Pulumi",
    					PacketCapture: pulumi.String("single-packet"),
    					Category:      pulumi.String("net-worm"),
    					Severity: []string{
    						"critical",
    					},
    					ThreatName: pulumi.String("data-theft"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // Basic Anti-Spyware Profile
        var scmAntiSpywareProfile1 = new Scm.AntiSpywareProfile("scm_anti_spyware_profile_1", new()
        {
            Folder = "All",
            Name = "scm_anti_spyware_profile_1",
            Description = "Managed by Pulumi",
            CloudInlineAnalysis = true,
        });
    
        // Required object that will be referenced in examples
        var scmAddress1 = new Scm.Address("scm_address_1", new()
        {
            Folder = "Shared",
            Name = "scm_address_1",
            Description = "Made by Pulumi",
            IpNetmask = "10.2.3.4",
        });
    
        // Anti-Spyware Profile with exception EDL
        var scmAntiSpywareProfile2 = new Scm.AntiSpywareProfile("scm_anti_spyware_profile_2", new()
        {
            Folder = "All",
            Name = "scm_anti_spyware_profile_2",
            Description = "Managed by Pulumi",
            CloudInlineAnalysis = true,
            InlineExceptionIpAddresses = new[]
            {
                "scm_address_1",
            },
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                scmAddress1,
            },
        });
    
        // Anti-Spyware Profile with rules
        var scmAntiSpywareProfile3 = new Scm.AntiSpywareProfile("scm_anti_spyware_profile_3", new()
        {
            Folder = "All",
            Name = "scm_anti_spyware_profile_3",
            Description = "Managed by Pulumi",
            CloudInlineAnalysis = true,
            Rules = new[]
            {
                new Scm.Inputs.AntiSpywareProfileRuleArgs
                {
                    Name = "Custom Rule",
                    Notes = "Managed by Pulumi",
                    PacketCapture = "single-packet",
                    Category = "net-worm",
                    Severity = new[]
                    {
                        "critical",
                    },
                    ThreatName = "data-theft",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.AntiSpywareProfile;
    import com.pulumi.scm.AntiSpywareProfileArgs;
    import com.pulumi.scm.Address;
    import com.pulumi.scm.AddressArgs;
    import com.pulumi.scm.inputs.AntiSpywareProfileRuleArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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) {
            // Basic Anti-Spyware Profile
            var scmAntiSpywareProfile1 = new AntiSpywareProfile("scmAntiSpywareProfile1", AntiSpywareProfileArgs.builder()
                .folder("All")
                .name("scm_anti_spyware_profile_1")
                .description("Managed by Pulumi")
                .cloudInlineAnalysis(true)
                .build());
    
            // Required object that will be referenced in examples
            var scmAddress1 = new Address("scmAddress1", AddressArgs.builder()
                .folder("Shared")
                .name("scm_address_1")
                .description("Made by Pulumi")
                .ipNetmask("10.2.3.4")
                .build());
    
            // Anti-Spyware Profile with exception EDL
            var scmAntiSpywareProfile2 = new AntiSpywareProfile("scmAntiSpywareProfile2", AntiSpywareProfileArgs.builder()
                .folder("All")
                .name("scm_anti_spyware_profile_2")
                .description("Managed by Pulumi")
                .cloudInlineAnalysis(true)
                .inlineExceptionIpAddresses("scm_address_1")
                .build(), CustomResourceOptions.builder()
                    .dependsOn(scmAddress1)
                    .build());
    
            // Anti-Spyware Profile with rules
            var scmAntiSpywareProfile3 = new AntiSpywareProfile("scmAntiSpywareProfile3", AntiSpywareProfileArgs.builder()
                .folder("All")
                .name("scm_anti_spyware_profile_3")
                .description("Managed by Pulumi")
                .cloudInlineAnalysis(true)
                .rules(AntiSpywareProfileRuleArgs.builder()
                    .name("Custom Rule")
                    .notes("Managed by Pulumi")
                    .packetCapture("single-packet")
                    .category("net-worm")
                    .severity(List.of("critical"))
                    .threatName("data-theft")
                    .build())
                .build());
    
        }
    }
    
    resources:
      # Basic Anti-Spyware Profile
      scmAntiSpywareProfile1:
        type: scm:AntiSpywareProfile
        name: scm_anti_spyware_profile_1
        properties:
          folder: All
          name: scm_anti_spyware_profile_1
          description: Managed by Pulumi
          cloudInlineAnalysis: true
      # Required object that will be referenced in examples
      scmAddress1:
        type: scm:Address
        name: scm_address_1
        properties:
          folder: Shared
          name: scm_address_1
          description: Made by Pulumi
          ipNetmask: 10.2.3.4
      # Anti-Spyware Profile with exception EDL
      scmAntiSpywareProfile2:
        type: scm:AntiSpywareProfile
        name: scm_anti_spyware_profile_2
        properties:
          folder: All
          name: scm_anti_spyware_profile_2
          description: Managed by Pulumi
          cloudInlineAnalysis: true
          inlineExceptionIpAddresses:
            - scm_address_1
        options:
          dependsOn:
            - ${scmAddress1}
      # Anti-Spyware Profile with rules
      scmAntiSpywareProfile3:
        type: scm:AntiSpywareProfile
        name: scm_anti_spyware_profile_3
        properties:
          folder: All
          name: scm_anti_spyware_profile_3
          description: Managed by Pulumi
          cloudInlineAnalysis: true
          rules:
            - name: Custom Rule
              notes: Managed by Pulumi
              packetCapture: single-packet
              category: net-worm
              severity:
                - critical
              threatName: data-theft
    

    Create AntiSpywareProfile Resource

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

    Constructor syntax

    new AntiSpywareProfile(name: string, args?: AntiSpywareProfileArgs, opts?: CustomResourceOptions);
    @overload
    def AntiSpywareProfile(resource_name: str,
                           args: Optional[AntiSpywareProfileArgs] = None,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def AntiSpywareProfile(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           cloud_inline_analysis: Optional[bool] = None,
                           description: Optional[str] = None,
                           device: Optional[str] = None,
                           folder: Optional[str] = None,
                           inline_exception_edl_urls: Optional[Sequence[str]] = None,
                           inline_exception_ip_addresses: Optional[Sequence[str]] = None,
                           mica_engine_spyware_enableds: Optional[Sequence[AntiSpywareProfileMicaEngineSpywareEnabledArgs]] = None,
                           name: Optional[str] = None,
                           rules: Optional[Sequence[AntiSpywareProfileRuleArgs]] = None,
                           snippet: Optional[str] = None,
                           threat_exceptions: Optional[Sequence[AntiSpywareProfileThreatExceptionArgs]] = None)
    func NewAntiSpywareProfile(ctx *Context, name string, args *AntiSpywareProfileArgs, opts ...ResourceOption) (*AntiSpywareProfile, error)
    public AntiSpywareProfile(string name, AntiSpywareProfileArgs? args = null, CustomResourceOptions? opts = null)
    public AntiSpywareProfile(String name, AntiSpywareProfileArgs args)
    public AntiSpywareProfile(String name, AntiSpywareProfileArgs args, CustomResourceOptions options)
    
    type: scm:AntiSpywareProfile
    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 AntiSpywareProfileArgs
    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 AntiSpywareProfileArgs
    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 AntiSpywareProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AntiSpywareProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AntiSpywareProfileArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var antiSpywareProfileResource = new Scm.AntiSpywareProfile("antiSpywareProfileResource", new()
    {
        CloudInlineAnalysis = false,
        Description = "string",
        Device = "string",
        Folder = "string",
        InlineExceptionEdlUrls = new[]
        {
            "string",
        },
        InlineExceptionIpAddresses = new[]
        {
            "string",
        },
        MicaEngineSpywareEnableds = new[]
        {
            new Scm.Inputs.AntiSpywareProfileMicaEngineSpywareEnabledArgs
            {
                InlinePolicyAction = "string",
                Name = "string",
            },
        },
        Name = "string",
        Rules = new[]
        {
            new Scm.Inputs.AntiSpywareProfileRuleArgs
            {
                Action = new Scm.Inputs.AntiSpywareProfileRuleActionArgs
                {
                    Alert = null,
                    Allow = null,
                    BlockIp = new Scm.Inputs.AntiSpywareProfileRuleActionBlockIpArgs
                    {
                        Duration = 0,
                        TrackBy = "string",
                    },
                    Drop = null,
                    ResetBoth = null,
                    ResetClient = null,
                    ResetServer = null,
                },
                Category = "string",
                Name = "string",
                PacketCapture = "string",
                Severities = new[]
                {
                    "string",
                },
                ThreatName = "string",
            },
        },
        Snippet = "string",
        ThreatExceptions = new[]
        {
            new Scm.Inputs.AntiSpywareProfileThreatExceptionArgs
            {
                Action = new Scm.Inputs.AntiSpywareProfileThreatExceptionActionArgs
                {
                    Alert = null,
                    Allow = null,
                    BlockIp = new Scm.Inputs.AntiSpywareProfileThreatExceptionActionBlockIpArgs
                    {
                        Duration = 0,
                        TrackBy = "string",
                    },
                    Default = null,
                    Drop = null,
                    ResetBoth = null,
                    ResetClient = null,
                    ResetServer = null,
                },
                ExemptIps = new[]
                {
                    new Scm.Inputs.AntiSpywareProfileThreatExceptionExemptIpArgs
                    {
                        Name = "string",
                    },
                },
                Name = "string",
                Notes = "string",
                PacketCapture = "string",
            },
        },
    });
    
    example, err := scm.NewAntiSpywareProfile(ctx, "antiSpywareProfileResource", &scm.AntiSpywareProfileArgs{
    	CloudInlineAnalysis: pulumi.Bool(false),
    	Description:         pulumi.String("string"),
    	Device:              pulumi.String("string"),
    	Folder:              pulumi.String("string"),
    	InlineExceptionEdlUrls: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	InlineExceptionIpAddresses: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	MicaEngineSpywareEnableds: scm.AntiSpywareProfileMicaEngineSpywareEnabledArray{
    		&scm.AntiSpywareProfileMicaEngineSpywareEnabledArgs{
    			InlinePolicyAction: pulumi.String("string"),
    			Name:               pulumi.String("string"),
    		},
    	},
    	Name: pulumi.String("string"),
    	Rules: scm.AntiSpywareProfileRuleArray{
    		&scm.AntiSpywareProfileRuleArgs{
    			Action: &scm.AntiSpywareProfileRuleActionArgs{
    				Alert: &scm.AntiSpywareProfileRuleActionAlertArgs{},
    				Allow: &scm.AntiSpywareProfileRuleActionAllowArgs{},
    				BlockIp: &scm.AntiSpywareProfileRuleActionBlockIpArgs{
    					Duration: pulumi.Int(0),
    					TrackBy:  pulumi.String("string"),
    				},
    				Drop:        &scm.AntiSpywareProfileRuleActionDropArgs{},
    				ResetBoth:   &scm.AntiSpywareProfileRuleActionResetBothArgs{},
    				ResetClient: &scm.AntiSpywareProfileRuleActionResetClientArgs{},
    				ResetServer: &scm.AntiSpywareProfileRuleActionResetServerArgs{},
    			},
    			Category:      pulumi.String("string"),
    			Name:          pulumi.String("string"),
    			PacketCapture: pulumi.String("string"),
    			Severities: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			ThreatName: pulumi.String("string"),
    		},
    	},
    	Snippet: pulumi.String("string"),
    	ThreatExceptions: scm.AntiSpywareProfileThreatExceptionArray{
    		&scm.AntiSpywareProfileThreatExceptionArgs{
    			Action: &scm.AntiSpywareProfileThreatExceptionActionArgs{
    				Alert: &scm.AntiSpywareProfileThreatExceptionActionAlertArgs{},
    				Allow: &scm.AntiSpywareProfileThreatExceptionActionAllowArgs{},
    				BlockIp: &scm.AntiSpywareProfileThreatExceptionActionBlockIpArgs{
    					Duration: pulumi.Int(0),
    					TrackBy:  pulumi.String("string"),
    				},
    				Default:     &scm.AntiSpywareProfileThreatExceptionActionDefaultArgs{},
    				Drop:        &scm.AntiSpywareProfileThreatExceptionActionDropArgs{},
    				ResetBoth:   &scm.AntiSpywareProfileThreatExceptionActionResetBothArgs{},
    				ResetClient: &scm.AntiSpywareProfileThreatExceptionActionResetClientArgs{},
    				ResetServer: &scm.AntiSpywareProfileThreatExceptionActionResetServerArgs{},
    			},
    			ExemptIps: scm.AntiSpywareProfileThreatExceptionExemptIpArray{
    				&scm.AntiSpywareProfileThreatExceptionExemptIpArgs{
    					Name: pulumi.String("string"),
    				},
    			},
    			Name:          pulumi.String("string"),
    			Notes:         pulumi.String("string"),
    			PacketCapture: pulumi.String("string"),
    		},
    	},
    })
    
    var antiSpywareProfileResource = new AntiSpywareProfile("antiSpywareProfileResource", AntiSpywareProfileArgs.builder()
        .cloudInlineAnalysis(false)
        .description("string")
        .device("string")
        .folder("string")
        .inlineExceptionEdlUrls("string")
        .inlineExceptionIpAddresses("string")
        .micaEngineSpywareEnableds(AntiSpywareProfileMicaEngineSpywareEnabledArgs.builder()
            .inlinePolicyAction("string")
            .name("string")
            .build())
        .name("string")
        .rules(AntiSpywareProfileRuleArgs.builder()
            .action(AntiSpywareProfileRuleActionArgs.builder()
                .alert(AntiSpywareProfileRuleActionAlertArgs.builder()
                    .build())
                .allow(AntiSpywareProfileRuleActionAllowArgs.builder()
                    .build())
                .blockIp(AntiSpywareProfileRuleActionBlockIpArgs.builder()
                    .duration(0)
                    .trackBy("string")
                    .build())
                .drop(AntiSpywareProfileRuleActionDropArgs.builder()
                    .build())
                .resetBoth(AntiSpywareProfileRuleActionResetBothArgs.builder()
                    .build())
                .resetClient(AntiSpywareProfileRuleActionResetClientArgs.builder()
                    .build())
                .resetServer(AntiSpywareProfileRuleActionResetServerArgs.builder()
                    .build())
                .build())
            .category("string")
            .name("string")
            .packetCapture("string")
            .severities("string")
            .threatName("string")
            .build())
        .snippet("string")
        .threatExceptions(AntiSpywareProfileThreatExceptionArgs.builder()
            .action(AntiSpywareProfileThreatExceptionActionArgs.builder()
                .alert(AntiSpywareProfileThreatExceptionActionAlertArgs.builder()
                    .build())
                .allow(AntiSpywareProfileThreatExceptionActionAllowArgs.builder()
                    .build())
                .blockIp(AntiSpywareProfileThreatExceptionActionBlockIpArgs.builder()
                    .duration(0)
                    .trackBy("string")
                    .build())
                .default_(AntiSpywareProfileThreatExceptionActionDefaultArgs.builder()
                    .build())
                .drop(AntiSpywareProfileThreatExceptionActionDropArgs.builder()
                    .build())
                .resetBoth(AntiSpywareProfileThreatExceptionActionResetBothArgs.builder()
                    .build())
                .resetClient(AntiSpywareProfileThreatExceptionActionResetClientArgs.builder()
                    .build())
                .resetServer(AntiSpywareProfileThreatExceptionActionResetServerArgs.builder()
                    .build())
                .build())
            .exemptIps(AntiSpywareProfileThreatExceptionExemptIpArgs.builder()
                .name("string")
                .build())
            .name("string")
            .notes("string")
            .packetCapture("string")
            .build())
        .build());
    
    anti_spyware_profile_resource = scm.AntiSpywareProfile("antiSpywareProfileResource",
        cloud_inline_analysis=False,
        description="string",
        device="string",
        folder="string",
        inline_exception_edl_urls=["string"],
        inline_exception_ip_addresses=["string"],
        mica_engine_spyware_enableds=[{
            "inline_policy_action": "string",
            "name": "string",
        }],
        name="string",
        rules=[{
            "action": {
                "alert": {},
                "allow": {},
                "block_ip": {
                    "duration": 0,
                    "track_by": "string",
                },
                "drop": {},
                "reset_both": {},
                "reset_client": {},
                "reset_server": {},
            },
            "category": "string",
            "name": "string",
            "packet_capture": "string",
            "severities": ["string"],
            "threat_name": "string",
        }],
        snippet="string",
        threat_exceptions=[{
            "action": {
                "alert": {},
                "allow": {},
                "block_ip": {
                    "duration": 0,
                    "track_by": "string",
                },
                "default": {},
                "drop": {},
                "reset_both": {},
                "reset_client": {},
                "reset_server": {},
            },
            "exempt_ips": [{
                "name": "string",
            }],
            "name": "string",
            "notes": "string",
            "packet_capture": "string",
        }])
    
    const antiSpywareProfileResource = new scm.AntiSpywareProfile("antiSpywareProfileResource", {
        cloudInlineAnalysis: false,
        description: "string",
        device: "string",
        folder: "string",
        inlineExceptionEdlUrls: ["string"],
        inlineExceptionIpAddresses: ["string"],
        micaEngineSpywareEnableds: [{
            inlinePolicyAction: "string",
            name: "string",
        }],
        name: "string",
        rules: [{
            action: {
                alert: {},
                allow: {},
                blockIp: {
                    duration: 0,
                    trackBy: "string",
                },
                drop: {},
                resetBoth: {},
                resetClient: {},
                resetServer: {},
            },
            category: "string",
            name: "string",
            packetCapture: "string",
            severities: ["string"],
            threatName: "string",
        }],
        snippet: "string",
        threatExceptions: [{
            action: {
                alert: {},
                allow: {},
                blockIp: {
                    duration: 0,
                    trackBy: "string",
                },
                "default": {},
                drop: {},
                resetBoth: {},
                resetClient: {},
                resetServer: {},
            },
            exemptIps: [{
                name: "string",
            }],
            name: "string",
            notes: "string",
            packetCapture: "string",
        }],
    });
    
    type: scm:AntiSpywareProfile
    properties:
        cloudInlineAnalysis: false
        description: string
        device: string
        folder: string
        inlineExceptionEdlUrls:
            - string
        inlineExceptionIpAddresses:
            - string
        micaEngineSpywareEnableds:
            - inlinePolicyAction: string
              name: string
        name: string
        rules:
            - action:
                alert: {}
                allow: {}
                blockIp:
                    duration: 0
                    trackBy: string
                drop: {}
                resetBoth: {}
                resetClient: {}
                resetServer: {}
              category: string
              name: string
              packetCapture: string
              severities:
                - string
              threatName: string
        snippet: string
        threatExceptions:
            - action:
                alert: {}
                allow: {}
                blockIp:
                    duration: 0
                    trackBy: string
                default: {}
                drop: {}
                resetBoth: {}
                resetClient: {}
                resetServer: {}
              exemptIps:
                - name: string
              name: string
              notes: string
              packetCapture: string
    

    AntiSpywareProfile 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 AntiSpywareProfile resource accepts the following input properties:

    CloudInlineAnalysis bool
    Cloud inline analysis
    Description string
    Description
    Device string
    The device in which the resource is defined
    Folder string

    The folder in which the resource is defined

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

    InlineExceptionEdlUrls List<string>
    Inline exception edl url
    InlineExceptionIpAddresses List<string>
    Inline exception ip address
    MicaEngineSpywareEnableds List<AntiSpywareProfileMicaEngineSpywareEnabled>
    Mica engine spyware enabled
    Name string
    The name of the anti-spyware profile
    Rules List<AntiSpywareProfileRule>
    Rules
    Snippet string

    The snippet in which the resource is defined

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

    ThreatExceptions List<AntiSpywareProfileThreatException>
    Threat exception
    CloudInlineAnalysis bool
    Cloud inline analysis
    Description string
    Description
    Device string
    The device in which the resource is defined
    Folder string

    The folder in which the resource is defined

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

    InlineExceptionEdlUrls []string
    Inline exception edl url
    InlineExceptionIpAddresses []string
    Inline exception ip address
    MicaEngineSpywareEnableds []AntiSpywareProfileMicaEngineSpywareEnabledArgs
    Mica engine spyware enabled
    Name string
    The name of the anti-spyware profile
    Rules []AntiSpywareProfileRuleArgs
    Rules
    Snippet string

    The snippet in which the resource is defined

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

    ThreatExceptions []AntiSpywareProfileThreatExceptionArgs
    Threat exception
    cloudInlineAnalysis Boolean
    Cloud inline analysis
    description String
    Description
    device String
    The device in which the resource is defined
    folder String

    The folder in which the resource is defined

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

    inlineExceptionEdlUrls List<String>
    Inline exception edl url
    inlineExceptionIpAddresses List<String>
    Inline exception ip address
    micaEngineSpywareEnableds List<AntiSpywareProfileMicaEngineSpywareEnabled>
    Mica engine spyware enabled
    name String
    The name of the anti-spyware profile
    rules List<AntiSpywareProfileRule>
    Rules
    snippet String

    The snippet in which the resource is defined

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

    threatExceptions List<AntiSpywareProfileThreatException>
    Threat exception
    cloudInlineAnalysis boolean
    Cloud inline analysis
    description string
    Description
    device string
    The device in which the resource is defined
    folder string

    The folder in which the resource is defined

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

    inlineExceptionEdlUrls string[]
    Inline exception edl url
    inlineExceptionIpAddresses string[]
    Inline exception ip address
    micaEngineSpywareEnableds AntiSpywareProfileMicaEngineSpywareEnabled[]
    Mica engine spyware enabled
    name string
    The name of the anti-spyware profile
    rules AntiSpywareProfileRule[]
    Rules
    snippet string

    The snippet in which the resource is defined

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

    threatExceptions AntiSpywareProfileThreatException[]
    Threat exception
    cloud_inline_analysis bool
    Cloud inline analysis
    description str
    Description
    device str
    The device in which the resource is defined
    folder str

    The folder in which the resource is defined

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

    inline_exception_edl_urls Sequence[str]
    Inline exception edl url
    inline_exception_ip_addresses Sequence[str]
    Inline exception ip address
    mica_engine_spyware_enableds Sequence[AntiSpywareProfileMicaEngineSpywareEnabledArgs]
    Mica engine spyware enabled
    name str
    The name of the anti-spyware profile
    rules Sequence[AntiSpywareProfileRuleArgs]
    Rules
    snippet str

    The snippet in which the resource is defined

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

    threat_exceptions Sequence[AntiSpywareProfileThreatExceptionArgs]
    Threat exception
    cloudInlineAnalysis Boolean
    Cloud inline analysis
    description String
    Description
    device String
    The device in which the resource is defined
    folder String

    The folder in which the resource is defined

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

    inlineExceptionEdlUrls List<String>
    Inline exception edl url
    inlineExceptionIpAddresses List<String>
    Inline exception ip address
    micaEngineSpywareEnableds List<Property Map>
    Mica engine spyware enabled
    name String
    The name of the anti-spyware profile
    rules List<Property Map>
    Rules
    snippet String

    The snippet in which the resource is defined

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

    threatExceptions List<Property Map>
    Threat exception

    Outputs

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

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

    Look up Existing AntiSpywareProfile Resource

    Get an existing AntiSpywareProfile 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?: AntiSpywareProfileState, opts?: CustomResourceOptions): AntiSpywareProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cloud_inline_analysis: Optional[bool] = None,
            description: Optional[str] = None,
            device: Optional[str] = None,
            folder: Optional[str] = None,
            inline_exception_edl_urls: Optional[Sequence[str]] = None,
            inline_exception_ip_addresses: Optional[Sequence[str]] = None,
            mica_engine_spyware_enableds: Optional[Sequence[AntiSpywareProfileMicaEngineSpywareEnabledArgs]] = None,
            name: Optional[str] = None,
            rules: Optional[Sequence[AntiSpywareProfileRuleArgs]] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None,
            threat_exceptions: Optional[Sequence[AntiSpywareProfileThreatExceptionArgs]] = None) -> AntiSpywareProfile
    func GetAntiSpywareProfile(ctx *Context, name string, id IDInput, state *AntiSpywareProfileState, opts ...ResourceOption) (*AntiSpywareProfile, error)
    public static AntiSpywareProfile Get(string name, Input<string> id, AntiSpywareProfileState? state, CustomResourceOptions? opts = null)
    public static AntiSpywareProfile get(String name, Output<String> id, AntiSpywareProfileState state, CustomResourceOptions options)
    resources:  _:    type: scm:AntiSpywareProfile    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:
    CloudInlineAnalysis bool
    Cloud inline analysis
    Description string
    Description
    Device string
    The device in which the resource is defined
    Folder string

    The folder in which the resource is defined

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

    InlineExceptionEdlUrls List<string>
    Inline exception edl url
    InlineExceptionIpAddresses List<string>
    Inline exception ip address
    MicaEngineSpywareEnableds List<AntiSpywareProfileMicaEngineSpywareEnabled>
    Mica engine spyware enabled
    Name string
    The name of the anti-spyware profile
    Rules List<AntiSpywareProfileRule>
    Rules
    Snippet string

    The snippet in which the resource is defined

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

    Tfid string
    ThreatExceptions List<AntiSpywareProfileThreatException>
    Threat exception
    CloudInlineAnalysis bool
    Cloud inline analysis
    Description string
    Description
    Device string
    The device in which the resource is defined
    Folder string

    The folder in which the resource is defined

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

    InlineExceptionEdlUrls []string
    Inline exception edl url
    InlineExceptionIpAddresses []string
    Inline exception ip address
    MicaEngineSpywareEnableds []AntiSpywareProfileMicaEngineSpywareEnabledArgs
    Mica engine spyware enabled
    Name string
    The name of the anti-spyware profile
    Rules []AntiSpywareProfileRuleArgs
    Rules
    Snippet string

    The snippet in which the resource is defined

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

    Tfid string
    ThreatExceptions []AntiSpywareProfileThreatExceptionArgs
    Threat exception
    cloudInlineAnalysis Boolean
    Cloud inline analysis
    description String
    Description
    device String
    The device in which the resource is defined
    folder String

    The folder in which the resource is defined

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

    inlineExceptionEdlUrls List<String>
    Inline exception edl url
    inlineExceptionIpAddresses List<String>
    Inline exception ip address
    micaEngineSpywareEnableds List<AntiSpywareProfileMicaEngineSpywareEnabled>
    Mica engine spyware enabled
    name String
    The name of the anti-spyware profile
    rules List<AntiSpywareProfileRule>
    Rules
    snippet String

    The snippet in which the resource is defined

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

    tfid String
    threatExceptions List<AntiSpywareProfileThreatException>
    Threat exception
    cloudInlineAnalysis boolean
    Cloud inline analysis
    description string
    Description
    device string
    The device in which the resource is defined
    folder string

    The folder in which the resource is defined

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

    inlineExceptionEdlUrls string[]
    Inline exception edl url
    inlineExceptionIpAddresses string[]
    Inline exception ip address
    micaEngineSpywareEnableds AntiSpywareProfileMicaEngineSpywareEnabled[]
    Mica engine spyware enabled
    name string
    The name of the anti-spyware profile
    rules AntiSpywareProfileRule[]
    Rules
    snippet string

    The snippet in which the resource is defined

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

    tfid string
    threatExceptions AntiSpywareProfileThreatException[]
    Threat exception
    cloud_inline_analysis bool
    Cloud inline analysis
    description str
    Description
    device str
    The device in which the resource is defined
    folder str

    The folder in which the resource is defined

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

    inline_exception_edl_urls Sequence[str]
    Inline exception edl url
    inline_exception_ip_addresses Sequence[str]
    Inline exception ip address
    mica_engine_spyware_enableds Sequence[AntiSpywareProfileMicaEngineSpywareEnabledArgs]
    Mica engine spyware enabled
    name str
    The name of the anti-spyware profile
    rules Sequence[AntiSpywareProfileRuleArgs]
    Rules
    snippet str

    The snippet in which the resource is defined

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

    tfid str
    threat_exceptions Sequence[AntiSpywareProfileThreatExceptionArgs]
    Threat exception
    cloudInlineAnalysis Boolean
    Cloud inline analysis
    description String
    Description
    device String
    The device in which the resource is defined
    folder String

    The folder in which the resource is defined

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

    inlineExceptionEdlUrls List<String>
    Inline exception edl url
    inlineExceptionIpAddresses List<String>
    Inline exception ip address
    micaEngineSpywareEnableds List<Property Map>
    Mica engine spyware enabled
    name String
    The name of the anti-spyware profile
    rules List<Property Map>
    Rules
    snippet String

    The snippet in which the resource is defined

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

    tfid String
    threatExceptions List<Property Map>
    Threat exception

    Supporting Types

    AntiSpywareProfileMicaEngineSpywareEnabled, AntiSpywareProfileMicaEngineSpywareEnabledArgs

    InlinePolicyAction string
    Inline policy action
    Name string
    Name
    InlinePolicyAction string
    Inline policy action
    Name string
    Name
    inlinePolicyAction String
    Inline policy action
    name String
    Name
    inlinePolicyAction string
    Inline policy action
    name string
    Name
    inline_policy_action str
    Inline policy action
    name str
    Name
    inlinePolicyAction String
    Inline policy action
    name String
    Name

    AntiSpywareProfileRule, AntiSpywareProfileRuleArgs

    Action AntiSpywareProfileRuleAction
    anti spyware profiles rules default action
    Category string
    Category
    Name string
    Name
    PacketCapture string
    Packet capture
    Severities List<string>
    Severity
    ThreatName string
    Threat name
    Action AntiSpywareProfileRuleAction
    anti spyware profiles rules default action
    Category string
    Category
    Name string
    Name
    PacketCapture string
    Packet capture
    Severities []string
    Severity
    ThreatName string
    Threat name
    action AntiSpywareProfileRuleAction
    anti spyware profiles rules default action
    category String
    Category
    name String
    Name
    packetCapture String
    Packet capture
    severities List<String>
    Severity
    threatName String
    Threat name
    action AntiSpywareProfileRuleAction
    anti spyware profiles rules default action
    category string
    Category
    name string
    Name
    packetCapture string
    Packet capture
    severities string[]
    Severity
    threatName string
    Threat name
    action AntiSpywareProfileRuleAction
    anti spyware profiles rules default action
    category str
    Category
    name str
    Name
    packet_capture str
    Packet capture
    severities Sequence[str]
    Severity
    threat_name str
    Threat name
    action Property Map
    anti spyware profiles rules default action
    category String
    Category
    name String
    Name
    packetCapture String
    Packet capture
    severities List<String>
    Severity
    threatName String
    Threat name

    AntiSpywareProfileRuleAction, AntiSpywareProfileRuleActionArgs

    Alert AntiSpywareProfileRuleActionAlert
    Alert
    Allow AntiSpywareProfileRuleActionAllow

    Allow

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

    BlockIp AntiSpywareProfileRuleActionBlockIp

    anti spyware profiles rules action block ip

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

    Drop AntiSpywareProfileRuleActionDrop

    Drop

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

    ResetBoth AntiSpywareProfileRuleActionResetBoth

    Reset both

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

    ResetClient AntiSpywareProfileRuleActionResetClient

    Reset client

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

    ResetServer AntiSpywareProfileRuleActionResetServer

    Reset server

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

    Alert AntiSpywareProfileRuleActionAlert
    Alert
    Allow AntiSpywareProfileRuleActionAllow

    Allow

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

    BlockIp AntiSpywareProfileRuleActionBlockIp

    anti spyware profiles rules action block ip

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

    Drop AntiSpywareProfileRuleActionDrop

    Drop

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

    ResetBoth AntiSpywareProfileRuleActionResetBoth

    Reset both

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

    ResetClient AntiSpywareProfileRuleActionResetClient

    Reset client

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

    ResetServer AntiSpywareProfileRuleActionResetServer

    Reset server

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

    alert AntiSpywareProfileRuleActionAlert
    Alert
    allow AntiSpywareProfileRuleActionAllow

    Allow

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

    blockIp AntiSpywareProfileRuleActionBlockIp

    anti spyware profiles rules action block ip

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

    drop AntiSpywareProfileRuleActionDrop

    Drop

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

    resetBoth AntiSpywareProfileRuleActionResetBoth

    Reset both

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

    resetClient AntiSpywareProfileRuleActionResetClient

    Reset client

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

    resetServer AntiSpywareProfileRuleActionResetServer

    Reset server

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

    alert AntiSpywareProfileRuleActionAlert
    Alert
    allow AntiSpywareProfileRuleActionAllow

    Allow

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

    blockIp AntiSpywareProfileRuleActionBlockIp

    anti spyware profiles rules action block ip

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

    drop AntiSpywareProfileRuleActionDrop

    Drop

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

    resetBoth AntiSpywareProfileRuleActionResetBoth

    Reset both

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

    resetClient AntiSpywareProfileRuleActionResetClient

    Reset client

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

    resetServer AntiSpywareProfileRuleActionResetServer

    Reset server

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

    alert AntiSpywareProfileRuleActionAlert
    Alert
    allow AntiSpywareProfileRuleActionAllow

    Allow

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

    block_ip AntiSpywareProfileRuleActionBlockIp

    anti spyware profiles rules action block ip

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

    drop AntiSpywareProfileRuleActionDrop

    Drop

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

    reset_both AntiSpywareProfileRuleActionResetBoth

    Reset both

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

    reset_client AntiSpywareProfileRuleActionResetClient

    Reset client

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

    reset_server AntiSpywareProfileRuleActionResetServer

    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 profiles rules action 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.

    AntiSpywareProfileRuleActionBlockIp, AntiSpywareProfileRuleActionBlockIpArgs

    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

    AntiSpywareProfileThreatException, AntiSpywareProfileThreatExceptionArgs

    Action AntiSpywareProfileThreatExceptionAction
    anti spyware profiles threat exception default action
    ExemptIps List<AntiSpywareProfileThreatExceptionExemptIp>
    Exempt ip
    Name string
    Name
    Notes string
    Notes
    PacketCapture string
    Packet capture
    Action AntiSpywareProfileThreatExceptionAction
    anti spyware profiles threat exception default action
    ExemptIps []AntiSpywareProfileThreatExceptionExemptIp
    Exempt ip
    Name string
    Name
    Notes string
    Notes
    PacketCapture string
    Packet capture
    action AntiSpywareProfileThreatExceptionAction
    anti spyware profiles threat exception default action
    exemptIps List<AntiSpywareProfileThreatExceptionExemptIp>
    Exempt ip
    name String
    Name
    notes String
    Notes
    packetCapture String
    Packet capture
    action AntiSpywareProfileThreatExceptionAction
    anti spyware profiles threat exception default action
    exemptIps AntiSpywareProfileThreatExceptionExemptIp[]
    Exempt ip
    name string
    Name
    notes string
    Notes
    packetCapture string
    Packet capture
    action AntiSpywareProfileThreatExceptionAction
    anti spyware profiles threat exception default action
    exempt_ips Sequence[AntiSpywareProfileThreatExceptionExemptIp]
    Exempt ip
    name str
    Name
    notes str
    Notes
    packet_capture str
    Packet capture
    action Property Map
    anti spyware profiles threat exception default action
    exemptIps List<Property Map>
    Exempt ip
    name String
    Name
    notes String
    Notes
    packetCapture String
    Packet capture

    AntiSpywareProfileThreatExceptionAction, AntiSpywareProfileThreatExceptionActionArgs

    Alert AntiSpywareProfileThreatExceptionActionAlert
    Alert
    Allow AntiSpywareProfileThreatExceptionActionAllow

    Allow

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

    BlockIp AntiSpywareProfileThreatExceptionActionBlockIp

    anti spyware profiles threat exception action block ip

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

    Default AntiSpywareProfileThreatExceptionActionDefault

    Default

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

    Drop AntiSpywareProfileThreatExceptionActionDrop

    Drop

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

    ResetBoth AntiSpywareProfileThreatExceptionActionResetBoth

    Reset both

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

    ResetClient AntiSpywareProfileThreatExceptionActionResetClient

    Reset client

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

    ResetServer AntiSpywareProfileThreatExceptionActionResetServer

    Reset server

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

    Alert AntiSpywareProfileThreatExceptionActionAlert
    Alert
    Allow AntiSpywareProfileThreatExceptionActionAllow

    Allow

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

    BlockIp AntiSpywareProfileThreatExceptionActionBlockIp

    anti spyware profiles threat exception action block ip

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

    Default AntiSpywareProfileThreatExceptionActionDefault

    Default

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

    Drop AntiSpywareProfileThreatExceptionActionDrop

    Drop

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

    ResetBoth AntiSpywareProfileThreatExceptionActionResetBoth

    Reset both

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

    ResetClient AntiSpywareProfileThreatExceptionActionResetClient

    Reset client

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

    ResetServer AntiSpywareProfileThreatExceptionActionResetServer

    Reset server

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

    alert AntiSpywareProfileThreatExceptionActionAlert
    Alert
    allow AntiSpywareProfileThreatExceptionActionAllow

    Allow

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

    blockIp AntiSpywareProfileThreatExceptionActionBlockIp

    anti spyware profiles threat exception action block ip

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

    default_ AntiSpywareProfileThreatExceptionActionDefault

    Default

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

    drop AntiSpywareProfileThreatExceptionActionDrop

    Drop

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

    resetBoth AntiSpywareProfileThreatExceptionActionResetBoth

    Reset both

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

    resetClient AntiSpywareProfileThreatExceptionActionResetClient

    Reset client

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

    resetServer AntiSpywareProfileThreatExceptionActionResetServer

    Reset server

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

    alert AntiSpywareProfileThreatExceptionActionAlert
    Alert
    allow AntiSpywareProfileThreatExceptionActionAllow

    Allow

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

    blockIp AntiSpywareProfileThreatExceptionActionBlockIp

    anti spyware profiles threat exception action block ip

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

    default AntiSpywareProfileThreatExceptionActionDefault

    Default

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

    drop AntiSpywareProfileThreatExceptionActionDrop

    Drop

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

    resetBoth AntiSpywareProfileThreatExceptionActionResetBoth

    Reset both

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

    resetClient AntiSpywareProfileThreatExceptionActionResetClient

    Reset client

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

    resetServer AntiSpywareProfileThreatExceptionActionResetServer

    Reset server

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

    alert AntiSpywareProfileThreatExceptionActionAlert
    Alert
    allow AntiSpywareProfileThreatExceptionActionAllow

    Allow

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

    block_ip AntiSpywareProfileThreatExceptionActionBlockIp

    anti spyware profiles threat exception action block ip

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

    default AntiSpywareProfileThreatExceptionActionDefault

    Default

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

    drop AntiSpywareProfileThreatExceptionActionDrop

    Drop

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

    reset_both AntiSpywareProfileThreatExceptionActionResetBoth

    Reset both

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

    reset_client AntiSpywareProfileThreatExceptionActionResetClient

    Reset client

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

    reset_server AntiSpywareProfileThreatExceptionActionResetServer

    Reset server

    ℹ️ Note: You must specify exactly one of alert, allow, block_ip, default, 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, default, drop, reset_both, reset_client, and reset_server.

    blockIp Property Map

    anti spyware profiles threat exception action block ip

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

    default Property Map

    Default

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

    drop Property Map

    Drop

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

    resetBoth Property Map

    Reset both

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

    resetClient Property Map

    Reset client

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

    resetServer Property Map

    Reset server

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

    AntiSpywareProfileThreatExceptionActionBlockIp, AntiSpywareProfileThreatExceptionActionBlockIpArgs

    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

    AntiSpywareProfileThreatExceptionExemptIp, AntiSpywareProfileThreatExceptionExemptIpArgs

    Name string
    Name
    Name string
    Name
    name String
    Name
    name string
    Name
    name str
    Name
    name String
    Name

    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