1. Packages
  2. Zscaler Internet Access (ZIA)
  3. API Docs
  4. AtpMalwareInspection
Viewing docs for pulumi-resource-zia v1.3.8
published on Friday, Mar 13, 2026 by Zscaler
zia logo
Viewing docs for pulumi-resource-zia v1.3.8
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:

    InspectInbound bool
    Enable malware inspection for inbound traffic.
    InspectOutbound bool
    Enable malware inspection for outbound traffic.
    InspectInbound bool
    Enable malware inspection for inbound traffic.
    InspectOutbound bool
    Enable malware inspection for outbound traffic.
    inspectInbound Boolean
    Enable malware inspection for inbound traffic.
    inspectOutbound Boolean
    Enable malware inspection for outbound traffic.
    inspectInbound boolean
    Enable malware inspection for inbound traffic.
    inspectOutbound 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.
    inspectInbound Boolean
    Enable malware inspection for inbound traffic.
    inspectOutbound 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.
    ResourceId string
    The internal resource identifier for the ATP malware inspection settings.
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceId string
    The internal resource identifier for the ATP malware inspection settings.
    id String
    The provider-assigned unique ID for this managed resource.
    resourceId String
    The internal resource identifier for the ATP malware inspection settings.
    id string
    The provider-assigned unique ID for this managed resource.
    resourceId 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.
    resourceId String
    The internal resource identifier for the ATP malware inspection settings.

    Package Details

    Repository
    zia zscaler/pulumi-zia
    License
    zia logo
    Viewing docs for pulumi-resource-zia v1.3.8
    published on Friday, Mar 13, 2026 by Zscaler
      Try Pulumi Cloud free. Your team will thank you.