1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. AntiSpywareProfile
Strata Cloud Manager v0.3.1 published on Thursday, Mar 13, 2025 by Pulumi

scm.AntiSpywareProfile

Explore with Pulumi AI

Retrieves a config item.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";

const example = new scm.AntiSpywareProfile("example", {});
Copy
import pulumi
import pulumi_scm as scm

example = scm.AntiSpywareProfile("example")
Copy
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.NewAntiSpywareProfile(ctx, "example", nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;

return await Deployment.RunAsync(() => 
{
    var example = new Scm.AntiSpywareProfile("example");

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.AntiSpywareProfile;
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 example = new AntiSpywareProfile("example");

    }
}
Copy
resources:
  example:
    type: scm:AntiSpywareProfile
Copy

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_enabled_lists: Optional[Sequence[AntiSpywareProfileMicaEngineSpywareEnabledListArgs]] = 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. String
The unique name of the resource.
args This property is required. 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",
    },
    MicaEngineSpywareEnabledLists = new[]
    {
        new Scm.Inputs.AntiSpywareProfileMicaEngineSpywareEnabledListArgs
        {
            InlinePolicyAction = "string",
            Name = "string",
        },
    },
    Name = "string",
    Rules = new[]
    {
        new Scm.Inputs.AntiSpywareProfileRuleArgs
        {
            Action = new Scm.Inputs.AntiSpywareProfileRuleActionArgs
            {
                Alert = false,
                Allow = false,
                BlockIp = new Scm.Inputs.AntiSpywareProfileRuleActionBlockIpArgs
                {
                    Duration = 0,
                    TrackBy = "string",
                },
                Drop = false,
                ResetBoth = false,
                ResetClient = false,
                ResetServer = false,
            },
            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 = false,
                Allow = false,
                BlockIp = new Scm.Inputs.AntiSpywareProfileThreatExceptionActionBlockIpArgs
                {
                    Duration = 0,
                    TrackBy = "string",
                },
                Default = false,
                Drop = false,
                ResetBoth = false,
                ResetClient = false,
                ResetServer = false,
            },
            ExemptIps = new[]
            {
                new Scm.Inputs.AntiSpywareProfileThreatExceptionExemptIpArgs
                {
                    Name = "string",
                },
            },
            Name = "string",
            Notes = "string",
            PacketCapture = "string",
        },
    },
});
Copy
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"),
	},
	MicaEngineSpywareEnabledLists: scm.AntiSpywareProfileMicaEngineSpywareEnabledListArray{
		&scm.AntiSpywareProfileMicaEngineSpywareEnabledListArgs{
			InlinePolicyAction: pulumi.String("string"),
			Name:               pulumi.String("string"),
		},
	},
	Name: pulumi.String("string"),
	Rules: scm.AntiSpywareProfileRuleArray{
		&scm.AntiSpywareProfileRuleArgs{
			Action: &scm.AntiSpywareProfileRuleActionArgs{
				Alert: pulumi.Bool(false),
				Allow: pulumi.Bool(false),
				BlockIp: &scm.AntiSpywareProfileRuleActionBlockIpArgs{
					Duration: pulumi.Int(0),
					TrackBy:  pulumi.String("string"),
				},
				Drop:        pulumi.Bool(false),
				ResetBoth:   pulumi.Bool(false),
				ResetClient: pulumi.Bool(false),
				ResetServer: pulumi.Bool(false),
			},
			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: pulumi.Bool(false),
				Allow: pulumi.Bool(false),
				BlockIp: &scm.AntiSpywareProfileThreatExceptionActionBlockIpArgs{
					Duration: pulumi.Int(0),
					TrackBy:  pulumi.String("string"),
				},
				Default:     pulumi.Bool(false),
				Drop:        pulumi.Bool(false),
				ResetBoth:   pulumi.Bool(false),
				ResetClient: pulumi.Bool(false),
				ResetServer: pulumi.Bool(false),
			},
			ExemptIps: scm.AntiSpywareProfileThreatExceptionExemptIpArray{
				&scm.AntiSpywareProfileThreatExceptionExemptIpArgs{
					Name: pulumi.String("string"),
				},
			},
			Name:          pulumi.String("string"),
			Notes:         pulumi.String("string"),
			PacketCapture: pulumi.String("string"),
		},
	},
})
Copy
var antiSpywareProfileResource = new AntiSpywareProfile("antiSpywareProfileResource", AntiSpywareProfileArgs.builder()
    .cloudInlineAnalysis(false)
    .description("string")
    .device("string")
    .folder("string")
    .inlineExceptionEdlUrls("string")
    .inlineExceptionIpAddresses("string")
    .micaEngineSpywareEnabledLists(AntiSpywareProfileMicaEngineSpywareEnabledListArgs.builder()
        .inlinePolicyAction("string")
        .name("string")
        .build())
    .name("string")
    .rules(AntiSpywareProfileRuleArgs.builder()
        .action(AntiSpywareProfileRuleActionArgs.builder()
            .alert(false)
            .allow(false)
            .blockIp(AntiSpywareProfileRuleActionBlockIpArgs.builder()
                .duration(0)
                .trackBy("string")
                .build())
            .drop(false)
            .resetBoth(false)
            .resetClient(false)
            .resetServer(false)
            .build())
        .category("string")
        .name("string")
        .packetCapture("string")
        .severities("string")
        .threatName("string")
        .build())
    .snippet("string")
    .threatExceptions(AntiSpywareProfileThreatExceptionArgs.builder()
        .action(AntiSpywareProfileThreatExceptionActionArgs.builder()
            .alert(false)
            .allow(false)
            .blockIp(AntiSpywareProfileThreatExceptionActionBlockIpArgs.builder()
                .duration(0)
                .trackBy("string")
                .build())
            .default_(false)
            .drop(false)
            .resetBoth(false)
            .resetClient(false)
            .resetServer(false)
            .build())
        .exemptIps(AntiSpywareProfileThreatExceptionExemptIpArgs.builder()
            .name("string")
            .build())
        .name("string")
        .notes("string")
        .packetCapture("string")
        .build())
    .build());
Copy
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_enabled_lists=[{
        "inline_policy_action": "string",
        "name": "string",
    }],
    name="string",
    rules=[{
        "action": {
            "alert": False,
            "allow": False,
            "block_ip": {
                "duration": 0,
                "track_by": "string",
            },
            "drop": False,
            "reset_both": False,
            "reset_client": False,
            "reset_server": False,
        },
        "category": "string",
        "name": "string",
        "packet_capture": "string",
        "severities": ["string"],
        "threat_name": "string",
    }],
    snippet="string",
    threat_exceptions=[{
        "action": {
            "alert": False,
            "allow": False,
            "block_ip": {
                "duration": 0,
                "track_by": "string",
            },
            "default": False,
            "drop": False,
            "reset_both": False,
            "reset_client": False,
            "reset_server": False,
        },
        "exempt_ips": [{
            "name": "string",
        }],
        "name": "string",
        "notes": "string",
        "packet_capture": "string",
    }])
Copy
const antiSpywareProfileResource = new scm.AntiSpywareProfile("antiSpywareProfileResource", {
    cloudInlineAnalysis: false,
    description: "string",
    device: "string",
    folder: "string",
    inlineExceptionEdlUrls: ["string"],
    inlineExceptionIpAddresses: ["string"],
    micaEngineSpywareEnabledLists: [{
        inlinePolicyAction: "string",
        name: "string",
    }],
    name: "string",
    rules: [{
        action: {
            alert: false,
            allow: false,
            blockIp: {
                duration: 0,
                trackBy: "string",
            },
            drop: false,
            resetBoth: false,
            resetClient: false,
            resetServer: false,
        },
        category: "string",
        name: "string",
        packetCapture: "string",
        severities: ["string"],
        threatName: "string",
    }],
    snippet: "string",
    threatExceptions: [{
        action: {
            alert: false,
            allow: false,
            blockIp: {
                duration: 0,
                trackBy: "string",
            },
            "default": false,
            drop: false,
            resetBoth: false,
            resetClient: false,
            resetServer: false,
        },
        exemptIps: [{
            name: "string",
        }],
        name: "string",
        notes: "string",
        packetCapture: "string",
    }],
});
Copy
type: scm:AntiSpywareProfile
properties:
    cloudInlineAnalysis: false
    description: string
    device: string
    folder: string
    inlineExceptionEdlUrls:
        - string
    inlineExceptionIpAddresses:
        - string
    micaEngineSpywareEnabledLists:
        - inlinePolicyAction: string
          name: string
    name: string
    rules:
        - action:
            alert: false
            allow: false
            blockIp:
                duration: 0
                trackBy: string
            drop: false
            resetBoth: false
            resetClient: false
            resetServer: false
          category: string
          name: string
          packetCapture: string
          severities:
            - string
          threatName: string
    snippet: string
    threatExceptions:
        - action:
            alert: false
            allow: false
            blockIp:
                duration: 0
                trackBy: string
            default: false
            drop: false
            resetBoth: false
            resetClient: false
            resetServer: false
          exemptIps:
            - name: string
          name: string
          notes: string
          packetCapture: string
Copy

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
The CloudInlineAnalysis param. Default: false.
Description string
The Description param.
Device string
The Device param.
Folder string
The Folder param.
InlineExceptionEdlUrls List<string>
The InlineExceptionEdlUrls param.
InlineExceptionIpAddresses List<string>
The InlineExceptionIpAddresses param.
MicaEngineSpywareEnabledLists List<AntiSpywareProfileMicaEngineSpywareEnabledList>
The MicaEngineSpywareEnabledList param.
Name string
The Name param.
Rules List<AntiSpywareProfileRule>
The Rules param.
Snippet string
The Snippet param.
ThreatExceptions List<AntiSpywareProfileThreatException>
The ThreatExceptions param.
CloudInlineAnalysis bool
The CloudInlineAnalysis param. Default: false.
Description string
The Description param.
Device string
The Device param.
Folder string
The Folder param.
InlineExceptionEdlUrls []string
The InlineExceptionEdlUrls param.
InlineExceptionIpAddresses []string
The InlineExceptionIpAddresses param.
MicaEngineSpywareEnabledLists []AntiSpywareProfileMicaEngineSpywareEnabledListArgs
The MicaEngineSpywareEnabledList param.
Name string
The Name param.
Rules []AntiSpywareProfileRuleArgs
The Rules param.
Snippet string
The Snippet param.
ThreatExceptions []AntiSpywareProfileThreatExceptionArgs
The ThreatExceptions param.
cloudInlineAnalysis Boolean
The CloudInlineAnalysis param. Default: false.
description String
The Description param.
device String
The Device param.
folder String
The Folder param.
inlineExceptionEdlUrls List<String>
The InlineExceptionEdlUrls param.
inlineExceptionIpAddresses List<String>
The InlineExceptionIpAddresses param.
micaEngineSpywareEnabledLists List<AntiSpywareProfileMicaEngineSpywareEnabledList>
The MicaEngineSpywareEnabledList param.
name String
The Name param.
rules List<AntiSpywareProfileRule>
The Rules param.
snippet String
The Snippet param.
threatExceptions List<AntiSpywareProfileThreatException>
The ThreatExceptions param.
cloudInlineAnalysis boolean
The CloudInlineAnalysis param. Default: false.
description string
The Description param.
device string
The Device param.
folder string
The Folder param.
inlineExceptionEdlUrls string[]
The InlineExceptionEdlUrls param.
inlineExceptionIpAddresses string[]
The InlineExceptionIpAddresses param.
micaEngineSpywareEnabledLists AntiSpywareProfileMicaEngineSpywareEnabledList[]
The MicaEngineSpywareEnabledList param.
name string
The Name param.
rules AntiSpywareProfileRule[]
The Rules param.
snippet string
The Snippet param.
threatExceptions AntiSpywareProfileThreatException[]
The ThreatExceptions param.
cloud_inline_analysis bool
The CloudInlineAnalysis param. Default: false.
description str
The Description param.
device str
The Device param.
folder str
The Folder param.
inline_exception_edl_urls Sequence[str]
The InlineExceptionEdlUrls param.
inline_exception_ip_addresses Sequence[str]
The InlineExceptionIpAddresses param.
mica_engine_spyware_enabled_lists Sequence[AntiSpywareProfileMicaEngineSpywareEnabledListArgs]
The MicaEngineSpywareEnabledList param.
name str
The Name param.
rules Sequence[AntiSpywareProfileRuleArgs]
The Rules param.
snippet str
The Snippet param.
threat_exceptions Sequence[AntiSpywareProfileThreatExceptionArgs]
The ThreatExceptions param.
cloudInlineAnalysis Boolean
The CloudInlineAnalysis param. Default: false.
description String
The Description param.
device String
The Device param.
folder String
The Folder param.
inlineExceptionEdlUrls List<String>
The InlineExceptionEdlUrls param.
inlineExceptionIpAddresses List<String>
The InlineExceptionIpAddresses param.
micaEngineSpywareEnabledLists List<Property Map>
The MicaEngineSpywareEnabledList param.
name String
The Name param.
rules List<Property Map>
The Rules param.
snippet String
The Snippet param.
threatExceptions List<Property Map>
The ThreatExceptions param.

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_enabled_lists: Optional[Sequence[AntiSpywareProfileMicaEngineSpywareEnabledListArgs]] = 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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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
The CloudInlineAnalysis param. Default: false.
Description string
The Description param.
Device string
The Device param.
Folder string
The Folder param.
InlineExceptionEdlUrls List<string>
The InlineExceptionEdlUrls param.
InlineExceptionIpAddresses List<string>
The InlineExceptionIpAddresses param.
MicaEngineSpywareEnabledLists List<AntiSpywareProfileMicaEngineSpywareEnabledList>
The MicaEngineSpywareEnabledList param.
Name string
The Name param.
Rules List<AntiSpywareProfileRule>
The Rules param.
Snippet string
The Snippet param.
Tfid string
ThreatExceptions List<AntiSpywareProfileThreatException>
The ThreatExceptions param.
CloudInlineAnalysis bool
The CloudInlineAnalysis param. Default: false.
Description string
The Description param.
Device string
The Device param.
Folder string
The Folder param.
InlineExceptionEdlUrls []string
The InlineExceptionEdlUrls param.
InlineExceptionIpAddresses []string
The InlineExceptionIpAddresses param.
MicaEngineSpywareEnabledLists []AntiSpywareProfileMicaEngineSpywareEnabledListArgs
The MicaEngineSpywareEnabledList param.
Name string
The Name param.
Rules []AntiSpywareProfileRuleArgs
The Rules param.
Snippet string
The Snippet param.
Tfid string
ThreatExceptions []AntiSpywareProfileThreatExceptionArgs
The ThreatExceptions param.
cloudInlineAnalysis Boolean
The CloudInlineAnalysis param. Default: false.
description String
The Description param.
device String
The Device param.
folder String
The Folder param.
inlineExceptionEdlUrls List<String>
The InlineExceptionEdlUrls param.
inlineExceptionIpAddresses List<String>
The InlineExceptionIpAddresses param.
micaEngineSpywareEnabledLists List<AntiSpywareProfileMicaEngineSpywareEnabledList>
The MicaEngineSpywareEnabledList param.
name String
The Name param.
rules List<AntiSpywareProfileRule>
The Rules param.
snippet String
The Snippet param.
tfid String
threatExceptions List<AntiSpywareProfileThreatException>
The ThreatExceptions param.
cloudInlineAnalysis boolean
The CloudInlineAnalysis param. Default: false.
description string
The Description param.
device string
The Device param.
folder string
The Folder param.
inlineExceptionEdlUrls string[]
The InlineExceptionEdlUrls param.
inlineExceptionIpAddresses string[]
The InlineExceptionIpAddresses param.
micaEngineSpywareEnabledLists AntiSpywareProfileMicaEngineSpywareEnabledList[]
The MicaEngineSpywareEnabledList param.
name string
The Name param.
rules AntiSpywareProfileRule[]
The Rules param.
snippet string
The Snippet param.
tfid string
threatExceptions AntiSpywareProfileThreatException[]
The ThreatExceptions param.
cloud_inline_analysis bool
The CloudInlineAnalysis param. Default: false.
description str
The Description param.
device str
The Device param.
folder str
The Folder param.
inline_exception_edl_urls Sequence[str]
The InlineExceptionEdlUrls param.
inline_exception_ip_addresses Sequence[str]
The InlineExceptionIpAddresses param.
mica_engine_spyware_enabled_lists Sequence[AntiSpywareProfileMicaEngineSpywareEnabledListArgs]
The MicaEngineSpywareEnabledList param.
name str
The Name param.
rules Sequence[AntiSpywareProfileRuleArgs]
The Rules param.
snippet str
The Snippet param.
tfid str
threat_exceptions Sequence[AntiSpywareProfileThreatExceptionArgs]
The ThreatExceptions param.
cloudInlineAnalysis Boolean
The CloudInlineAnalysis param. Default: false.
description String
The Description param.
device String
The Device param.
folder String
The Folder param.
inlineExceptionEdlUrls List<String>
The InlineExceptionEdlUrls param.
inlineExceptionIpAddresses List<String>
The InlineExceptionIpAddresses param.
micaEngineSpywareEnabledLists List<Property Map>
The MicaEngineSpywareEnabledList param.
name String
The Name param.
rules List<Property Map>
The Rules param.
snippet String
The Snippet param.
tfid String
threatExceptions List<Property Map>
The ThreatExceptions param.

Supporting Types

AntiSpywareProfileMicaEngineSpywareEnabledList
, AntiSpywareProfileMicaEngineSpywareEnabledListArgs

InlinePolicyAction string
The InlinePolicyAction param. String must be one of these: "alert", "allow", "drop", "reset-both", "reset-client", "reset-server". Default: "alert".
Name string
The Name param.
InlinePolicyAction string
The InlinePolicyAction param. String must be one of these: "alert", "allow", "drop", "reset-both", "reset-client", "reset-server". Default: "alert".
Name string
The Name param.
inlinePolicyAction String
The InlinePolicyAction param. String must be one of these: "alert", "allow", "drop", "reset-both", "reset-client", "reset-server". Default: "alert".
name String
The Name param.
inlinePolicyAction string
The InlinePolicyAction param. String must be one of these: "alert", "allow", "drop", "reset-both", "reset-client", "reset-server". Default: "alert".
name string
The Name param.
inline_policy_action str
The InlinePolicyAction param. String must be one of these: "alert", "allow", "drop", "reset-both", "reset-client", "reset-server". Default: "alert".
name str
The Name param.
inlinePolicyAction String
The InlinePolicyAction param. String must be one of these: "alert", "allow", "drop", "reset-both", "reset-client", "reset-server". Default: "alert".
name String
The Name param.

AntiSpywareProfileRule
, AntiSpywareProfileRuleArgs

Action AntiSpywareProfileRuleAction
The Action param.
Category string
The Category param. String must be one of these: "dns-proxy", "backdoor", "data-theft", "autogen", "spyware", "dns-security", "downloader", "dns-phishing", "phishing-kit", "cryptominer", "hacktool", "dns-benign", "dns-wildfire", "botnet", "dns-grayware", "inline-cloud-c2", "keylogger", "p2p-communication", "domain-edl", "webshell", "command-and-control", "dns-ddns", "net-worm", "any", "tls-fingerprint", "dns-new-domain", "dns", "fraud", "dns-c2", "adware", "post-exploitation", "dns-malware", "browser-hijack", "dns-parked".
Name string
The Name param.
PacketCapture string
The PacketCapture param. String must be one of these: "disable", "single-packet", "extended-capture".
Severities List<string>
The Severities param.
ThreatName string
The ThreatName param. String length must exceed 4 characters.
Action AntiSpywareProfileRuleAction
The Action param.
Category string
The Category param. String must be one of these: "dns-proxy", "backdoor", "data-theft", "autogen", "spyware", "dns-security", "downloader", "dns-phishing", "phishing-kit", "cryptominer", "hacktool", "dns-benign", "dns-wildfire", "botnet", "dns-grayware", "inline-cloud-c2", "keylogger", "p2p-communication", "domain-edl", "webshell", "command-and-control", "dns-ddns", "net-worm", "any", "tls-fingerprint", "dns-new-domain", "dns", "fraud", "dns-c2", "adware", "post-exploitation", "dns-malware", "browser-hijack", "dns-parked".
Name string
The Name param.
PacketCapture string
The PacketCapture param. String must be one of these: "disable", "single-packet", "extended-capture".
Severities []string
The Severities param.
ThreatName string
The ThreatName param. String length must exceed 4 characters.
action AntiSpywareProfileRuleAction
The Action param.
category String
The Category param. String must be one of these: "dns-proxy", "backdoor", "data-theft", "autogen", "spyware", "dns-security", "downloader", "dns-phishing", "phishing-kit", "cryptominer", "hacktool", "dns-benign", "dns-wildfire", "botnet", "dns-grayware", "inline-cloud-c2", "keylogger", "p2p-communication", "domain-edl", "webshell", "command-and-control", "dns-ddns", "net-worm", "any", "tls-fingerprint", "dns-new-domain", "dns", "fraud", "dns-c2", "adware", "post-exploitation", "dns-malware", "browser-hijack", "dns-parked".
name String
The Name param.
packetCapture String
The PacketCapture param. String must be one of these: "disable", "single-packet", "extended-capture".
severities List<String>
The Severities param.
threatName String
The ThreatName param. String length must exceed 4 characters.
action AntiSpywareProfileRuleAction
The Action param.
category string
The Category param. String must be one of these: "dns-proxy", "backdoor", "data-theft", "autogen", "spyware", "dns-security", "downloader", "dns-phishing", "phishing-kit", "cryptominer", "hacktool", "dns-benign", "dns-wildfire", "botnet", "dns-grayware", "inline-cloud-c2", "keylogger", "p2p-communication", "domain-edl", "webshell", "command-and-control", "dns-ddns", "net-worm", "any", "tls-fingerprint", "dns-new-domain", "dns", "fraud", "dns-c2", "adware", "post-exploitation", "dns-malware", "browser-hijack", "dns-parked".
name string
The Name param.
packetCapture string
The PacketCapture param. String must be one of these: "disable", "single-packet", "extended-capture".
severities string[]
The Severities param.
threatName string
The ThreatName param. String length must exceed 4 characters.
action AntiSpywareProfileRuleAction
The Action param.
category str
The Category param. String must be one of these: "dns-proxy", "backdoor", "data-theft", "autogen", "spyware", "dns-security", "downloader", "dns-phishing", "phishing-kit", "cryptominer", "hacktool", "dns-benign", "dns-wildfire", "botnet", "dns-grayware", "inline-cloud-c2", "keylogger", "p2p-communication", "domain-edl", "webshell", "command-and-control", "dns-ddns", "net-worm", "any", "tls-fingerprint", "dns-new-domain", "dns", "fraud", "dns-c2", "adware", "post-exploitation", "dns-malware", "browser-hijack", "dns-parked".
name str
The Name param.
packet_capture str
The PacketCapture param. String must be one of these: "disable", "single-packet", "extended-capture".
severities Sequence[str]
The Severities param.
threat_name str
The ThreatName param. String length must exceed 4 characters.
action Property Map
The Action param.
category String
The Category param. String must be one of these: "dns-proxy", "backdoor", "data-theft", "autogen", "spyware", "dns-security", "downloader", "dns-phishing", "phishing-kit", "cryptominer", "hacktool", "dns-benign", "dns-wildfire", "botnet", "dns-grayware", "inline-cloud-c2", "keylogger", "p2p-communication", "domain-edl", "webshell", "command-and-control", "dns-ddns", "net-worm", "any", "tls-fingerprint", "dns-new-domain", "dns", "fraud", "dns-c2", "adware", "post-exploitation", "dns-malware", "browser-hijack", "dns-parked".
name String
The Name param.
packetCapture String
The PacketCapture param. String must be one of these: "disable", "single-packet", "extended-capture".
severities List<String>
The Severities param.
threatName String
The ThreatName param. String length must exceed 4 characters.

AntiSpywareProfileRuleAction
, AntiSpywareProfileRuleActionArgs

Alert bool
The Alert param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
Allow bool
The Allow param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
BlockIp AntiSpywareProfileRuleActionBlockIp
The BlockIp param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
Drop bool
The Drop param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
ResetBoth bool
The ResetBoth param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
ResetClient bool
The ResetClient param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
ResetServer bool
The ResetServer param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
Alert bool
The Alert param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
Allow bool
The Allow param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
BlockIp AntiSpywareProfileRuleActionBlockIp
The BlockIp param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
Drop bool
The Drop param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
ResetBoth bool
The ResetBoth param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
ResetClient bool
The ResetClient param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
ResetServer bool
The ResetServer param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
alert Boolean
The Alert param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
allow Boolean
The Allow param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
blockIp AntiSpywareProfileRuleActionBlockIp
The BlockIp param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
drop Boolean
The Drop param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
resetBoth Boolean
The ResetBoth param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
resetClient Boolean
The ResetClient param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
resetServer Boolean
The ResetServer param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
alert boolean
The Alert param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
allow boolean
The Allow param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
blockIp AntiSpywareProfileRuleActionBlockIp
The BlockIp param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
drop boolean
The Drop param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
resetBoth boolean
The ResetBoth param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
resetClient boolean
The ResetClient param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
resetServer boolean
The ResetServer param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
alert bool
The Alert param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
allow bool
The Allow param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
block_ip AntiSpywareProfileRuleActionBlockIp
The BlockIp param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
drop bool
The Drop param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
reset_both bool
The ResetBoth param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
reset_client bool
The ResetClient param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
reset_server bool
The ResetServer param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
alert Boolean
The Alert param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
allow Boolean
The Allow param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
blockIp Property Map
The BlockIp param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
drop Boolean
The Drop param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
resetBoth Boolean
The ResetBoth param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
resetClient Boolean
The ResetClient param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server
resetServer Boolean
The ResetServer param. Ensure that only one of the following is specified: alert, allow, block_ip, drop, reset_both, reset_client, reset_server

AntiSpywareProfileRuleActionBlockIp
, AntiSpywareProfileRuleActionBlockIpArgs

Duration int
The Duration param. Value must be between 1 and 3600.
TrackBy string
The TrackBy param. String must be one of these: "source-and-destination", "source".
Duration int
The Duration param. Value must be between 1 and 3600.
TrackBy string
The TrackBy param. String must be one of these: "source-and-destination", "source".
duration Integer
The Duration param. Value must be between 1 and 3600.
trackBy String
The TrackBy param. String must be one of these: "source-and-destination", "source".
duration number
The Duration param. Value must be between 1 and 3600.
trackBy string
The TrackBy param. String must be one of these: "source-and-destination", "source".
duration int
The Duration param. Value must be between 1 and 3600.
track_by str
The TrackBy param. String must be one of these: "source-and-destination", "source".
duration Number
The Duration param. Value must be between 1 and 3600.
trackBy String
The TrackBy param. String must be one of these: "source-and-destination", "source".

AntiSpywareProfileThreatException
, AntiSpywareProfileThreatExceptionArgs

Action AntiSpywareProfileThreatExceptionAction
The Action param.
ExemptIps List<AntiSpywareProfileThreatExceptionExemptIp>
The ExemptIps param.
Name string
The Name param.
Notes string
The Notes param.
PacketCapture string
The PacketCapture param. String must be one of these: "disable", "single-packet", "extended-capture".
Action AntiSpywareProfileThreatExceptionAction
The Action param.
ExemptIps []AntiSpywareProfileThreatExceptionExemptIp
The ExemptIps param.
Name string
The Name param.
Notes string
The Notes param.
PacketCapture string
The PacketCapture param. String must be one of these: "disable", "single-packet", "extended-capture".
action AntiSpywareProfileThreatExceptionAction
The Action param.
exemptIps List<AntiSpywareProfileThreatExceptionExemptIp>
The ExemptIps param.
name String
The Name param.
notes String
The Notes param.
packetCapture String
The PacketCapture param. String must be one of these: "disable", "single-packet", "extended-capture".
action AntiSpywareProfileThreatExceptionAction
The Action param.
exemptIps AntiSpywareProfileThreatExceptionExemptIp[]
The ExemptIps param.
name string
The Name param.
notes string
The Notes param.
packetCapture string
The PacketCapture param. String must be one of these: "disable", "single-packet", "extended-capture".
action AntiSpywareProfileThreatExceptionAction
The Action param.
exempt_ips Sequence[AntiSpywareProfileThreatExceptionExemptIp]
The ExemptIps param.
name str
The Name param.
notes str
The Notes param.
packet_capture str
The PacketCapture param. String must be one of these: "disable", "single-packet", "extended-capture".
action Property Map
The Action param.
exemptIps List<Property Map>
The ExemptIps param.
name String
The Name param.
notes String
The Notes param.
packetCapture String
The PacketCapture param. String must be one of these: "disable", "single-packet", "extended-capture".

AntiSpywareProfileThreatExceptionAction
, AntiSpywareProfileThreatExceptionActionArgs

Alert bool
The Alert param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
Allow bool
The Allow param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
BlockIp AntiSpywareProfileThreatExceptionActionBlockIp
The BlockIp param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
Default bool
The Default param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
Drop bool
The Drop param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
ResetBoth bool
The ResetBoth param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
ResetClient bool
The ResetClient param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
ResetServer bool
The ResetServer param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
Alert bool
The Alert param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
Allow bool
The Allow param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
BlockIp AntiSpywareProfileThreatExceptionActionBlockIp
The BlockIp param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
Default bool
The Default param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
Drop bool
The Drop param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
ResetBoth bool
The ResetBoth param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
ResetClient bool
The ResetClient param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
ResetServer bool
The ResetServer param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
alert Boolean
The Alert param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
allow Boolean
The Allow param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
blockIp AntiSpywareProfileThreatExceptionActionBlockIp
The BlockIp param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
default_ Boolean
The Default param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
drop Boolean
The Drop param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
resetBoth Boolean
The ResetBoth param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
resetClient Boolean
The ResetClient param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
resetServer Boolean
The ResetServer param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
alert boolean
The Alert param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
allow boolean
The Allow param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
blockIp AntiSpywareProfileThreatExceptionActionBlockIp
The BlockIp param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
default boolean
The Default param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
drop boolean
The Drop param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
resetBoth boolean
The ResetBoth param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
resetClient boolean
The ResetClient param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
resetServer boolean
The ResetServer param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
alert bool
The Alert param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
allow bool
The Allow param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
block_ip AntiSpywareProfileThreatExceptionActionBlockIp
The BlockIp param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
default bool
The Default param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
drop bool
The Drop param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
reset_both bool
The ResetBoth param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
reset_client bool
The ResetClient param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
reset_server bool
The ResetServer param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
alert Boolean
The Alert param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
allow Boolean
The Allow param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
blockIp Property Map
The BlockIp param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
default Boolean
The Default param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
drop Boolean
The Drop param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
resetBoth Boolean
The ResetBoth param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
resetClient Boolean
The ResetClient param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server
resetServer Boolean
The ResetServer param. Ensure that only one of the following is specified: alert, allow, block_ip, default, drop, reset_both, reset_client, reset_server

AntiSpywareProfileThreatExceptionActionBlockIp
, AntiSpywareProfileThreatExceptionActionBlockIpArgs

Duration int
The Duration param. Value must be between 1 and 3600.
TrackBy string
The TrackBy param. String must be one of these: "source-and-destination", "source".
Duration int
The Duration param. Value must be between 1 and 3600.
TrackBy string
The TrackBy param. String must be one of these: "source-and-destination", "source".
duration Integer
The Duration param. Value must be between 1 and 3600.
trackBy String
The TrackBy param. String must be one of these: "source-and-destination", "source".
duration number
The Duration param. Value must be between 1 and 3600.
trackBy string
The TrackBy param. String must be one of these: "source-and-destination", "source".
duration int
The Duration param. Value must be between 1 and 3600.
track_by str
The TrackBy param. String must be one of these: "source-and-destination", "source".
duration Number
The Duration param. Value must be between 1 and 3600.
trackBy String
The TrackBy param. String must be one of these: "source-and-destination", "source".

AntiSpywareProfileThreatExceptionExemptIp
, AntiSpywareProfileThreatExceptionExemptIpArgs

Name This property is required. string
The Name param.
Name This property is required. string
The Name param.
name This property is required. String
The Name param.
name This property is required. string
The Name param.
name This property is required. str
The Name param.
name This property is required. String
The Name param.

Package Details

Repository
scm pulumi/pulumi-scm
License
Apache-2.0
Notes
This Pulumi package is based on the scm Terraform Provider.