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", {});
import pulumi
import pulumi_scm as scm
example = scm.AntiSpywareProfile("example")
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
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
var example = new Scm.AntiSpywareProfile("example");
});
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");
}
}
resources:
example:
type: scm:AntiSpywareProfile
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 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",
},
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",
},
},
});
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"),
},
},
})
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());
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",
}])
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",
}],
});
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
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:
- Cloud
Inline boolAnalysis - The CloudInlineAnalysis param. Default:
false
. - Description string
- The Description param.
- Device string
- The Device param.
- Folder string
- The Folder param.
- Inline
Exception List<string>Edl Urls - The InlineExceptionEdlUrls param.
- Inline
Exception List<string>Ip Addresses - The InlineExceptionIpAddresses param.
- Mica
Engine List<AntiSpyware Enabled Lists Spyware Profile Mica Engine Spyware Enabled List> - The MicaEngineSpywareEnabledList param.
- Name string
- The Name param.
- Rules
List<Anti
Spyware Profile Rule> - The Rules param.
- Snippet string
- The Snippet param.
- Threat
Exceptions List<AntiSpyware Profile Threat Exception> - The ThreatExceptions param.
- Cloud
Inline boolAnalysis - The CloudInlineAnalysis param. Default:
false
. - Description string
- The Description param.
- Device string
- The Device param.
- Folder string
- The Folder param.
- Inline
Exception []stringEdl Urls - The InlineExceptionEdlUrls param.
- Inline
Exception []stringIp Addresses - The InlineExceptionIpAddresses param.
- Mica
Engine []AntiSpyware Enabled Lists Spyware Profile Mica Engine Spyware Enabled List Args - The MicaEngineSpywareEnabledList param.
- Name string
- The Name param.
- Rules
[]Anti
Spyware Profile Rule Args - The Rules param.
- Snippet string
- The Snippet param.
- Threat
Exceptions []AntiSpyware Profile Threat Exception Args - The ThreatExceptions param.
- cloud
Inline BooleanAnalysis - The CloudInlineAnalysis param. Default:
false
. - description String
- The Description param.
- device String
- The Device param.
- folder String
- The Folder param.
- inline
Exception List<String>Edl Urls - The InlineExceptionEdlUrls param.
- inline
Exception List<String>Ip Addresses - The InlineExceptionIpAddresses param.
- mica
Engine List<AntiSpyware Enabled Lists Spyware Profile Mica Engine Spyware Enabled List> - The MicaEngineSpywareEnabledList param.
- name String
- The Name param.
- rules
List<Anti
Spyware Profile Rule> - The Rules param.
- snippet String
- The Snippet param.
- threat
Exceptions List<AntiSpyware Profile Threat Exception> - The ThreatExceptions param.
- cloud
Inline booleanAnalysis - The CloudInlineAnalysis param. Default:
false
. - description string
- The Description param.
- device string
- The Device param.
- folder string
- The Folder param.
- inline
Exception string[]Edl Urls - The InlineExceptionEdlUrls param.
- inline
Exception string[]Ip Addresses - The InlineExceptionIpAddresses param.
- mica
Engine AntiSpyware Enabled Lists Spyware Profile Mica Engine Spyware Enabled List[] - The MicaEngineSpywareEnabledList param.
- name string
- The Name param.
- rules
Anti
Spyware Profile Rule[] - The Rules param.
- snippet string
- The Snippet param.
- threat
Exceptions AntiSpyware Profile Threat Exception[] - The ThreatExceptions param.
- cloud_
inline_ boolanalysis - The CloudInlineAnalysis param. Default:
false
. - description str
- The Description param.
- device str
- The Device param.
- folder str
- The Folder param.
- inline_
exception_ Sequence[str]edl_ urls - The InlineExceptionEdlUrls param.
- inline_
exception_ Sequence[str]ip_ addresses - The InlineExceptionIpAddresses param.
- mica_
engine_ Sequence[Antispyware_ enabled_ lists Spyware Profile Mica Engine Spyware Enabled List Args] - The MicaEngineSpywareEnabledList param.
- name str
- The Name param.
- rules
Sequence[Anti
Spyware Profile Rule Args] - The Rules param.
- snippet str
- The Snippet param.
- threat_
exceptions Sequence[AntiSpyware Profile Threat Exception Args] - The ThreatExceptions param.
- cloud
Inline BooleanAnalysis - The CloudInlineAnalysis param. Default:
false
. - description String
- The Description param.
- device String
- The Device param.
- folder String
- The Folder param.
- inline
Exception List<String>Edl Urls - The InlineExceptionEdlUrls param.
- inline
Exception List<String>Ip Addresses - The InlineExceptionIpAddresses param.
- mica
Engine List<Property Map>Spyware Enabled Lists - The MicaEngineSpywareEnabledList param.
- name String
- The Name param.
- rules List<Property Map>
- The Rules param.
- snippet String
- The Snippet param.
- threat
Exceptions 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:
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)
Resource lookup is not supported in YAML
- 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.
- Cloud
Inline boolAnalysis - The CloudInlineAnalysis param. Default:
false
. - Description string
- The Description param.
- Device string
- The Device param.
- Folder string
- The Folder param.
- Inline
Exception List<string>Edl Urls - The InlineExceptionEdlUrls param.
- Inline
Exception List<string>Ip Addresses - The InlineExceptionIpAddresses param.
- Mica
Engine List<AntiSpyware Enabled Lists Spyware Profile Mica Engine Spyware Enabled List> - The MicaEngineSpywareEnabledList param.
- Name string
- The Name param.
- Rules
List<Anti
Spyware Profile Rule> - The Rules param.
- Snippet string
- The Snippet param.
- Tfid string
- Threat
Exceptions List<AntiSpyware Profile Threat Exception> - The ThreatExceptions param.
- Cloud
Inline boolAnalysis - The CloudInlineAnalysis param. Default:
false
. - Description string
- The Description param.
- Device string
- The Device param.
- Folder string
- The Folder param.
- Inline
Exception []stringEdl Urls - The InlineExceptionEdlUrls param.
- Inline
Exception []stringIp Addresses - The InlineExceptionIpAddresses param.
- Mica
Engine []AntiSpyware Enabled Lists Spyware Profile Mica Engine Spyware Enabled List Args - The MicaEngineSpywareEnabledList param.
- Name string
- The Name param.
- Rules
[]Anti
Spyware Profile Rule Args - The Rules param.
- Snippet string
- The Snippet param.
- Tfid string
- Threat
Exceptions []AntiSpyware Profile Threat Exception Args - The ThreatExceptions param.
- cloud
Inline BooleanAnalysis - The CloudInlineAnalysis param. Default:
false
. - description String
- The Description param.
- device String
- The Device param.
- folder String
- The Folder param.
- inline
Exception List<String>Edl Urls - The InlineExceptionEdlUrls param.
- inline
Exception List<String>Ip Addresses - The InlineExceptionIpAddresses param.
- mica
Engine List<AntiSpyware Enabled Lists Spyware Profile Mica Engine Spyware Enabled List> - The MicaEngineSpywareEnabledList param.
- name String
- The Name param.
- rules
List<Anti
Spyware Profile Rule> - The Rules param.
- snippet String
- The Snippet param.
- tfid String
- threat
Exceptions List<AntiSpyware Profile Threat Exception> - The ThreatExceptions param.
- cloud
Inline booleanAnalysis - The CloudInlineAnalysis param. Default:
false
. - description string
- The Description param.
- device string
- The Device param.
- folder string
- The Folder param.
- inline
Exception string[]Edl Urls - The InlineExceptionEdlUrls param.
- inline
Exception string[]Ip Addresses - The InlineExceptionIpAddresses param.
- mica
Engine AntiSpyware Enabled Lists Spyware Profile Mica Engine Spyware Enabled List[] - The MicaEngineSpywareEnabledList param.
- name string
- The Name param.
- rules
Anti
Spyware Profile Rule[] - The Rules param.
- snippet string
- The Snippet param.
- tfid string
- threat
Exceptions AntiSpyware Profile Threat Exception[] - The ThreatExceptions param.
- cloud_
inline_ boolanalysis - The CloudInlineAnalysis param. Default:
false
. - description str
- The Description param.
- device str
- The Device param.
- folder str
- The Folder param.
- inline_
exception_ Sequence[str]edl_ urls - The InlineExceptionEdlUrls param.
- inline_
exception_ Sequence[str]ip_ addresses - The InlineExceptionIpAddresses param.
- mica_
engine_ Sequence[Antispyware_ enabled_ lists Spyware Profile Mica Engine Spyware Enabled List Args] - The MicaEngineSpywareEnabledList param.
- name str
- The Name param.
- rules
Sequence[Anti
Spyware Profile Rule Args] - The Rules param.
- snippet str
- The Snippet param.
- tfid str
- threat_
exceptions Sequence[AntiSpyware Profile Threat Exception Args] - The ThreatExceptions param.
- cloud
Inline BooleanAnalysis - The CloudInlineAnalysis param. Default:
false
. - description String
- The Description param.
- device String
- The Device param.
- folder String
- The Folder param.
- inline
Exception List<String>Edl Urls - The InlineExceptionEdlUrls param.
- inline
Exception List<String>Ip Addresses - The InlineExceptionIpAddresses param.
- mica
Engine List<Property Map>Spyware Enabled Lists - The MicaEngineSpywareEnabledList param.
- name String
- The Name param.
- rules List<Property Map>
- The Rules param.
- snippet String
- The Snippet param.
- tfid String
- threat
Exceptions List<Property Map> - The ThreatExceptions param.
Supporting Types
AntiSpywareProfileMicaEngineSpywareEnabledList, AntiSpywareProfileMicaEngineSpywareEnabledListArgs
- Inline
Policy stringAction - 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 stringAction - 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 StringAction - 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 stringAction - 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_ straction - 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.
- inline
Policy StringAction - 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
Anti
Spyware Profile Rule Action - 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.
- Packet
Capture string - The PacketCapture param. String must be one of these:
"disable"
,"single-packet"
,"extended-capture"
. - Severities List<string>
- The Severities param.
- Threat
Name string - The ThreatName param. String length must exceed 4 characters.
- Action
Anti
Spyware Profile Rule Action - 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.
- Packet
Capture string - The PacketCapture param. String must be one of these:
"disable"
,"single-packet"
,"extended-capture"
. - Severities []string
- The Severities param.
- Threat
Name string - The ThreatName param. String length must exceed 4 characters.
- action
Anti
Spyware Profile Rule Action - 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.
- packet
Capture String - The PacketCapture param. String must be one of these:
"disable"
,"single-packet"
,"extended-capture"
. - severities List<String>
- The Severities param.
- threat
Name String - The ThreatName param. String length must exceed 4 characters.
- action
Anti
Spyware Profile Rule Action - 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.
- packet
Capture string - The PacketCapture param. String must be one of these:
"disable"
,"single-packet"
,"extended-capture"
. - severities string[]
- The Severities param.
- threat
Name string - The ThreatName param. String length must exceed 4 characters.
- action
Anti
Spyware Profile Rule Action - 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.
- packet
Capture String - The PacketCapture param. String must be one of these:
"disable"
,"single-packet"
,"extended-capture"
. - severities List<String>
- The Severities param.
- threat
Name 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
- Block
Ip AntiSpyware Profile Rule Action Block Ip - 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 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 AntiSpyware Profile Rule Action Block Ip - 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
- block
Ip AntiSpyware Profile Rule Action Block Ip - 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
- reset
Both Boolean - 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 Boolean - 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 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
- block
Ip AntiSpyware Profile Rule Action Block Ip - 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
- reset
Both boolean - 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 boolean - 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 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 AntiSpyware Profile Rule Action Block Ip - 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
- block
Ip 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
- reset
Both Boolean - 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 Boolean - 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 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
AntiSpywareProfileThreatException, AntiSpywareProfileThreatExceptionArgs
- Action
Anti
Spyware Profile Threat Exception Action - The Action param.
- Exempt
Ips List<AntiSpyware Profile Threat Exception Exempt Ip> - The ExemptIps param.
- Name string
- The Name param.
- Notes string
- The Notes param.
- Packet
Capture string - The PacketCapture param. String must be one of these:
"disable"
,"single-packet"
,"extended-capture"
.
- Action
Anti
Spyware Profile Threat Exception Action - The Action param.
- Exempt
Ips []AntiSpyware Profile Threat Exception Exempt Ip - The ExemptIps param.
- Name string
- The Name param.
- Notes string
- The Notes param.
- Packet
Capture string - The PacketCapture param. String must be one of these:
"disable"
,"single-packet"
,"extended-capture"
.
- action
Anti
Spyware Profile Threat Exception Action - The Action param.
- exempt
Ips List<AntiSpyware Profile Threat Exception Exempt Ip> - The ExemptIps param.
- name String
- The Name param.
- notes String
- The Notes param.
- packet
Capture String - The PacketCapture param. String must be one of these:
"disable"
,"single-packet"
,"extended-capture"
.
- action
Anti
Spyware Profile Threat Exception Action - The Action param.
- exempt
Ips AntiSpyware Profile Threat Exception Exempt Ip[] - The ExemptIps param.
- name string
- The Name param.
- notes string
- The Notes param.
- packet
Capture string - The PacketCapture param. String must be one of these:
"disable"
,"single-packet"
,"extended-capture"
.
- action
Anti
Spyware Profile Threat Exception Action - The Action param.
- exempt_
ips Sequence[AntiSpyware Profile Threat Exception Exempt Ip] - 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.
- exempt
Ips List<Property Map> - The ExemptIps param.
- name String
- The Name param.
- notes String
- The Notes param.
- packet
Capture 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
- Block
Ip AntiSpyware Profile Threat Exception Action Block Ip - 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 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 AntiSpyware Profile Threat Exception Action Block Ip - 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
- block
Ip AntiSpyware Profile Threat Exception Action Block Ip - 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
- reset
Both 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
- reset
Client 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
- reset
Server 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
- block
Ip AntiSpyware Profile Threat Exception Action Block Ip - 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
- reset
Both 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
- reset
Client 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
- reset
Server 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 AntiSpyware Profile Threat Exception Action Block Ip - 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
- block
Ip 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
- reset
Both 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
- reset
Client 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
- reset
Server 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
AntiSpywareProfileThreatExceptionExemptIp, AntiSpywareProfileThreatExceptionExemptIpArgs
- Name string
- The Name param.
- Name string
- The Name param.
- name String
- The Name param.
- name string
- The Name param.
- name str
- The Name param.
- name 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.