nsxt.PolicyIntrusionServiceProfile
Explore with Pulumi AI
Create PolicyIntrusionServiceProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PolicyIntrusionServiceProfile(name: string, args: PolicyIntrusionServiceProfileArgs, opts?: CustomResourceOptions);
@overload
def PolicyIntrusionServiceProfile(resource_name: str,
args: PolicyIntrusionServiceProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PolicyIntrusionServiceProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
severities: Optional[Sequence[str]] = None,
context: Optional[PolicyIntrusionServiceProfileContextArgs] = None,
criteria: Optional[PolicyIntrusionServiceProfileCriteriaArgs] = None,
description: Optional[str] = None,
nsx_id: Optional[str] = None,
overridden_signatures: Optional[Sequence[PolicyIntrusionServiceProfileOverriddenSignatureArgs]] = None,
policy_intrusion_service_profile_id: Optional[str] = None,
tags: Optional[Sequence[PolicyIntrusionServiceProfileTagArgs]] = None)
func NewPolicyIntrusionServiceProfile(ctx *Context, name string, args PolicyIntrusionServiceProfileArgs, opts ...ResourceOption) (*PolicyIntrusionServiceProfile, error)
public PolicyIntrusionServiceProfile(string name, PolicyIntrusionServiceProfileArgs args, CustomResourceOptions? opts = null)
public PolicyIntrusionServiceProfile(String name, PolicyIntrusionServiceProfileArgs args)
public PolicyIntrusionServiceProfile(String name, PolicyIntrusionServiceProfileArgs args, CustomResourceOptions options)
type: nsxt:PolicyIntrusionServiceProfile
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 PolicyIntrusionServiceProfileArgs
- 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 PolicyIntrusionServiceProfileArgs
- 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 PolicyIntrusionServiceProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PolicyIntrusionServiceProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PolicyIntrusionServiceProfileArgs
- 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 policyIntrusionServiceProfileResource = new Nsxt.PolicyIntrusionServiceProfile("policyIntrusionServiceProfileResource", new()
{
DisplayName = "string",
Severities = new[]
{
"string",
},
Context = new Nsxt.Inputs.PolicyIntrusionServiceProfileContextArgs
{
ProjectId = "string",
},
Criteria = new Nsxt.Inputs.PolicyIntrusionServiceProfileCriteriaArgs
{
AttackTargets = new[]
{
"string",
},
AttackTypes = new[]
{
"string",
},
Cvsses = new[]
{
"string",
},
ProductsAffecteds = new[]
{
"string",
},
},
Description = "string",
NsxId = "string",
OverriddenSignatures = new[]
{
new Nsxt.Inputs.PolicyIntrusionServiceProfileOverriddenSignatureArgs
{
SignatureId = "string",
Action = "string",
Enabled = false,
},
},
PolicyIntrusionServiceProfileId = "string",
Tags = new[]
{
new Nsxt.Inputs.PolicyIntrusionServiceProfileTagArgs
{
Scope = "string",
Tag = "string",
},
},
});
example, err := nsxt.NewPolicyIntrusionServiceProfile(ctx, "policyIntrusionServiceProfileResource", &nsxt.PolicyIntrusionServiceProfileArgs{
DisplayName: pulumi.String("string"),
Severities: pulumi.StringArray{
pulumi.String("string"),
},
Context: &nsxt.PolicyIntrusionServiceProfileContextArgs{
ProjectId: pulumi.String("string"),
},
Criteria: &nsxt.PolicyIntrusionServiceProfileCriteriaArgs{
AttackTargets: pulumi.StringArray{
pulumi.String("string"),
},
AttackTypes: pulumi.StringArray{
pulumi.String("string"),
},
Cvsses: pulumi.StringArray{
pulumi.String("string"),
},
ProductsAffecteds: pulumi.StringArray{
pulumi.String("string"),
},
},
Description: pulumi.String("string"),
NsxId: pulumi.String("string"),
OverriddenSignatures: nsxt.PolicyIntrusionServiceProfileOverriddenSignatureArray{
&nsxt.PolicyIntrusionServiceProfileOverriddenSignatureArgs{
SignatureId: pulumi.String("string"),
Action: pulumi.String("string"),
Enabled: pulumi.Bool(false),
},
},
PolicyIntrusionServiceProfileId: pulumi.String("string"),
Tags: nsxt.PolicyIntrusionServiceProfileTagArray{
&nsxt.PolicyIntrusionServiceProfileTagArgs{
Scope: pulumi.String("string"),
Tag: pulumi.String("string"),
},
},
})
var policyIntrusionServiceProfileResource = new PolicyIntrusionServiceProfile("policyIntrusionServiceProfileResource", PolicyIntrusionServiceProfileArgs.builder()
.displayName("string")
.severities("string")
.context(PolicyIntrusionServiceProfileContextArgs.builder()
.projectId("string")
.build())
.criteria(PolicyIntrusionServiceProfileCriteriaArgs.builder()
.attackTargets("string")
.attackTypes("string")
.cvsses("string")
.productsAffecteds("string")
.build())
.description("string")
.nsxId("string")
.overriddenSignatures(PolicyIntrusionServiceProfileOverriddenSignatureArgs.builder()
.signatureId("string")
.action("string")
.enabled(false)
.build())
.policyIntrusionServiceProfileId("string")
.tags(PolicyIntrusionServiceProfileTagArgs.builder()
.scope("string")
.tag("string")
.build())
.build());
policy_intrusion_service_profile_resource = nsxt.PolicyIntrusionServiceProfile("policyIntrusionServiceProfileResource",
display_name="string",
severities=["string"],
context={
"project_id": "string",
},
criteria={
"attack_targets": ["string"],
"attack_types": ["string"],
"cvsses": ["string"],
"products_affecteds": ["string"],
},
description="string",
nsx_id="string",
overridden_signatures=[{
"signature_id": "string",
"action": "string",
"enabled": False,
}],
policy_intrusion_service_profile_id="string",
tags=[{
"scope": "string",
"tag": "string",
}])
const policyIntrusionServiceProfileResource = new nsxt.PolicyIntrusionServiceProfile("policyIntrusionServiceProfileResource", {
displayName: "string",
severities: ["string"],
context: {
projectId: "string",
},
criteria: {
attackTargets: ["string"],
attackTypes: ["string"],
cvsses: ["string"],
productsAffecteds: ["string"],
},
description: "string",
nsxId: "string",
overriddenSignatures: [{
signatureId: "string",
action: "string",
enabled: false,
}],
policyIntrusionServiceProfileId: "string",
tags: [{
scope: "string",
tag: "string",
}],
});
type: nsxt:PolicyIntrusionServiceProfile
properties:
context:
projectId: string
criteria:
attackTargets:
- string
attackTypes:
- string
cvsses:
- string
productsAffecteds:
- string
description: string
displayName: string
nsxId: string
overriddenSignatures:
- action: string
enabled: false
signatureId: string
policyIntrusionServiceProfileId: string
severities:
- string
tags:
- scope: string
tag: string
PolicyIntrusionServiceProfile 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 PolicyIntrusionServiceProfile resource accepts the following input properties:
- Display
Name string - Display name of the resource.
- Severities List<string>
- List of profile severities, supported values are
LOW
,MEDIUM
,HIGH
,CRITICAL
,SUSPICIOUS
. - Context
Policy
Intrusion Service Profile Context - The context which the object belongs to
- Criteria
Policy
Intrusion Service Profile Criteria - Filtering criteria for the IDS Profile.
- Description string
- Description of the resource.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Overridden
Signatures List<PolicyIntrusion Service Profile Overridden Signature> - List of signatures that has been overridden this profile.
- Policy
Intrusion stringService Profile Id - ID of the Profile.
- List<Policy
Intrusion Service Profile Tag> - A list of scope + tag pairs to associate with this profile.
- Display
Name string - Display name of the resource.
- Severities []string
- List of profile severities, supported values are
LOW
,MEDIUM
,HIGH
,CRITICAL
,SUSPICIOUS
. - Context
Policy
Intrusion Service Profile Context Args - The context which the object belongs to
- Criteria
Policy
Intrusion Service Profile Criteria Args - Filtering criteria for the IDS Profile.
- Description string
- Description of the resource.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Overridden
Signatures []PolicyIntrusion Service Profile Overridden Signature Args - List of signatures that has been overridden this profile.
- Policy
Intrusion stringService Profile Id - ID of the Profile.
- []Policy
Intrusion Service Profile Tag Args - A list of scope + tag pairs to associate with this profile.
- display
Name String - Display name of the resource.
- severities List<String>
- List of profile severities, supported values are
LOW
,MEDIUM
,HIGH
,CRITICAL
,SUSPICIOUS
. - context
Policy
Intrusion Service Profile Context - The context which the object belongs to
- criteria
Policy
Intrusion Service Profile Criteria - Filtering criteria for the IDS Profile.
- description String
- Description of the resource.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- overridden
Signatures List<PolicyIntrusion Service Profile Overridden Signature> - List of signatures that has been overridden this profile.
- policy
Intrusion StringService Profile Id - ID of the Profile.
- List<Policy
Intrusion Service Profile Tag> - A list of scope + tag pairs to associate with this profile.
- display
Name string - Display name of the resource.
- severities string[]
- List of profile severities, supported values are
LOW
,MEDIUM
,HIGH
,CRITICAL
,SUSPICIOUS
. - context
Policy
Intrusion Service Profile Context - The context which the object belongs to
- criteria
Policy
Intrusion Service Profile Criteria - Filtering criteria for the IDS Profile.
- description string
- Description of the resource.
- nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- overridden
Signatures PolicyIntrusion Service Profile Overridden Signature[] - List of signatures that has been overridden this profile.
- policy
Intrusion stringService Profile Id - ID of the Profile.
- Policy
Intrusion Service Profile Tag[] - A list of scope + tag pairs to associate with this profile.
- display_
name str - Display name of the resource.
- severities Sequence[str]
- List of profile severities, supported values are
LOW
,MEDIUM
,HIGH
,CRITICAL
,SUSPICIOUS
. - context
Policy
Intrusion Service Profile Context Args - The context which the object belongs to
- criteria
Policy
Intrusion Service Profile Criteria Args - Filtering criteria for the IDS Profile.
- description str
- Description of the resource.
- nsx_
id str - The NSX ID of this resource. If set, this ID will be used to create the resource.
- overridden_
signatures Sequence[PolicyIntrusion Service Profile Overridden Signature Args] - List of signatures that has been overridden this profile.
- policy_
intrusion_ strservice_ profile_ id - ID of the Profile.
- Sequence[Policy
Intrusion Service Profile Tag Args] - A list of scope + tag pairs to associate with this profile.
- display
Name String - Display name of the resource.
- severities List<String>
- List of profile severities, supported values are
LOW
,MEDIUM
,HIGH
,CRITICAL
,SUSPICIOUS
. - context Property Map
- The context which the object belongs to
- criteria Property Map
- Filtering criteria for the IDS Profile.
- description String
- Description of the resource.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- overridden
Signatures List<Property Map> - List of signatures that has been overridden this profile.
- policy
Intrusion StringService Profile Id - ID of the Profile.
- List<Property Map>
- A list of scope + tag pairs to associate with this profile.
Outputs
All input properties are implicitly available as output properties. Additionally, the PolicyIntrusionServiceProfile resource produces the following output properties:
Look up Existing PolicyIntrusionServiceProfile Resource
Get an existing PolicyIntrusionServiceProfile 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?: PolicyIntrusionServiceProfileState, opts?: CustomResourceOptions): PolicyIntrusionServiceProfile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
context: Optional[PolicyIntrusionServiceProfileContextArgs] = None,
criteria: Optional[PolicyIntrusionServiceProfileCriteriaArgs] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
nsx_id: Optional[str] = None,
overridden_signatures: Optional[Sequence[PolicyIntrusionServiceProfileOverriddenSignatureArgs]] = None,
path: Optional[str] = None,
policy_intrusion_service_profile_id: Optional[str] = None,
revision: Optional[float] = None,
severities: Optional[Sequence[str]] = None,
tags: Optional[Sequence[PolicyIntrusionServiceProfileTagArgs]] = None) -> PolicyIntrusionServiceProfile
func GetPolicyIntrusionServiceProfile(ctx *Context, name string, id IDInput, state *PolicyIntrusionServiceProfileState, opts ...ResourceOption) (*PolicyIntrusionServiceProfile, error)
public static PolicyIntrusionServiceProfile Get(string name, Input<string> id, PolicyIntrusionServiceProfileState? state, CustomResourceOptions? opts = null)
public static PolicyIntrusionServiceProfile get(String name, Output<String> id, PolicyIntrusionServiceProfileState state, CustomResourceOptions options)
resources: _: type: nsxt:PolicyIntrusionServiceProfile get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Context
Policy
Intrusion Service Profile Context - The context which the object belongs to
- Criteria
Policy
Intrusion Service Profile Criteria - Filtering criteria for the IDS Profile.
- Description string
- Description of the resource.
- Display
Name string - Display name of the resource.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Overridden
Signatures List<PolicyIntrusion Service Profile Overridden Signature> - List of signatures that has been overridden this profile.
- Path string
- The NSX policy path of the resource.
- Policy
Intrusion stringService Profile Id - ID of the Profile.
- Revision double
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- Severities List<string>
- List of profile severities, supported values are
LOW
,MEDIUM
,HIGH
,CRITICAL
,SUSPICIOUS
. - List<Policy
Intrusion Service Profile Tag> - A list of scope + tag pairs to associate with this profile.
- Context
Policy
Intrusion Service Profile Context Args - The context which the object belongs to
- Criteria
Policy
Intrusion Service Profile Criteria Args - Filtering criteria for the IDS Profile.
- Description string
- Description of the resource.
- Display
Name string - Display name of the resource.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Overridden
Signatures []PolicyIntrusion Service Profile Overridden Signature Args - List of signatures that has been overridden this profile.
- Path string
- The NSX policy path of the resource.
- Policy
Intrusion stringService Profile Id - ID of the Profile.
- Revision float64
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- Severities []string
- List of profile severities, supported values are
LOW
,MEDIUM
,HIGH
,CRITICAL
,SUSPICIOUS
. - []Policy
Intrusion Service Profile Tag Args - A list of scope + tag pairs to associate with this profile.
- context
Policy
Intrusion Service Profile Context - The context which the object belongs to
- criteria
Policy
Intrusion Service Profile Criteria - Filtering criteria for the IDS Profile.
- description String
- Description of the resource.
- display
Name String - Display name of the resource.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- overridden
Signatures List<PolicyIntrusion Service Profile Overridden Signature> - List of signatures that has been overridden this profile.
- path String
- The NSX policy path of the resource.
- policy
Intrusion StringService Profile Id - ID of the Profile.
- revision Double
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- severities List<String>
- List of profile severities, supported values are
LOW
,MEDIUM
,HIGH
,CRITICAL
,SUSPICIOUS
. - List<Policy
Intrusion Service Profile Tag> - A list of scope + tag pairs to associate with this profile.
- context
Policy
Intrusion Service Profile Context - The context which the object belongs to
- criteria
Policy
Intrusion Service Profile Criteria - Filtering criteria for the IDS Profile.
- description string
- Description of the resource.
- display
Name string - Display name of the resource.
- nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- overridden
Signatures PolicyIntrusion Service Profile Overridden Signature[] - List of signatures that has been overridden this profile.
- path string
- The NSX policy path of the resource.
- policy
Intrusion stringService Profile Id - ID of the Profile.
- revision number
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- severities string[]
- List of profile severities, supported values are
LOW
,MEDIUM
,HIGH
,CRITICAL
,SUSPICIOUS
. - Policy
Intrusion Service Profile Tag[] - A list of scope + tag pairs to associate with this profile.
- context
Policy
Intrusion Service Profile Context Args - The context which the object belongs to
- criteria
Policy
Intrusion Service Profile Criteria Args - Filtering criteria for the IDS Profile.
- description str
- Description of the resource.
- display_
name str - Display name of the resource.
- nsx_
id str - The NSX ID of this resource. If set, this ID will be used to create the resource.
- overridden_
signatures Sequence[PolicyIntrusion Service Profile Overridden Signature Args] - List of signatures that has been overridden this profile.
- path str
- The NSX policy path of the resource.
- policy_
intrusion_ strservice_ profile_ id - ID of the Profile.
- revision float
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- severities Sequence[str]
- List of profile severities, supported values are
LOW
,MEDIUM
,HIGH
,CRITICAL
,SUSPICIOUS
. - Sequence[Policy
Intrusion Service Profile Tag Args] - A list of scope + tag pairs to associate with this profile.
- context Property Map
- The context which the object belongs to
- criteria Property Map
- Filtering criteria for the IDS Profile.
- description String
- Description of the resource.
- display
Name String - Display name of the resource.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- overridden
Signatures List<Property Map> - List of signatures that has been overridden this profile.
- path String
- The NSX policy path of the resource.
- policy
Intrusion StringService Profile Id - ID of the Profile.
- revision Number
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- severities List<String>
- List of profile severities, supported values are
LOW
,MEDIUM
,HIGH
,CRITICAL
,SUSPICIOUS
. - List<Property Map>
- A list of scope + tag pairs to associate with this profile.
Supporting Types
PolicyIntrusionServiceProfileContext, PolicyIntrusionServiceProfileContextArgs
- Project
Id string - The ID of the project which the object belongs to
- Project
Id string - The ID of the project which the object belongs to
- project
Id String - The ID of the project which the object belongs to
- project
Id string - The ID of the project which the object belongs to
- project_
id str - The ID of the project which the object belongs to
- project
Id String - The ID of the project which the object belongs to
PolicyIntrusionServiceProfileCriteria, PolicyIntrusionServiceProfileCriteriaArgs
- Attack
Targets List<string> - List of supported attack targets. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
- Attack
Types List<string> - List of supported attack types.
- Cvsses List<string>
- List of CVSS (Common Vulnerability Scoring System) ranges. Supported values are
NONE
,LOW
,MEDIUM
,HIGH
,CRITICAL
. - Products
Affecteds List<string> - List of supported products that are affected. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
- Attack
Targets []string - List of supported attack targets. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
- Attack
Types []string - List of supported attack types.
- Cvsses []string
- List of CVSS (Common Vulnerability Scoring System) ranges. Supported values are
NONE
,LOW
,MEDIUM
,HIGH
,CRITICAL
. - Products
Affecteds []string - List of supported products that are affected. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
- attack
Targets List<String> - List of supported attack targets. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
- attack
Types List<String> - List of supported attack types.
- cvsses List<String>
- List of CVSS (Common Vulnerability Scoring System) ranges. Supported values are
NONE
,LOW
,MEDIUM
,HIGH
,CRITICAL
. - products
Affecteds List<String> - List of supported products that are affected. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
- attack
Targets string[] - List of supported attack targets. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
- attack
Types string[] - List of supported attack types.
- cvsses string[]
- List of CVSS (Common Vulnerability Scoring System) ranges. Supported values are
NONE
,LOW
,MEDIUM
,HIGH
,CRITICAL
. - products
Affecteds string[] - List of supported products that are affected. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
- attack_
targets Sequence[str] - List of supported attack targets. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
- attack_
types Sequence[str] - List of supported attack types.
- cvsses Sequence[str]
- List of CVSS (Common Vulnerability Scoring System) ranges. Supported values are
NONE
,LOW
,MEDIUM
,HIGH
,CRITICAL
. - products_
affecteds Sequence[str] - List of supported products that are affected. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
- attack
Targets List<String> - List of supported attack targets. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
- attack
Types List<String> - List of supported attack types.
- cvsses List<String>
- List of CVSS (Common Vulnerability Scoring System) ranges. Supported values are
NONE
,LOW
,MEDIUM
,HIGH
,CRITICAL
. - products
Affecteds List<String> - List of supported products that are affected. Please refer to example above to ensure correct formatting - in some versions, UI shows a different format than NSX expects.
PolicyIntrusionServiceProfileOverriddenSignature, PolicyIntrusionServiceProfileOverriddenSignatureArgs
- Signature
Id string - Id for the existing signature that profile wishes to override.
- Action string
- Overridden action, one of
ALERT
,DROP
,REJECT
. Default isALERT
. - Enabled bool
- Flag to enable/disable this signature.
- Signature
Id string - Id for the existing signature that profile wishes to override.
- Action string
- Overridden action, one of
ALERT
,DROP
,REJECT
. Default isALERT
. - Enabled bool
- Flag to enable/disable this signature.
- signature
Id String - Id for the existing signature that profile wishes to override.
- action String
- Overridden action, one of
ALERT
,DROP
,REJECT
. Default isALERT
. - enabled Boolean
- Flag to enable/disable this signature.
- signature
Id string - Id for the existing signature that profile wishes to override.
- action string
- Overridden action, one of
ALERT
,DROP
,REJECT
. Default isALERT
. - enabled boolean
- Flag to enable/disable this signature.
- signature_
id str - Id for the existing signature that profile wishes to override.
- action str
- Overridden action, one of
ALERT
,DROP
,REJECT
. Default isALERT
. - enabled bool
- Flag to enable/disable this signature.
- signature
Id String - Id for the existing signature that profile wishes to override.
- action String
- Overridden action, one of
ALERT
,DROP
,REJECT
. Default isALERT
. - enabled Boolean
- Flag to enable/disable this signature.
PolicyIntrusionServiceProfileTag, PolicyIntrusionServiceProfileTagArgs
Package Details
- Repository
- nsxt vmware/terraform-provider-nsxt
- License
- Notes
- This Pulumi package is based on the
nsxt
Terraform Provider.