1. Packages
  2. Zscaler Internet Access (ZIA)
  3. API Docs
  4. AtpMalwareProtocols
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_protocols resource manages the Advanced Threat Protection (ATP) malware protocol inspection settings in the Zscaler Internet Access (ZIA) cloud service. This singleton resource controls which protocols are inspected for malware, including HTTP, FTP over HTTP, and native FTP traffic.

    For more information, see the ZIA ATP documentation.

    Example Usage

    Basic ATP Malware Protocol Settings

    Example coming soon!

    Example coming soon!

    Example coming soon!

    import * as zia from "@bdzscaler/pulumi-zia";
    
    const example = new zia.AtpMalwareProtocols("example", {
        inspectHttp: true,
        inspectFtpOverHttp: true,
        inspectFtp: true,
    });
    
    import zscaler_pulumi_zia as zia
    
    example = zia.AtpMalwareProtocols("example",
        inspect_http=True,
        inspect_ftp_over_http=True,
        inspect_ftp=True,
    )
    
    resources:
      example:
        type: zia:AtpMalwareProtocols
        properties:
          inspectHttp: true
          inspectFtpOverHttp: true
          inspectFtp: true
    

    Create AtpMalwareProtocols Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AtpMalwareProtocols(name: string, args?: AtpMalwareProtocolsArgs, opts?: CustomResourceOptions);
    @overload
    def AtpMalwareProtocols(resource_name: str,
                            args: Optional[AtpMalwareProtocolsArgs] = None,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def AtpMalwareProtocols(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            inspect_ftp: Optional[bool] = None,
                            inspect_ftp_over_http: Optional[bool] = None,
                            inspect_http: Optional[bool] = None)
    func NewAtpMalwareProtocols(ctx *Context, name string, args *AtpMalwareProtocolsArgs, opts ...ResourceOption) (*AtpMalwareProtocols, error)
    public AtpMalwareProtocols(string name, AtpMalwareProtocolsArgs? args = null, CustomResourceOptions? opts = null)
    public AtpMalwareProtocols(String name, AtpMalwareProtocolsArgs args)
    public AtpMalwareProtocols(String name, AtpMalwareProtocolsArgs args, CustomResourceOptions options)
    
    type: zia:AtpMalwareProtocols
    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 AtpMalwareProtocolsArgs
    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 AtpMalwareProtocolsArgs
    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 AtpMalwareProtocolsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AtpMalwareProtocolsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AtpMalwareProtocolsArgs
    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 atpMalwareProtocolsResource = new Zia.AtpMalwareProtocols("atpMalwareProtocolsResource", new()
    {
        InspectFtp = false,
        InspectFtpOverHttp = false,
        InspectHttp = false,
    });
    
    example, err := zia.NewAtpMalwareProtocols(ctx, "atpMalwareProtocolsResource", &zia.AtpMalwareProtocolsArgs{
    	InspectFtp:         pulumi.Bool(false),
    	InspectFtpOverHttp: pulumi.Bool(false),
    	InspectHttp:        pulumi.Bool(false),
    })
    
    var atpMalwareProtocolsResource = new AtpMalwareProtocols("atpMalwareProtocolsResource", AtpMalwareProtocolsArgs.builder()
        .inspectFtp(false)
        .inspectFtpOverHttp(false)
        .inspectHttp(false)
        .build());
    
    atp_malware_protocols_resource = zia.AtpMalwareProtocols("atpMalwareProtocolsResource",
        inspect_ftp=False,
        inspect_ftp_over_http=False,
        inspect_http=False)
    
    const atpMalwareProtocolsResource = new zia.AtpMalwareProtocols("atpMalwareProtocolsResource", {
        inspectFtp: false,
        inspectFtpOverHttp: false,
        inspectHttp: false,
    });
    
    type: zia:AtpMalwareProtocols
    properties:
        inspectFtp: false
        inspectFtpOverHttp: false
        inspectHttp: false
    

    AtpMalwareProtocols 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 AtpMalwareProtocols resource accepts the following input properties:

    InspectFtp bool
    When set to true, native FTP traffic is inspected for malware.
    InspectFtpOverHttp bool
    When set to true, FTP-over-HTTP traffic is inspected for malware.
    InspectHttp bool
    When set to true, HTTP traffic is inspected for malware.
    InspectFtp bool
    When set to true, native FTP traffic is inspected for malware.
    InspectFtpOverHttp bool
    When set to true, FTP-over-HTTP traffic is inspected for malware.
    InspectHttp bool
    When set to true, HTTP traffic is inspected for malware.
    inspectFtp Boolean
    When set to true, native FTP traffic is inspected for malware.
    inspectFtpOverHttp Boolean
    When set to true, FTP-over-HTTP traffic is inspected for malware.
    inspectHttp Boolean
    When set to true, HTTP traffic is inspected for malware.
    inspectFtp boolean
    When set to true, native FTP traffic is inspected for malware.
    inspectFtpOverHttp boolean
    When set to true, FTP-over-HTTP traffic is inspected for malware.
    inspectHttp boolean
    When set to true, HTTP traffic is inspected for malware.
    inspect_ftp bool
    When set to true, native FTP traffic is inspected for malware.
    inspect_ftp_over_http bool
    When set to true, FTP-over-HTTP traffic is inspected for malware.
    inspect_http bool
    When set to true, HTTP traffic is inspected for malware.
    inspectFtp Boolean
    When set to true, native FTP traffic is inspected for malware.
    inspectFtpOverHttp Boolean
    When set to true, FTP-over-HTTP traffic is inspected for malware.
    inspectHttp Boolean
    When set to true, HTTP traffic is inspected for malware.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AtpMalwareProtocols 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 protocols.
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceId string
    The internal resource identifier for the ATP malware protocols.
    id String
    The provider-assigned unique ID for this managed resource.
    resourceId String
    The internal resource identifier for the ATP malware protocols.
    id string
    The provider-assigned unique ID for this managed resource.
    resourceId string
    The internal resource identifier for the ATP malware protocols.
    id str
    The provider-assigned unique ID for this managed resource.
    resource_id str
    The internal resource identifier for the ATP malware protocols.
    id String
    The provider-assigned unique ID for this managed resource.
    resourceId String
    The internal resource identifier for the ATP malware protocols.

    Import

    This is a singleton resource and does not support traditional import. It is automatically managed by the provider.

    To learn more about importing existing cloud resources, see Importing resources.

    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.