1. Registry
  2. Packages
  3. Fortimanager Provider
  4. API Docs
  5. ObjectAntivirusProfileWebsocket
Viewing docs for fortimanager 1.18.0
published on Friday, Jul 31, 2026 by fortinetdev
Viewing docs for fortimanager 1.18.0
published on Friday, Jul 31, 2026 by fortinetdev

    Configure WEBSOCKET AntiVirus options.

    This resource is a sub resource for variable websocket of resource fortimanager.ObjectAntivirusProfile. Conflict and overwrite may occur if use both of them.

    Create ObjectAntivirusProfileWebsocket Resource

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

    Constructor syntax

    new ObjectAntivirusProfileWebsocket(name: string, args: ObjectAntivirusProfileWebsocketArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectAntivirusProfileWebsocket(resource_name: str,
                                        args: ObjectAntivirusProfileWebsocketInitArgs,
                                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectAntivirusProfileWebsocket(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        profile: Optional[str] = None,
                                        fortindr: Optional[str] = None,
                                        archive_logs: Optional[Sequence[str]] = None,
                                        av_scan: Optional[str] = None,
                                        emulator: Optional[str] = None,
                                        external_blocklist: Optional[str] = None,
                                        adom: Optional[str] = None,
                                        fortisandbox: Optional[str] = None,
                                        malware_stream: Optional[str] = None,
                                        object_antivirus_profile_websocket_id: Optional[str] = None,
                                        outbreak_prevention: Optional[str] = None,
                                        archive_blocks: Optional[Sequence[str]] = None,
                                        quarantine: Optional[str] = None,
                                        scopetype: Optional[str] = None)
    func NewObjectAntivirusProfileWebsocket(ctx *Context, name string, args ObjectAntivirusProfileWebsocketArgs, opts ...ResourceOption) (*ObjectAntivirusProfileWebsocket, error)
    public ObjectAntivirusProfileWebsocket(string name, ObjectAntivirusProfileWebsocketArgs args, CustomResourceOptions? opts = null)
    public ObjectAntivirusProfileWebsocket(String name, ObjectAntivirusProfileWebsocketArgs args)
    public ObjectAntivirusProfileWebsocket(String name, ObjectAntivirusProfileWebsocketArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectAntivirusProfileWebsocket
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "fortimanager_object_antivirus_profile_websocket" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args ObjectAntivirusProfileWebsocketArgs
    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 ObjectAntivirusProfileWebsocketInitArgs
    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 ObjectAntivirusProfileWebsocketArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectAntivirusProfileWebsocketArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectAntivirusProfileWebsocketArgs
    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 objectAntivirusProfileWebsocketResource = new Fortimanager.ObjectAntivirusProfileWebsocket("objectAntivirusProfileWebsocketResource", new()
    {
        Profile = "string",
        Fortindr = "string",
        ArchiveLogs = new[]
        {
            "string",
        },
        AvScan = "string",
        Emulator = "string",
        ExternalBlocklist = "string",
        Adom = "string",
        Fortisandbox = "string",
        MalwareStream = "string",
        ObjectAntivirusProfileWebsocketId = "string",
        OutbreakPrevention = "string",
        ArchiveBlocks = new[]
        {
            "string",
        },
        Quarantine = "string",
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectAntivirusProfileWebsocket(ctx, "objectAntivirusProfileWebsocketResource", &fortimanager.ObjectAntivirusProfileWebsocketArgs{
    	Profile:  pulumi.String("string"),
    	Fortindr: pulumi.String("string"),
    	ArchiveLogs: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	AvScan:                            pulumi.String("string"),
    	Emulator:                          pulumi.String("string"),
    	ExternalBlocklist:                 pulumi.String("string"),
    	Adom:                              pulumi.String("string"),
    	Fortisandbox:                      pulumi.String("string"),
    	MalwareStream:                     pulumi.String("string"),
    	ObjectAntivirusProfileWebsocketId: pulumi.String("string"),
    	OutbreakPrevention:                pulumi.String("string"),
    	ArchiveBlocks: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Quarantine: pulumi.String("string"),
    	Scopetype:  pulumi.String("string"),
    })
    
    resource "fortimanager_object_antivirus_profile_websocket" "objectAntivirusProfileWebsocketResource" {
      lifecycle {
        create_before_destroy = true
      }
      profile                               = "string"
      fortindr                              = "string"
      archive_logs                          = ["string"]
      av_scan                               = "string"
      emulator                              = "string"
      external_blocklist                    = "string"
      adom                                  = "string"
      fortisandbox                          = "string"
      malware_stream                        = "string"
      object_antivirus_profile_websocket_id = "string"
      outbreak_prevention                   = "string"
      archive_blocks                        = ["string"]
      quarantine                            = "string"
      scopetype                             = "string"
    }
    
    var objectAntivirusProfileWebsocketResource = new ObjectAntivirusProfileWebsocket("objectAntivirusProfileWebsocketResource", ObjectAntivirusProfileWebsocketArgs.builder()
        .profile("string")
        .fortindr("string")
        .archiveLogs("string")
        .avScan("string")
        .emulator("string")
        .externalBlocklist("string")
        .adom("string")
        .fortisandbox("string")
        .malwareStream("string")
        .objectAntivirusProfileWebsocketId("string")
        .outbreakPrevention("string")
        .archiveBlocks("string")
        .quarantine("string")
        .scopetype("string")
        .build());
    
    object_antivirus_profile_websocket_resource = fortimanager.ObjectAntivirusProfileWebsocket("objectAntivirusProfileWebsocketResource",
        profile="string",
        fortindr="string",
        archive_logs=["string"],
        av_scan="string",
        emulator="string",
        external_blocklist="string",
        adom="string",
        fortisandbox="string",
        malware_stream="string",
        object_antivirus_profile_websocket_id="string",
        outbreak_prevention="string",
        archive_blocks=["string"],
        quarantine="string",
        scopetype="string")
    
    const objectAntivirusProfileWebsocketResource = new fortimanager.ObjectAntivirusProfileWebsocket("objectAntivirusProfileWebsocketResource", {
        profile: "string",
        fortindr: "string",
        archiveLogs: ["string"],
        avScan: "string",
        emulator: "string",
        externalBlocklist: "string",
        adom: "string",
        fortisandbox: "string",
        malwareStream: "string",
        objectAntivirusProfileWebsocketId: "string",
        outbreakPrevention: "string",
        archiveBlocks: ["string"],
        quarantine: "string",
        scopetype: "string",
    });
    
    type: fortimanager:ObjectAntivirusProfileWebsocket
    properties:
        adom: string
        archiveBlocks:
            - string
        archiveLogs:
            - string
        avScan: string
        emulator: string
        externalBlocklist: string
        fortindr: string
        fortisandbox: string
        malwareStream: string
        objectAntivirusProfileWebsocketId: string
        outbreakPrevention: string
        profile: string
        quarantine: string
        scopetype: string
    

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

    Profile string
    Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ArchiveBlocks List<string>
    Select the archive types to block. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    ArchiveLogs List<string>
    Select the archive types to log. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    AvScan string
    Enable/disable AntiVirus scan service. Valid values: disable, monitor, block.
    Emulator string
    Enable/disable the virus emulator. Valid values: disable, enable.
    ExternalBlocklist string
    Enable/disable external-blocklist. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    Fortindr string
    Enable/disable scanning of files by FortiNDR. Valid values: disable, monitor, block.
    Fortisandbox string
    Enable/disable scanning of files by FortiSandbox. Valid values: disable, monitor, block.
    MalwareStream string
    Enable/disable 0-day malware-stream scanning. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    ObjectAntivirusProfileWebsocketId string
    an identifier for the resource.
    OutbreakPrevention string
    Enable/disable virus outbreak prevention service. Valid values: disable, monitor, block.
    Quarantine string
    Enable/disable quarantine for infected files. Valid values: disable, enable.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Profile string
    Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ArchiveBlocks []string
    Select the archive types to block. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    ArchiveLogs []string
    Select the archive types to log. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    AvScan string
    Enable/disable AntiVirus scan service. Valid values: disable, monitor, block.
    Emulator string
    Enable/disable the virus emulator. Valid values: disable, enable.
    ExternalBlocklist string
    Enable/disable external-blocklist. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    Fortindr string
    Enable/disable scanning of files by FortiNDR. Valid values: disable, monitor, block.
    Fortisandbox string
    Enable/disable scanning of files by FortiSandbox. Valid values: disable, monitor, block.
    MalwareStream string
    Enable/disable 0-day malware-stream scanning. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    ObjectAntivirusProfileWebsocketId string
    an identifier for the resource.
    OutbreakPrevention string
    Enable/disable virus outbreak prevention service. Valid values: disable, monitor, block.
    Quarantine string
    Enable/disable quarantine for infected files. Valid values: disable, enable.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    profile string
    Profile.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    archive_blocks list(string)
    Select the archive types to block. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    archive_logs list(string)
    Select the archive types to log. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    av_scan string
    Enable/disable AntiVirus scan service. Valid values: disable, monitor, block.
    emulator string
    Enable/disable the virus emulator. Valid values: disable, enable.
    external_blocklist string
    Enable/disable external-blocklist. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    fortindr string
    Enable/disable scanning of files by FortiNDR. Valid values: disable, monitor, block.
    fortisandbox string
    Enable/disable scanning of files by FortiSandbox. Valid values: disable, monitor, block.
    malware_stream string
    Enable/disable 0-day malware-stream scanning. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    object_antivirus_profile_websocket_id string
    an identifier for the resource.
    outbreak_prevention string
    Enable/disable virus outbreak prevention service. Valid values: disable, monitor, block.
    quarantine string
    Enable/disable quarantine for infected files. Valid values: disable, enable.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    profile String
    Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    archiveBlocks List<String>
    Select the archive types to block. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    archiveLogs List<String>
    Select the archive types to log. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    avScan String
    Enable/disable AntiVirus scan service. Valid values: disable, monitor, block.
    emulator String
    Enable/disable the virus emulator. Valid values: disable, enable.
    externalBlocklist String
    Enable/disable external-blocklist. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    fortindr String
    Enable/disable scanning of files by FortiNDR. Valid values: disable, monitor, block.
    fortisandbox String
    Enable/disable scanning of files by FortiSandbox. Valid values: disable, monitor, block.
    malwareStream String
    Enable/disable 0-day malware-stream scanning. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    objectAntivirusProfileWebsocketId String
    an identifier for the resource.
    outbreakPrevention String
    Enable/disable virus outbreak prevention service. Valid values: disable, monitor, block.
    quarantine String
    Enable/disable quarantine for infected files. Valid values: disable, enable.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    profile string
    Profile.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    archiveBlocks string[]
    Select the archive types to block. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    archiveLogs string[]
    Select the archive types to log. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    avScan string
    Enable/disable AntiVirus scan service. Valid values: disable, monitor, block.
    emulator string
    Enable/disable the virus emulator. Valid values: disable, enable.
    externalBlocklist string
    Enable/disable external-blocklist. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    fortindr string
    Enable/disable scanning of files by FortiNDR. Valid values: disable, monitor, block.
    fortisandbox string
    Enable/disable scanning of files by FortiSandbox. Valid values: disable, monitor, block.
    malwareStream string
    Enable/disable 0-day malware-stream scanning. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    objectAntivirusProfileWebsocketId string
    an identifier for the resource.
    outbreakPrevention string
    Enable/disable virus outbreak prevention service. Valid values: disable, monitor, block.
    quarantine string
    Enable/disable quarantine for infected files. Valid values: disable, enable.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    profile str
    Profile.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    archive_blocks Sequence[str]
    Select the archive types to block. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    archive_logs Sequence[str]
    Select the archive types to log. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    av_scan str
    Enable/disable AntiVirus scan service. Valid values: disable, monitor, block.
    emulator str
    Enable/disable the virus emulator. Valid values: disable, enable.
    external_blocklist str
    Enable/disable external-blocklist. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    fortindr str
    Enable/disable scanning of files by FortiNDR. Valid values: disable, monitor, block.
    fortisandbox str
    Enable/disable scanning of files by FortiSandbox. Valid values: disable, monitor, block.
    malware_stream str
    Enable/disable 0-day malware-stream scanning. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    object_antivirus_profile_websocket_id str
    an identifier for the resource.
    outbreak_prevention str
    Enable/disable virus outbreak prevention service. Valid values: disable, monitor, block.
    quarantine str
    Enable/disable quarantine for infected files. Valid values: disable, enable.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    profile String
    Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    archiveBlocks List<String>
    Select the archive types to block. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    archiveLogs List<String>
    Select the archive types to log. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    avScan String
    Enable/disable AntiVirus scan service. Valid values: disable, monitor, block.
    emulator String
    Enable/disable the virus emulator. Valid values: disable, enable.
    externalBlocklist String
    Enable/disable external-blocklist. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    fortindr String
    Enable/disable scanning of files by FortiNDR. Valid values: disable, monitor, block.
    fortisandbox String
    Enable/disable scanning of files by FortiSandbox. Valid values: disable, monitor, block.
    malwareStream String
    Enable/disable 0-day malware-stream scanning. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    objectAntivirusProfileWebsocketId String
    an identifier for the resource.
    outbreakPrevention String
    Enable/disable virus outbreak prevention service. Valid values: disable, monitor, block.
    quarantine String
    Enable/disable quarantine for infected files. Valid values: disable, enable.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ObjectAntivirusProfileWebsocket 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 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 ObjectAntivirusProfileWebsocket Resource

    Get an existing ObjectAntivirusProfileWebsocket 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?: ObjectAntivirusProfileWebsocketState, opts?: CustomResourceOptions): ObjectAntivirusProfileWebsocket
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            archive_blocks: Optional[Sequence[str]] = None,
            archive_logs: Optional[Sequence[str]] = None,
            av_scan: Optional[str] = None,
            emulator: Optional[str] = None,
            external_blocklist: Optional[str] = None,
            fortindr: Optional[str] = None,
            fortisandbox: Optional[str] = None,
            malware_stream: Optional[str] = None,
            object_antivirus_profile_websocket_id: Optional[str] = None,
            outbreak_prevention: Optional[str] = None,
            profile: Optional[str] = None,
            quarantine: Optional[str] = None,
            scopetype: Optional[str] = None) -> ObjectAntivirusProfileWebsocket
    func GetObjectAntivirusProfileWebsocket(ctx *Context, name string, id IDInput, state *ObjectAntivirusProfileWebsocketState, opts ...ResourceOption) (*ObjectAntivirusProfileWebsocket, error)
    public static ObjectAntivirusProfileWebsocket Get(string name, Input<string> id, ObjectAntivirusProfileWebsocketState? state, CustomResourceOptions? opts = null)
    public static ObjectAntivirusProfileWebsocket get(String name, Output<String> id, ObjectAntivirusProfileWebsocketState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectAntivirusProfileWebsocket    get:      id: ${id}
    import {
      to = fortimanager_object_antivirus_profile_websocket.example
      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.
    The following state arguments are supported:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ArchiveBlocks List<string>
    Select the archive types to block. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    ArchiveLogs List<string>
    Select the archive types to log. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    AvScan string
    Enable/disable AntiVirus scan service. Valid values: disable, monitor, block.
    Emulator string
    Enable/disable the virus emulator. Valid values: disable, enable.
    ExternalBlocklist string
    Enable/disable external-blocklist. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    Fortindr string
    Enable/disable scanning of files by FortiNDR. Valid values: disable, monitor, block.
    Fortisandbox string
    Enable/disable scanning of files by FortiSandbox. Valid values: disable, monitor, block.
    MalwareStream string
    Enable/disable 0-day malware-stream scanning. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    ObjectAntivirusProfileWebsocketId string
    an identifier for the resource.
    OutbreakPrevention string
    Enable/disable virus outbreak prevention service. Valid values: disable, monitor, block.
    Profile string
    Profile.
    Quarantine string
    Enable/disable quarantine for infected files. Valid values: disable, enable.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ArchiveBlocks []string
    Select the archive types to block. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    ArchiveLogs []string
    Select the archive types to log. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    AvScan string
    Enable/disable AntiVirus scan service. Valid values: disable, monitor, block.
    Emulator string
    Enable/disable the virus emulator. Valid values: disable, enable.
    ExternalBlocklist string
    Enable/disable external-blocklist. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    Fortindr string
    Enable/disable scanning of files by FortiNDR. Valid values: disable, monitor, block.
    Fortisandbox string
    Enable/disable scanning of files by FortiSandbox. Valid values: disable, monitor, block.
    MalwareStream string
    Enable/disable 0-day malware-stream scanning. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    ObjectAntivirusProfileWebsocketId string
    an identifier for the resource.
    OutbreakPrevention string
    Enable/disable virus outbreak prevention service. Valid values: disable, monitor, block.
    Profile string
    Profile.
    Quarantine string
    Enable/disable quarantine for infected files. Valid values: disable, enable.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    archive_blocks list(string)
    Select the archive types to block. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    archive_logs list(string)
    Select the archive types to log. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    av_scan string
    Enable/disable AntiVirus scan service. Valid values: disable, monitor, block.
    emulator string
    Enable/disable the virus emulator. Valid values: disable, enable.
    external_blocklist string
    Enable/disable external-blocklist. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    fortindr string
    Enable/disable scanning of files by FortiNDR. Valid values: disable, monitor, block.
    fortisandbox string
    Enable/disable scanning of files by FortiSandbox. Valid values: disable, monitor, block.
    malware_stream string
    Enable/disable 0-day malware-stream scanning. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    object_antivirus_profile_websocket_id string
    an identifier for the resource.
    outbreak_prevention string
    Enable/disable virus outbreak prevention service. Valid values: disable, monitor, block.
    profile string
    Profile.
    quarantine string
    Enable/disable quarantine for infected files. Valid values: disable, enable.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    archiveBlocks List<String>
    Select the archive types to block. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    archiveLogs List<String>
    Select the archive types to log. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    avScan String
    Enable/disable AntiVirus scan service. Valid values: disable, monitor, block.
    emulator String
    Enable/disable the virus emulator. Valid values: disable, enable.
    externalBlocklist String
    Enable/disable external-blocklist. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    fortindr String
    Enable/disable scanning of files by FortiNDR. Valid values: disable, monitor, block.
    fortisandbox String
    Enable/disable scanning of files by FortiSandbox. Valid values: disable, monitor, block.
    malwareStream String
    Enable/disable 0-day malware-stream scanning. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    objectAntivirusProfileWebsocketId String
    an identifier for the resource.
    outbreakPrevention String
    Enable/disable virus outbreak prevention service. Valid values: disable, monitor, block.
    profile String
    Profile.
    quarantine String
    Enable/disable quarantine for infected files. Valid values: disable, enable.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    archiveBlocks string[]
    Select the archive types to block. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    archiveLogs string[]
    Select the archive types to log. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    avScan string
    Enable/disable AntiVirus scan service. Valid values: disable, monitor, block.
    emulator string
    Enable/disable the virus emulator. Valid values: disable, enable.
    externalBlocklist string
    Enable/disable external-blocklist. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    fortindr string
    Enable/disable scanning of files by FortiNDR. Valid values: disable, monitor, block.
    fortisandbox string
    Enable/disable scanning of files by FortiSandbox. Valid values: disable, monitor, block.
    malwareStream string
    Enable/disable 0-day malware-stream scanning. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    objectAntivirusProfileWebsocketId string
    an identifier for the resource.
    outbreakPrevention string
    Enable/disable virus outbreak prevention service. Valid values: disable, monitor, block.
    profile string
    Profile.
    quarantine string
    Enable/disable quarantine for infected files. Valid values: disable, enable.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    archive_blocks Sequence[str]
    Select the archive types to block. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    archive_logs Sequence[str]
    Select the archive types to log. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    av_scan str
    Enable/disable AntiVirus scan service. Valid values: disable, monitor, block.
    emulator str
    Enable/disable the virus emulator. Valid values: disable, enable.
    external_blocklist str
    Enable/disable external-blocklist. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    fortindr str
    Enable/disable scanning of files by FortiNDR. Valid values: disable, monitor, block.
    fortisandbox str
    Enable/disable scanning of files by FortiSandbox. Valid values: disable, monitor, block.
    malware_stream str
    Enable/disable 0-day malware-stream scanning. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    object_antivirus_profile_websocket_id str
    an identifier for the resource.
    outbreak_prevention str
    Enable/disable virus outbreak prevention service. Valid values: disable, monitor, block.
    profile str
    Profile.
    quarantine str
    Enable/disable quarantine for infected files. Valid values: disable, enable.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    archiveBlocks List<String>
    Select the archive types to block. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    archiveLogs List<String>
    Select the archive types to log. Valid values: encrypted, corrupted, multipart, nested, mailbomb, unhandled, partiallycorrupted, timeout.
    avScan String
    Enable/disable AntiVirus scan service. Valid values: disable, monitor, block.
    emulator String
    Enable/disable the virus emulator. Valid values: disable, enable.
    externalBlocklist String
    Enable/disable external-blocklist. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    fortindr String
    Enable/disable scanning of files by FortiNDR. Valid values: disable, monitor, block.
    fortisandbox String
    Enable/disable scanning of files by FortiSandbox. Valid values: disable, monitor, block.
    malwareStream String
    Enable/disable 0-day malware-stream scanning. Analyzes files including the content of archives. Valid values: disable, monitor, block.
    objectAntivirusProfileWebsocketId String
    an identifier for the resource.
    outbreakPrevention String
    Enable/disable virus outbreak prevention service. Valid values: disable, monitor, block.
    profile String
    Profile.
    quarantine String
    Enable/disable quarantine for infected files. Valid values: disable, enable.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.

    Import

    ObjectAntivirus ProfileWebsocket can be imported using any of these accepted formats:

    Set import_options = [“profile=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectAntivirusProfileWebsocket:ObjectAntivirusProfileWebsocket labelname ObjectAntivirusProfileWebsocket
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

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

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    Viewing docs for fortimanager 1.18.0
    published on Friday, Jul 31, 2026 by fortinetdev

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial