zia.ATPMalwareSettings
Explore with Pulumi AI
The zia_atp_malware_settings resource allows you to update the malware protection policy configuration details. To learn more see Configuring Malware Protection Policy
Example Usage
resource "zia_atp_malware_settings" "this" {
virus_blocked = true
virus_capture = false
unwanted_applications_blocked = true
unwanted_applications_capture = false
trojan_blocked = true
trojan_capture = false
worm_blocked = true
worm_capture = false
adware_blocked = true
adware_capture = false
spyware_blocked = true
spyware_capture = false
ransomware_blocked = true
ransomware_capture = false
remote_access_tool_blocked = true
remote_access_tool_capture = false
}
Create ATPMalwareSettings Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ATPMalwareSettings(name: string, args?: ATPMalwareSettingsArgs, opts?: CustomResourceOptions);
@overload
def ATPMalwareSettings(resource_name: str,
args: Optional[ATPMalwareSettingsArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ATPMalwareSettings(resource_name: str,
opts: Optional[ResourceOptions] = None,
adware_blocked: Optional[bool] = None,
adware_capture: Optional[bool] = None,
ransomware_blocked: Optional[bool] = None,
ransomware_capture: Optional[bool] = None,
remote_access_tool_blocked: Optional[bool] = None,
remote_access_tool_capture: Optional[bool] = None,
spyware_blocked: Optional[bool] = None,
spyware_capture: Optional[bool] = None,
trojan_blocked: Optional[bool] = None,
trojan_capture: Optional[bool] = None,
unwanted_applications_blocked: Optional[bool] = None,
unwanted_applications_capture: Optional[bool] = None,
virus_blocked: Optional[bool] = None,
virus_capture: Optional[bool] = None,
worm_blocked: Optional[bool] = None,
worm_capture: Optional[bool] = None)
func NewATPMalwareSettings(ctx *Context, name string, args *ATPMalwareSettingsArgs, opts ...ResourceOption) (*ATPMalwareSettings, error)
public ATPMalwareSettings(string name, ATPMalwareSettingsArgs? args = null, CustomResourceOptions? opts = null)
public ATPMalwareSettings(String name, ATPMalwareSettingsArgs args)
public ATPMalwareSettings(String name, ATPMalwareSettingsArgs args, CustomResourceOptions options)
type: zia:ATPMalwareSettings
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 ATPMalwareSettingsArgs
- 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 ATPMalwareSettingsArgs
- 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 ATPMalwareSettingsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ATPMalwareSettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ATPMalwareSettingsArgs
- 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 atpmalwareSettingsResource = new Zia.ATPMalwareSettings("atpmalwareSettingsResource", new()
{
AdwareBlocked = false,
AdwareCapture = false,
RansomwareBlocked = false,
RansomwareCapture = false,
RemoteAccessToolBlocked = false,
RemoteAccessToolCapture = false,
SpywareBlocked = false,
SpywareCapture = false,
TrojanBlocked = false,
TrojanCapture = false,
UnwantedApplicationsBlocked = false,
UnwantedApplicationsCapture = false,
VirusBlocked = false,
VirusCapture = false,
WormBlocked = false,
WormCapture = false,
});
example, err := zia.NewATPMalwareSettings(ctx, "atpmalwareSettingsResource", &zia.ATPMalwareSettingsArgs{
AdwareBlocked: pulumi.Bool(false),
AdwareCapture: pulumi.Bool(false),
RansomwareBlocked: pulumi.Bool(false),
RansomwareCapture: pulumi.Bool(false),
RemoteAccessToolBlocked: pulumi.Bool(false),
RemoteAccessToolCapture: pulumi.Bool(false),
SpywareBlocked: pulumi.Bool(false),
SpywareCapture: pulumi.Bool(false),
TrojanBlocked: pulumi.Bool(false),
TrojanCapture: pulumi.Bool(false),
UnwantedApplicationsBlocked: pulumi.Bool(false),
UnwantedApplicationsCapture: pulumi.Bool(false),
VirusBlocked: pulumi.Bool(false),
VirusCapture: pulumi.Bool(false),
WormBlocked: pulumi.Bool(false),
WormCapture: pulumi.Bool(false),
})
var atpmalwareSettingsResource = new ATPMalwareSettings("atpmalwareSettingsResource", ATPMalwareSettingsArgs.builder()
.adwareBlocked(false)
.adwareCapture(false)
.ransomwareBlocked(false)
.ransomwareCapture(false)
.remoteAccessToolBlocked(false)
.remoteAccessToolCapture(false)
.spywareBlocked(false)
.spywareCapture(false)
.trojanBlocked(false)
.trojanCapture(false)
.unwantedApplicationsBlocked(false)
.unwantedApplicationsCapture(false)
.virusBlocked(false)
.virusCapture(false)
.wormBlocked(false)
.wormCapture(false)
.build());
atpmalware_settings_resource = zia.ATPMalwareSettings("atpmalwareSettingsResource",
adware_blocked=False,
adware_capture=False,
ransomware_blocked=False,
ransomware_capture=False,
remote_access_tool_blocked=False,
remote_access_tool_capture=False,
spyware_blocked=False,
spyware_capture=False,
trojan_blocked=False,
trojan_capture=False,
unwanted_applications_blocked=False,
unwanted_applications_capture=False,
virus_blocked=False,
virus_capture=False,
worm_blocked=False,
worm_capture=False)
const atpmalwareSettingsResource = new zia.ATPMalwareSettings("atpmalwareSettingsResource", {
adwareBlocked: false,
adwareCapture: false,
ransomwareBlocked: false,
ransomwareCapture: false,
remoteAccessToolBlocked: false,
remoteAccessToolCapture: false,
spywareBlocked: false,
spywareCapture: false,
trojanBlocked: false,
trojanCapture: false,
unwantedApplicationsBlocked: false,
unwantedApplicationsCapture: false,
virusBlocked: false,
virusCapture: false,
wormBlocked: false,
wormCapture: false,
});
type: zia:ATPMalwareSettings
properties:
adwareBlocked: false
adwareCapture: false
ransomwareBlocked: false
ransomwareCapture: false
remoteAccessToolBlocked: false
remoteAccessToolCapture: false
spywareBlocked: false
spywareCapture: false
trojanBlocked: false
trojanCapture: false
unwantedApplicationsBlocked: false
unwantedApplicationsCapture: false
virusBlocked: false
virusCapture: false
wormBlocked: false
wormCapture: false
ATPMalwareSettings 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 ATPMalwareSettings resource accepts the following input properties:
- Adware
Blocked bool - A Boolean value indicating whether malicious files that automatically render advertisements and install adware are allowed or blocked
- Adware
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for adware
- Ransomware
Blocked bool - A Boolean value specifying whether to allow or block malicious programs that can encrypt files and prevent users from accessing their devices, files, or data until a ransom payment is made.
- Ransomware
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for ransomware
- Remote
Access boolTool Blocked - A Boolean value specifying whether to allow or block file download from tools that are common from remote access sites
- Remote
Access boolTool Capture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for remote access tools
- Spyware
Blocked bool - A Boolean value indicating whether malicious files that covertly gather information about a user or an organization are allowed or blocked
- Spyware
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for spyware
- Trojan
Blocked bool - A Boolean value that allows or blocks malicious programs such as Trojan viruses that are presented as beneficial or useful
- Trojan
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for Trojan viruses
- Unwanted
Applications boolBlocked - A Boolean value that allows or blocks unwanted files that are downloaded alongside intentional programs downloaded by users
- Unwanted
Applications boolCapture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for unwanted applications
- Virus
Blocked bool - A Boolean value that indicates if malicious programs that cause damage to systems and data are allowed or blocked.
- Virus
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for viruses
- Worm
Blocked bool - A Boolean value indicating whether malicious programs that duplicate themselves to spread malicious code to other devices are allowed or blocked
- Worm
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for worms
- Adware
Blocked bool - A Boolean value indicating whether malicious files that automatically render advertisements and install adware are allowed or blocked
- Adware
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for adware
- Ransomware
Blocked bool - A Boolean value specifying whether to allow or block malicious programs that can encrypt files and prevent users from accessing their devices, files, or data until a ransom payment is made.
- Ransomware
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for ransomware
- Remote
Access boolTool Blocked - A Boolean value specifying whether to allow or block file download from tools that are common from remote access sites
- Remote
Access boolTool Capture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for remote access tools
- Spyware
Blocked bool - A Boolean value indicating whether malicious files that covertly gather information about a user or an organization are allowed or blocked
- Spyware
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for spyware
- Trojan
Blocked bool - A Boolean value that allows or blocks malicious programs such as Trojan viruses that are presented as beneficial or useful
- Trojan
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for Trojan viruses
- Unwanted
Applications boolBlocked - A Boolean value that allows or blocks unwanted files that are downloaded alongside intentional programs downloaded by users
- Unwanted
Applications boolCapture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for unwanted applications
- Virus
Blocked bool - A Boolean value that indicates if malicious programs that cause damage to systems and data are allowed or blocked.
- Virus
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for viruses
- Worm
Blocked bool - A Boolean value indicating whether malicious programs that duplicate themselves to spread malicious code to other devices are allowed or blocked
- Worm
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for worms
- adware
Blocked Boolean - A Boolean value indicating whether malicious files that automatically render advertisements and install adware are allowed or blocked
- adware
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for adware
- ransomware
Blocked Boolean - A Boolean value specifying whether to allow or block malicious programs that can encrypt files and prevent users from accessing their devices, files, or data until a ransom payment is made.
- ransomware
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for ransomware
- remote
Access BooleanTool Blocked - A Boolean value specifying whether to allow or block file download from tools that are common from remote access sites
- remote
Access BooleanTool Capture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for remote access tools
- spyware
Blocked Boolean - A Boolean value indicating whether malicious files that covertly gather information about a user or an organization are allowed or blocked
- spyware
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for spyware
- trojan
Blocked Boolean - A Boolean value that allows or blocks malicious programs such as Trojan viruses that are presented as beneficial or useful
- trojan
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for Trojan viruses
- unwanted
Applications BooleanBlocked - A Boolean value that allows or blocks unwanted files that are downloaded alongside intentional programs downloaded by users
- unwanted
Applications BooleanCapture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for unwanted applications
- virus
Blocked Boolean - A Boolean value that indicates if malicious programs that cause damage to systems and data are allowed or blocked.
- virus
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for viruses
- worm
Blocked Boolean - A Boolean value indicating whether malicious programs that duplicate themselves to spread malicious code to other devices are allowed or blocked
- worm
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for worms
- adware
Blocked boolean - A Boolean value indicating whether malicious files that automatically render advertisements and install adware are allowed or blocked
- adware
Capture boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for adware
- ransomware
Blocked boolean - A Boolean value specifying whether to allow or block malicious programs that can encrypt files and prevent users from accessing their devices, files, or data until a ransom payment is made.
- ransomware
Capture boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for ransomware
- remote
Access booleanTool Blocked - A Boolean value specifying whether to allow or block file download from tools that are common from remote access sites
- remote
Access booleanTool Capture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for remote access tools
- spyware
Blocked boolean - A Boolean value indicating whether malicious files that covertly gather information about a user or an organization are allowed or blocked
- spyware
Capture boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for spyware
- trojan
Blocked boolean - A Boolean value that allows or blocks malicious programs such as Trojan viruses that are presented as beneficial or useful
- trojan
Capture boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for Trojan viruses
- unwanted
Applications booleanBlocked - A Boolean value that allows or blocks unwanted files that are downloaded alongside intentional programs downloaded by users
- unwanted
Applications booleanCapture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for unwanted applications
- virus
Blocked boolean - A Boolean value that indicates if malicious programs that cause damage to systems and data are allowed or blocked.
- virus
Capture boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for viruses
- worm
Blocked boolean - A Boolean value indicating whether malicious programs that duplicate themselves to spread malicious code to other devices are allowed or blocked
- worm
Capture boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for worms
- adware_
blocked bool - A Boolean value indicating whether malicious files that automatically render advertisements and install adware are allowed or blocked
- adware_
capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for adware
- ransomware_
blocked bool - A Boolean value specifying whether to allow or block malicious programs that can encrypt files and prevent users from accessing their devices, files, or data until a ransom payment is made.
- ransomware_
capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for ransomware
- remote_
access_ booltool_ blocked - A Boolean value specifying whether to allow or block file download from tools that are common from remote access sites
- remote_
access_ booltool_ capture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for remote access tools
- spyware_
blocked bool - A Boolean value indicating whether malicious files that covertly gather information about a user or an organization are allowed or blocked
- spyware_
capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for spyware
- trojan_
blocked bool - A Boolean value that allows or blocks malicious programs such as Trojan viruses that are presented as beneficial or useful
- trojan_
capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for Trojan viruses
- unwanted_
applications_ boolblocked - A Boolean value that allows or blocks unwanted files that are downloaded alongside intentional programs downloaded by users
- unwanted_
applications_ boolcapture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for unwanted applications
- virus_
blocked bool - A Boolean value that indicates if malicious programs that cause damage to systems and data are allowed or blocked.
- virus_
capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for viruses
- worm_
blocked bool - A Boolean value indicating whether malicious programs that duplicate themselves to spread malicious code to other devices are allowed or blocked
- worm_
capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for worms
- adware
Blocked Boolean - A Boolean value indicating whether malicious files that automatically render advertisements and install adware are allowed or blocked
- adware
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for adware
- ransomware
Blocked Boolean - A Boolean value specifying whether to allow or block malicious programs that can encrypt files and prevent users from accessing their devices, files, or data until a ransom payment is made.
- ransomware
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for ransomware
- remote
Access BooleanTool Blocked - A Boolean value specifying whether to allow or block file download from tools that are common from remote access sites
- remote
Access BooleanTool Capture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for remote access tools
- spyware
Blocked Boolean - A Boolean value indicating whether malicious files that covertly gather information about a user or an organization are allowed or blocked
- spyware
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for spyware
- trojan
Blocked Boolean - A Boolean value that allows or blocks malicious programs such as Trojan viruses that are presented as beneficial or useful
- trojan
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for Trojan viruses
- unwanted
Applications BooleanBlocked - A Boolean value that allows or blocks unwanted files that are downloaded alongside intentional programs downloaded by users
- unwanted
Applications BooleanCapture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for unwanted applications
- virus
Blocked Boolean - A Boolean value that indicates if malicious programs that cause damage to systems and data are allowed or blocked.
- virus
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for viruses
- worm
Blocked Boolean - A Boolean value indicating whether malicious programs that duplicate themselves to spread malicious code to other devices are allowed or blocked
- worm
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for worms
Outputs
All input properties are implicitly available as output properties. Additionally, the ATPMalwareSettings resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ATPMalwareSettings Resource
Get an existing ATPMalwareSettings 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?: ATPMalwareSettingsState, opts?: CustomResourceOptions): ATPMalwareSettings
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adware_blocked: Optional[bool] = None,
adware_capture: Optional[bool] = None,
ransomware_blocked: Optional[bool] = None,
ransomware_capture: Optional[bool] = None,
remote_access_tool_blocked: Optional[bool] = None,
remote_access_tool_capture: Optional[bool] = None,
spyware_blocked: Optional[bool] = None,
spyware_capture: Optional[bool] = None,
trojan_blocked: Optional[bool] = None,
trojan_capture: Optional[bool] = None,
unwanted_applications_blocked: Optional[bool] = None,
unwanted_applications_capture: Optional[bool] = None,
virus_blocked: Optional[bool] = None,
virus_capture: Optional[bool] = None,
worm_blocked: Optional[bool] = None,
worm_capture: Optional[bool] = None) -> ATPMalwareSettings
func GetATPMalwareSettings(ctx *Context, name string, id IDInput, state *ATPMalwareSettingsState, opts ...ResourceOption) (*ATPMalwareSettings, error)
public static ATPMalwareSettings Get(string name, Input<string> id, ATPMalwareSettingsState? state, CustomResourceOptions? opts = null)
public static ATPMalwareSettings get(String name, Output<String> id, ATPMalwareSettingsState state, CustomResourceOptions options)
resources: _: type: zia:ATPMalwareSettings 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.
- Adware
Blocked bool - A Boolean value indicating whether malicious files that automatically render advertisements and install adware are allowed or blocked
- Adware
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for adware
- Ransomware
Blocked bool - A Boolean value specifying whether to allow or block malicious programs that can encrypt files and prevent users from accessing their devices, files, or data until a ransom payment is made.
- Ransomware
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for ransomware
- Remote
Access boolTool Blocked - A Boolean value specifying whether to allow or block file download from tools that are common from remote access sites
- Remote
Access boolTool Capture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for remote access tools
- Spyware
Blocked bool - A Boolean value indicating whether malicious files that covertly gather information about a user or an organization are allowed or blocked
- Spyware
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for spyware
- Trojan
Blocked bool - A Boolean value that allows or blocks malicious programs such as Trojan viruses that are presented as beneficial or useful
- Trojan
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for Trojan viruses
- Unwanted
Applications boolBlocked - A Boolean value that allows or blocks unwanted files that are downloaded alongside intentional programs downloaded by users
- Unwanted
Applications boolCapture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for unwanted applications
- Virus
Blocked bool - A Boolean value that indicates if malicious programs that cause damage to systems and data are allowed or blocked.
- Virus
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for viruses
- Worm
Blocked bool - A Boolean value indicating whether malicious programs that duplicate themselves to spread malicious code to other devices are allowed or blocked
- Worm
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for worms
- Adware
Blocked bool - A Boolean value indicating whether malicious files that automatically render advertisements and install adware are allowed or blocked
- Adware
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for adware
- Ransomware
Blocked bool - A Boolean value specifying whether to allow or block malicious programs that can encrypt files and prevent users from accessing their devices, files, or data until a ransom payment is made.
- Ransomware
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for ransomware
- Remote
Access boolTool Blocked - A Boolean value specifying whether to allow or block file download from tools that are common from remote access sites
- Remote
Access boolTool Capture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for remote access tools
- Spyware
Blocked bool - A Boolean value indicating whether malicious files that covertly gather information about a user or an organization are allowed or blocked
- Spyware
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for spyware
- Trojan
Blocked bool - A Boolean value that allows or blocks malicious programs such as Trojan viruses that are presented as beneficial or useful
- Trojan
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for Trojan viruses
- Unwanted
Applications boolBlocked - A Boolean value that allows or blocks unwanted files that are downloaded alongside intentional programs downloaded by users
- Unwanted
Applications boolCapture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for unwanted applications
- Virus
Blocked bool - A Boolean value that indicates if malicious programs that cause damage to systems and data are allowed or blocked.
- Virus
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for viruses
- Worm
Blocked bool - A Boolean value indicating whether malicious programs that duplicate themselves to spread malicious code to other devices are allowed or blocked
- Worm
Capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for worms
- adware
Blocked Boolean - A Boolean value indicating whether malicious files that automatically render advertisements and install adware are allowed or blocked
- adware
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for adware
- ransomware
Blocked Boolean - A Boolean value specifying whether to allow or block malicious programs that can encrypt files and prevent users from accessing their devices, files, or data until a ransom payment is made.
- ransomware
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for ransomware
- remote
Access BooleanTool Blocked - A Boolean value specifying whether to allow or block file download from tools that are common from remote access sites
- remote
Access BooleanTool Capture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for remote access tools
- spyware
Blocked Boolean - A Boolean value indicating whether malicious files that covertly gather information about a user or an organization are allowed or blocked
- spyware
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for spyware
- trojan
Blocked Boolean - A Boolean value that allows or blocks malicious programs such as Trojan viruses that are presented as beneficial or useful
- trojan
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for Trojan viruses
- unwanted
Applications BooleanBlocked - A Boolean value that allows or blocks unwanted files that are downloaded alongside intentional programs downloaded by users
- unwanted
Applications BooleanCapture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for unwanted applications
- virus
Blocked Boolean - A Boolean value that indicates if malicious programs that cause damage to systems and data are allowed or blocked.
- virus
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for viruses
- worm
Blocked Boolean - A Boolean value indicating whether malicious programs that duplicate themselves to spread malicious code to other devices are allowed or blocked
- worm
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for worms
- adware
Blocked boolean - A Boolean value indicating whether malicious files that automatically render advertisements and install adware are allowed or blocked
- adware
Capture boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for adware
- ransomware
Blocked boolean - A Boolean value specifying whether to allow or block malicious programs that can encrypt files and prevent users from accessing their devices, files, or data until a ransom payment is made.
- ransomware
Capture boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for ransomware
- remote
Access booleanTool Blocked - A Boolean value specifying whether to allow or block file download from tools that are common from remote access sites
- remote
Access booleanTool Capture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for remote access tools
- spyware
Blocked boolean - A Boolean value indicating whether malicious files that covertly gather information about a user or an organization are allowed or blocked
- spyware
Capture boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for spyware
- trojan
Blocked boolean - A Boolean value that allows or blocks malicious programs such as Trojan viruses that are presented as beneficial or useful
- trojan
Capture boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for Trojan viruses
- unwanted
Applications booleanBlocked - A Boolean value that allows or blocks unwanted files that are downloaded alongside intentional programs downloaded by users
- unwanted
Applications booleanCapture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for unwanted applications
- virus
Blocked boolean - A Boolean value that indicates if malicious programs that cause damage to systems and data are allowed or blocked.
- virus
Capture boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for viruses
- worm
Blocked boolean - A Boolean value indicating whether malicious programs that duplicate themselves to spread malicious code to other devices are allowed or blocked
- worm
Capture boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for worms
- adware_
blocked bool - A Boolean value indicating whether malicious files that automatically render advertisements and install adware are allowed or blocked
- adware_
capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for adware
- ransomware_
blocked bool - A Boolean value specifying whether to allow or block malicious programs that can encrypt files and prevent users from accessing their devices, files, or data until a ransom payment is made.
- ransomware_
capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for ransomware
- remote_
access_ booltool_ blocked - A Boolean value specifying whether to allow or block file download from tools that are common from remote access sites
- remote_
access_ booltool_ capture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for remote access tools
- spyware_
blocked bool - A Boolean value indicating whether malicious files that covertly gather information about a user or an organization are allowed or blocked
- spyware_
capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for spyware
- trojan_
blocked bool - A Boolean value that allows or blocks malicious programs such as Trojan viruses that are presented as beneficial or useful
- trojan_
capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for Trojan viruses
- unwanted_
applications_ boolblocked - A Boolean value that allows or blocks unwanted files that are downloaded alongside intentional programs downloaded by users
- unwanted_
applications_ boolcapture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for unwanted applications
- virus_
blocked bool - A Boolean value that indicates if malicious programs that cause damage to systems and data are allowed or blocked.
- virus_
capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for viruses
- worm_
blocked bool - A Boolean value indicating whether malicious programs that duplicate themselves to spread malicious code to other devices are allowed or blocked
- worm_
capture bool - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for worms
- adware
Blocked Boolean - A Boolean value indicating whether malicious files that automatically render advertisements and install adware are allowed or blocked
- adware
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for adware
- ransomware
Blocked Boolean - A Boolean value specifying whether to allow or block malicious programs that can encrypt files and prevent users from accessing their devices, files, or data until a ransom payment is made.
- ransomware
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for ransomware
- remote
Access BooleanTool Blocked - A Boolean value specifying whether to allow or block file download from tools that are common from remote access sites
- remote
Access BooleanTool Capture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for remote access tools
- spyware
Blocked Boolean - A Boolean value indicating whether malicious files that covertly gather information about a user or an organization are allowed or blocked
- spyware
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for spyware
- trojan
Blocked Boolean - A Boolean value that allows or blocks malicious programs such as Trojan viruses that are presented as beneficial or useful
- trojan
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for Trojan viruses
- unwanted
Applications BooleanBlocked - A Boolean value that allows or blocks unwanted files that are downloaded alongside intentional programs downloaded by users
- unwanted
Applications BooleanCapture - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for unwanted applications
- virus
Blocked Boolean - A Boolean value that indicates if malicious programs that cause damage to systems and data are allowed or blocked.
- virus
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for viruses
- worm
Blocked Boolean - A Boolean value indicating whether malicious programs that duplicate themselves to spread malicious code to other devices are allowed or blocked
- worm
Capture Boolean - A Boolean value specifying whether packet capture (PCAP) is enabled or disabled for worms
Import
Zscaler offers a dedicated tool called Zscaler-Terraformer to allow the automated import of ZIA configurations into Terraform-compliant HashiCorp Configuration Language.
Visit
zia_advanced_threat_settings can be imported by using advanced_threat_settings
as the import ID.
For example:
$ pulumi import zia:index/aTPMalwareSettings:ATPMalwareSettings this "advanced_threat_settings"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- zia zscaler/pulumi-zia
- License
- MIT
- Notes
- This Pulumi package is based on the
zia
Terraform Provider.