fortimanager.ObjectFirewallProfileprotocoloptionsMapi
Explore with Pulumi AI
Configure MAPI protocol options.
This resource is a sub resource for variable
mapi
of resourcefortimanager.ObjectFirewallProfileprotocoloptions
. Conflict and overwrite may occur if use both of them.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trnameObjectFirewallProfileprotocoloptions = new fortimanager.ObjectFirewallProfileprotocoloptions("trnameObjectFirewallProfileprotocoloptions", {});
const trnameObjectFirewallProfileprotocoloptionsMapi = new fortimanager.ObjectFirewallProfileprotocoloptionsMapi("trnameObjectFirewallProfileprotocoloptionsMapi", {
profileProtocolOptions: trnameObjectFirewallProfileprotocoloptions.name,
options: ["fragmail"],
oversizeLimit: 200,
ports: [
123,
124,
],
}, {
dependsOn: [trnameObjectFirewallProfileprotocoloptions],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_firewall_profileprotocoloptions = fortimanager.ObjectFirewallProfileprotocoloptions("trnameObjectFirewallProfileprotocoloptions")
trname_object_firewall_profileprotocoloptions_mapi = fortimanager.ObjectFirewallProfileprotocoloptionsMapi("trnameObjectFirewallProfileprotocoloptionsMapi",
profile_protocol_options=trname_object_firewall_profileprotocoloptions.name,
options=["fragmail"],
oversize_limit=200,
ports=[
123,
124,
],
opts = pulumi.ResourceOptions(depends_on=[trname_object_firewall_profileprotocoloptions]))
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
trnameObjectFirewallProfileprotocoloptions, err := fortimanager.NewObjectFirewallProfileprotocoloptions(ctx, "trnameObjectFirewallProfileprotocoloptions", nil)
if err != nil {
return err
}
_, err = fortimanager.NewObjectFirewallProfileprotocoloptionsMapi(ctx, "trnameObjectFirewallProfileprotocoloptionsMapi", &fortimanager.ObjectFirewallProfileprotocoloptionsMapiArgs{
ProfileProtocolOptions: trnameObjectFirewallProfileprotocoloptions.Name,
Options: pulumi.StringArray{
pulumi.String("fragmail"),
},
OversizeLimit: pulumi.Float64(200),
Ports: pulumi.Float64Array{
pulumi.Float64(123),
pulumi.Float64(124),
},
}, pulumi.DependsOn([]pulumi.Resource{
trnameObjectFirewallProfileprotocoloptions,
}))
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trnameObjectFirewallProfileprotocoloptions = new Fortimanager.ObjectFirewallProfileprotocoloptions("trnameObjectFirewallProfileprotocoloptions");
var trnameObjectFirewallProfileprotocoloptionsMapi = new Fortimanager.ObjectFirewallProfileprotocoloptionsMapi("trnameObjectFirewallProfileprotocoloptionsMapi", new()
{
ProfileProtocolOptions = trnameObjectFirewallProfileprotocoloptions.Name,
Options = new[]
{
"fragmail",
},
OversizeLimit = 200,
Ports = new[]
{
123,
124,
},
}, new CustomResourceOptions
{
DependsOn =
{
trnameObjectFirewallProfileprotocoloptions,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectFirewallProfileprotocoloptions;
import com.pulumi.fortimanager.ObjectFirewallProfileprotocoloptionsMapi;
import com.pulumi.fortimanager.ObjectFirewallProfileprotocoloptionsMapiArgs;
import com.pulumi.resources.CustomResourceOptions;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var trnameObjectFirewallProfileprotocoloptions = new ObjectFirewallProfileprotocoloptions("trnameObjectFirewallProfileprotocoloptions");
var trnameObjectFirewallProfileprotocoloptionsMapi = new ObjectFirewallProfileprotocoloptionsMapi("trnameObjectFirewallProfileprotocoloptionsMapi", ObjectFirewallProfileprotocoloptionsMapiArgs.builder()
.profileProtocolOptions(trnameObjectFirewallProfileprotocoloptions.name())
.options("fragmail")
.oversizeLimit(200)
.ports(
123,
124)
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectFirewallProfileprotocoloptions)
.build());
}
}
resources:
trnameObjectFirewallProfileprotocoloptionsMapi:
type: fortimanager:ObjectFirewallProfileprotocoloptionsMapi
properties:
profileProtocolOptions: ${trnameObjectFirewallProfileprotocoloptions.name}
options:
- fragmail
oversizeLimit: 200
ports:
- 123
- 124
options:
dependsOn:
- ${trnameObjectFirewallProfileprotocoloptions}
trnameObjectFirewallProfileprotocoloptions:
type: fortimanager:ObjectFirewallProfileprotocoloptions
Create ObjectFirewallProfileprotocoloptionsMapi Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectFirewallProfileprotocoloptionsMapi(name: string, args: ObjectFirewallProfileprotocoloptionsMapiArgs, opts?: CustomResourceOptions);
@overload
def ObjectFirewallProfileprotocoloptionsMapi(resource_name: str,
args: ObjectFirewallProfileprotocoloptionsMapiInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectFirewallProfileprotocoloptionsMapi(resource_name: str,
opts: Optional[ResourceOptions] = None,
profile_protocol_options: Optional[str] = None,
adom: Optional[str] = None,
object_firewall_profileprotocoloptions_mapi_id: Optional[str] = None,
options: Optional[Sequence[str]] = None,
oversize_limit: Optional[float] = None,
ports: Optional[Sequence[float]] = None,
scan_bzip2: Optional[str] = None,
scopetype: Optional[str] = None,
status: Optional[str] = None,
uncompressed_nest_limit: Optional[float] = None,
uncompressed_oversize_limit: Optional[float] = None)
func NewObjectFirewallProfileprotocoloptionsMapi(ctx *Context, name string, args ObjectFirewallProfileprotocoloptionsMapiArgs, opts ...ResourceOption) (*ObjectFirewallProfileprotocoloptionsMapi, error)
public ObjectFirewallProfileprotocoloptionsMapi(string name, ObjectFirewallProfileprotocoloptionsMapiArgs args, CustomResourceOptions? opts = null)
public ObjectFirewallProfileprotocoloptionsMapi(String name, ObjectFirewallProfileprotocoloptionsMapiArgs args)
public ObjectFirewallProfileprotocoloptionsMapi(String name, ObjectFirewallProfileprotocoloptionsMapiArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallProfileprotocoloptionsMapi
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 ObjectFirewallProfileprotocoloptionsMapiArgs
- 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 ObjectFirewallProfileprotocoloptionsMapiInitArgs
- 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 ObjectFirewallProfileprotocoloptionsMapiArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFirewallProfileprotocoloptionsMapiArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectFirewallProfileprotocoloptionsMapiArgs
- 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 objectFirewallProfileprotocoloptionsMapiResource = new Fortimanager.ObjectFirewallProfileprotocoloptionsMapi("objectFirewallProfileprotocoloptionsMapiResource", new()
{
ProfileProtocolOptions = "string",
Adom = "string",
ObjectFirewallProfileprotocoloptionsMapiId = "string",
Options = new[]
{
"string",
},
OversizeLimit = 0,
Ports = new[]
{
0,
},
ScanBzip2 = "string",
Scopetype = "string",
Status = "string",
UncompressedNestLimit = 0,
UncompressedOversizeLimit = 0,
});
example, err := fortimanager.NewObjectFirewallProfileprotocoloptionsMapi(ctx, "objectFirewallProfileprotocoloptionsMapiResource", &fortimanager.ObjectFirewallProfileprotocoloptionsMapiArgs{
ProfileProtocolOptions: pulumi.String("string"),
Adom: pulumi.String("string"),
ObjectFirewallProfileprotocoloptionsMapiId: pulumi.String("string"),
Options: pulumi.StringArray{
pulumi.String("string"),
},
OversizeLimit: pulumi.Float64(0),
Ports: pulumi.Float64Array{
pulumi.Float64(0),
},
ScanBzip2: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Status: pulumi.String("string"),
UncompressedNestLimit: pulumi.Float64(0),
UncompressedOversizeLimit: pulumi.Float64(0),
})
var objectFirewallProfileprotocoloptionsMapiResource = new ObjectFirewallProfileprotocoloptionsMapi("objectFirewallProfileprotocoloptionsMapiResource", ObjectFirewallProfileprotocoloptionsMapiArgs.builder()
.profileProtocolOptions("string")
.adom("string")
.objectFirewallProfileprotocoloptionsMapiId("string")
.options("string")
.oversizeLimit(0)
.ports(0)
.scanBzip2("string")
.scopetype("string")
.status("string")
.uncompressedNestLimit(0)
.uncompressedOversizeLimit(0)
.build());
object_firewall_profileprotocoloptions_mapi_resource = fortimanager.ObjectFirewallProfileprotocoloptionsMapi("objectFirewallProfileprotocoloptionsMapiResource",
profile_protocol_options="string",
adom="string",
object_firewall_profileprotocoloptions_mapi_id="string",
options=["string"],
oversize_limit=0,
ports=[0],
scan_bzip2="string",
scopetype="string",
status="string",
uncompressed_nest_limit=0,
uncompressed_oversize_limit=0)
const objectFirewallProfileprotocoloptionsMapiResource = new fortimanager.ObjectFirewallProfileprotocoloptionsMapi("objectFirewallProfileprotocoloptionsMapiResource", {
profileProtocolOptions: "string",
adom: "string",
objectFirewallProfileprotocoloptionsMapiId: "string",
options: ["string"],
oversizeLimit: 0,
ports: [0],
scanBzip2: "string",
scopetype: "string",
status: "string",
uncompressedNestLimit: 0,
uncompressedOversizeLimit: 0,
});
type: fortimanager:ObjectFirewallProfileprotocoloptionsMapi
properties:
adom: string
objectFirewallProfileprotocoloptionsMapiId: string
options:
- string
oversizeLimit: 0
ports:
- 0
profileProtocolOptions: string
scanBzip2: string
scopetype: string
status: string
uncompressedNestLimit: 0
uncompressedOversizeLimit: 0
ObjectFirewallProfileprotocoloptionsMapi 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 ObjectFirewallProfileprotocoloptionsMapi resource accepts the following input properties:
- Profile
Protocol stringOptions - Profile Protocol Options.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Object
Firewall stringProfileprotocoloptions Mapi Id - an identifier for the resource.
- Options List<string>
- One or more options that can be applied to the session. Valid values:
fragmail
,oversize
,no-content-summary
. - Oversize
Limit double - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- Ports List<double>
- Ports to scan for content (1 - 65535, default = 135).
- Scan
Bzip2 string - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Status string
- Enable/disable the active status of scanning for this protocol. Valid values:
disable
,enable
. - Uncompressed
Nest doubleLimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- Uncompressed
Oversize doubleLimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- Profile
Protocol stringOptions - Profile Protocol Options.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Object
Firewall stringProfileprotocoloptions Mapi Id - an identifier for the resource.
- Options []string
- One or more options that can be applied to the session. Valid values:
fragmail
,oversize
,no-content-summary
. - Oversize
Limit float64 - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- Ports []float64
- Ports to scan for content (1 - 65535, default = 135).
- Scan
Bzip2 string - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Status string
- Enable/disable the active status of scanning for this protocol. Valid values:
disable
,enable
. - Uncompressed
Nest float64Limit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- Uncompressed
Oversize float64Limit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- profile
Protocol StringOptions - Profile Protocol Options.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - object
Firewall StringProfileprotocoloptions Mapi Id - an identifier for the resource.
- options List<String>
- One or more options that can be applied to the session. Valid values:
fragmail
,oversize
,no-content-summary
. - oversize
Limit Double - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- ports List<Double>
- Ports to scan for content (1 - 65535, default = 135).
- scan
Bzip2 String - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status String
- Enable/disable the active status of scanning for this protocol. Valid values:
disable
,enable
. - uncompressed
Nest DoubleLimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- uncompressed
Oversize DoubleLimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- profile
Protocol stringOptions - Profile Protocol Options.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - object
Firewall stringProfileprotocoloptions Mapi Id - an identifier for the resource.
- options string[]
- One or more options that can be applied to the session. Valid values:
fragmail
,oversize
,no-content-summary
. - oversize
Limit number - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- ports number[]
- Ports to scan for content (1 - 65535, default = 135).
- scan
Bzip2 string - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status string
- Enable/disable the active status of scanning for this protocol. Valid values:
disable
,enable
. - uncompressed
Nest numberLimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- uncompressed
Oversize numberLimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- profile_
protocol_ stroptions - Profile Protocol Options.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - object_
firewall_ strprofileprotocoloptions_ mapi_ id - an identifier for the resource.
- options Sequence[str]
- One or more options that can be applied to the session. Valid values:
fragmail
,oversize
,no-content-summary
. - oversize_
limit float - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- ports Sequence[float]
- Ports to scan for content (1 - 65535, default = 135).
- scan_
bzip2 str - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status str
- Enable/disable the active status of scanning for this protocol. Valid values:
disable
,enable
. - uncompressed_
nest_ floatlimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- uncompressed_
oversize_ floatlimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- profile
Protocol StringOptions - Profile Protocol Options.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - object
Firewall StringProfileprotocoloptions Mapi Id - an identifier for the resource.
- options List<String>
- One or more options that can be applied to the session. Valid values:
fragmail
,oversize
,no-content-summary
. - oversize
Limit Number - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- ports List<Number>
- Ports to scan for content (1 - 65535, default = 135).
- scan
Bzip2 String - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status String
- Enable/disable the active status of scanning for this protocol. Valid values:
disable
,enable
. - uncompressed
Nest NumberLimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- uncompressed
Oversize NumberLimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectFirewallProfileprotocoloptionsMapi 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 ObjectFirewallProfileprotocoloptionsMapi Resource
Get an existing ObjectFirewallProfileprotocoloptionsMapi 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?: ObjectFirewallProfileprotocoloptionsMapiState, opts?: CustomResourceOptions): ObjectFirewallProfileprotocoloptionsMapi
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
object_firewall_profileprotocoloptions_mapi_id: Optional[str] = None,
options: Optional[Sequence[str]] = None,
oversize_limit: Optional[float] = None,
ports: Optional[Sequence[float]] = None,
profile_protocol_options: Optional[str] = None,
scan_bzip2: Optional[str] = None,
scopetype: Optional[str] = None,
status: Optional[str] = None,
uncompressed_nest_limit: Optional[float] = None,
uncompressed_oversize_limit: Optional[float] = None) -> ObjectFirewallProfileprotocoloptionsMapi
func GetObjectFirewallProfileprotocoloptionsMapi(ctx *Context, name string, id IDInput, state *ObjectFirewallProfileprotocoloptionsMapiState, opts ...ResourceOption) (*ObjectFirewallProfileprotocoloptionsMapi, error)
public static ObjectFirewallProfileprotocoloptionsMapi Get(string name, Input<string> id, ObjectFirewallProfileprotocoloptionsMapiState? state, CustomResourceOptions? opts = null)
public static ObjectFirewallProfileprotocoloptionsMapi get(String name, Output<String> id, ObjectFirewallProfileprotocoloptionsMapiState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectFirewallProfileprotocoloptionsMapi 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Object
Firewall stringProfileprotocoloptions Mapi Id - an identifier for the resource.
- Options List<string>
- One or more options that can be applied to the session. Valid values:
fragmail
,oversize
,no-content-summary
. - Oversize
Limit double - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- Ports List<double>
- Ports to scan for content (1 - 65535, default = 135).
- Profile
Protocol stringOptions - Profile Protocol Options.
- Scan
Bzip2 string - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Status string
- Enable/disable the active status of scanning for this protocol. Valid values:
disable
,enable
. - Uncompressed
Nest doubleLimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- Uncompressed
Oversize doubleLimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Object
Firewall stringProfileprotocoloptions Mapi Id - an identifier for the resource.
- Options []string
- One or more options that can be applied to the session. Valid values:
fragmail
,oversize
,no-content-summary
. - Oversize
Limit float64 - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- Ports []float64
- Ports to scan for content (1 - 65535, default = 135).
- Profile
Protocol stringOptions - Profile Protocol Options.
- Scan
Bzip2 string - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Status string
- Enable/disable the active status of scanning for this protocol. Valid values:
disable
,enable
. - Uncompressed
Nest float64Limit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- Uncompressed
Oversize float64Limit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - object
Firewall StringProfileprotocoloptions Mapi Id - an identifier for the resource.
- options List<String>
- One or more options that can be applied to the session. Valid values:
fragmail
,oversize
,no-content-summary
. - oversize
Limit Double - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- ports List<Double>
- Ports to scan for content (1 - 65535, default = 135).
- profile
Protocol StringOptions - Profile Protocol Options.
- scan
Bzip2 String - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status String
- Enable/disable the active status of scanning for this protocol. Valid values:
disable
,enable
. - uncompressed
Nest DoubleLimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- uncompressed
Oversize DoubleLimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - object
Firewall stringProfileprotocoloptions Mapi Id - an identifier for the resource.
- options string[]
- One or more options that can be applied to the session. Valid values:
fragmail
,oversize
,no-content-summary
. - oversize
Limit number - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- ports number[]
- Ports to scan for content (1 - 65535, default = 135).
- profile
Protocol stringOptions - Profile Protocol Options.
- scan
Bzip2 string - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status string
- Enable/disable the active status of scanning for this protocol. Valid values:
disable
,enable
. - uncompressed
Nest numberLimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- uncompressed
Oversize numberLimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - object_
firewall_ strprofileprotocoloptions_ mapi_ id - an identifier for the resource.
- options Sequence[str]
- One or more options that can be applied to the session. Valid values:
fragmail
,oversize
,no-content-summary
. - oversize_
limit float - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- ports Sequence[float]
- Ports to scan for content (1 - 65535, default = 135).
- profile_
protocol_ stroptions - Profile Protocol Options.
- scan_
bzip2 str - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status str
- Enable/disable the active status of scanning for this protocol. Valid values:
disable
,enable
. - uncompressed_
nest_ floatlimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- uncompressed_
oversize_ floatlimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - object
Firewall StringProfileprotocoloptions Mapi Id - an identifier for the resource.
- options List<String>
- One or more options that can be applied to the session. Valid values:
fragmail
,oversize
,no-content-summary
. - oversize
Limit Number - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- ports List<Number>
- Ports to scan for content (1 - 65535, default = 135).
- profile
Protocol StringOptions - Profile Protocol Options.
- scan
Bzip2 String - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status String
- Enable/disable the active status of scanning for this protocol. Valid values:
disable
,enable
. - uncompressed
Nest NumberLimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- uncompressed
Oversize NumberLimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
Import
ObjectFirewall ProfileProtocolOptionsMapi can be imported using any of these accepted formats:
Set import_options = [“profile_protocol_options=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectFirewallProfileprotocoloptionsMapi:ObjectFirewallProfileprotocoloptionsMapi labelname ObjectFirewallProfileProtocolOptionsMapi
$ 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.