published on Friday, Mar 13, 2026 by Zscaler
published on Friday, Mar 13, 2026 by Zscaler
The zia_atp_malware_inspection resource manages ATP malware inspection settings in the Zscaler Internet Access (ZIA) cloud service. These settings control whether inbound and/or outbound traffic is inspected for malware. This is a singleton resource.
For more information, see the ZIA Advanced Threat Protection documentation.
This is a singleton resource. Import is not applicable.
Example Usage
Configure ATP Malware Inspection
Example coming soon!
Example coming soon!
Example coming soon!
import * as zia from "@bdzscaler/pulumi-zia";
const example = new zia.AtpMalwareInspection("example", {
inspectInbound: true,
inspectOutbound: true,
});
import zscaler_pulumi_zia as zia
example = zia.AtpMalwareInspection("example",
inspect_inbound=True,
inspect_outbound=True,
)
resources:
example:
type: zia:AtpMalwareInspection
properties:
inspectInbound: true
inspectOutbound: true
Create AtpMalwareInspection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AtpMalwareInspection(name: string, args?: AtpMalwareInspectionArgs, opts?: CustomResourceOptions);@overload
def AtpMalwareInspection(resource_name: str,
args: Optional[AtpMalwareInspectionArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def AtpMalwareInspection(resource_name: str,
opts: Optional[ResourceOptions] = None,
inspect_inbound: Optional[bool] = None,
inspect_outbound: Optional[bool] = None)func NewAtpMalwareInspection(ctx *Context, name string, args *AtpMalwareInspectionArgs, opts ...ResourceOption) (*AtpMalwareInspection, error)public AtpMalwareInspection(string name, AtpMalwareInspectionArgs? args = null, CustomResourceOptions? opts = null)
public AtpMalwareInspection(String name, AtpMalwareInspectionArgs args)
public AtpMalwareInspection(String name, AtpMalwareInspectionArgs args, CustomResourceOptions options)
type: zia:AtpMalwareInspection
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 AtpMalwareInspectionArgs
- 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 AtpMalwareInspectionArgs
- 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 AtpMalwareInspectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AtpMalwareInspectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AtpMalwareInspectionArgs
- 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 atpMalwareInspectionResource = new Zia.AtpMalwareInspection("atpMalwareInspectionResource", new()
{
InspectInbound = false,
InspectOutbound = false,
});
example, err := zia.NewAtpMalwareInspection(ctx, "atpMalwareInspectionResource", &zia.AtpMalwareInspectionArgs{
InspectInbound: pulumi.Bool(false),
InspectOutbound: pulumi.Bool(false),
})
var atpMalwareInspectionResource = new AtpMalwareInspection("atpMalwareInspectionResource", AtpMalwareInspectionArgs.builder()
.inspectInbound(false)
.inspectOutbound(false)
.build());
atp_malware_inspection_resource = zia.AtpMalwareInspection("atpMalwareInspectionResource",
inspect_inbound=False,
inspect_outbound=False)
const atpMalwareInspectionResource = new zia.AtpMalwareInspection("atpMalwareInspectionResource", {
inspectInbound: false,
inspectOutbound: false,
});
type: zia:AtpMalwareInspection
properties:
inspectInbound: false
inspectOutbound: false
AtpMalwareInspection 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 AtpMalwareInspection resource accepts the following input properties:
- Inspect
Inbound bool - Enable malware inspection for inbound traffic.
- Inspect
Outbound bool - Enable malware inspection for outbound traffic.
- Inspect
Inbound bool - Enable malware inspection for inbound traffic.
- Inspect
Outbound bool - Enable malware inspection for outbound traffic.
- inspect
Inbound Boolean - Enable malware inspection for inbound traffic.
- inspect
Outbound Boolean - Enable malware inspection for outbound traffic.
- inspect
Inbound boolean - Enable malware inspection for inbound traffic.
- inspect
Outbound boolean - Enable malware inspection for outbound traffic.
- inspect_
inbound bool - Enable malware inspection for inbound traffic.
- inspect_
outbound bool - Enable malware inspection for outbound traffic.
- inspect
Inbound Boolean - Enable malware inspection for inbound traffic.
- inspect
Outbound Boolean - Enable malware inspection for outbound traffic.
Outputs
All input properties are implicitly available as output properties. Additionally, the AtpMalwareInspection resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Id string - The internal resource identifier for the ATP malware inspection settings.
- Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Id string - The internal resource identifier for the ATP malware inspection settings.
- id String
- The provider-assigned unique ID for this managed resource.
- resource
Id String - The internal resource identifier for the ATP malware inspection settings.
- id string
- The provider-assigned unique ID for this managed resource.
- resource
Id string - The internal resource identifier for the ATP malware inspection settings.
- id str
- The provider-assigned unique ID for this managed resource.
- resource_
id str - The internal resource identifier for the ATP malware inspection settings.
- id String
- The provider-assigned unique ID for this managed resource.
- resource
Id String - The internal resource identifier for the ATP malware inspection settings.
Package Details
- Repository
- zia zscaler/pulumi-zia
- License
published on Friday, Mar 13, 2026 by Zscaler
