1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectFirewallCasbprofile
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectFirewallCasbprofile

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    ObjectFirewall CasbProfile

    The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • saas_application: fortimanager.ObjectFirewallCasbprofileSaasapplication

    Create ObjectFirewallCasbprofile Resource

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

    Constructor syntax

    new ObjectFirewallCasbprofile(name: string, args?: ObjectFirewallCasbprofileArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectFirewallCasbprofile(resource_name: str,
                                  args: Optional[ObjectFirewallCasbprofileArgs] = None,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectFirewallCasbprofile(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  adom: Optional[str] = None,
                                  dynamic_sort_subtable: Optional[str] = None,
                                  name: Optional[str] = None,
                                  object_firewall_casbprofile_id: Optional[str] = None,
                                  saas_applications: Optional[Sequence[ObjectFirewallCasbprofileSaasApplicationArgs]] = None,
                                  scopetype: Optional[str] = None)
    func NewObjectFirewallCasbprofile(ctx *Context, name string, args *ObjectFirewallCasbprofileArgs, opts ...ResourceOption) (*ObjectFirewallCasbprofile, error)
    public ObjectFirewallCasbprofile(string name, ObjectFirewallCasbprofileArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectFirewallCasbprofile(String name, ObjectFirewallCasbprofileArgs args)
    public ObjectFirewallCasbprofile(String name, ObjectFirewallCasbprofileArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectFirewallCasbprofile
    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 ObjectFirewallCasbprofileArgs
    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 ObjectFirewallCasbprofileArgs
    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 ObjectFirewallCasbprofileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectFirewallCasbprofileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectFirewallCasbprofileArgs
    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 objectFirewallCasbprofileResource = new Fortimanager.ObjectFirewallCasbprofile("objectFirewallCasbprofileResource", new()
    {
        Adom = "string",
        DynamicSortSubtable = "string",
        Name = "string",
        ObjectFirewallCasbprofileId = "string",
        SaasApplications = new[]
        {
            new Fortimanager.Inputs.ObjectFirewallCasbprofileSaasApplicationArgs
            {
                AccessRules = new[]
                {
                    new Fortimanager.Inputs.ObjectFirewallCasbprofileSaasApplicationAccessRuleArgs
                    {
                        Action = "string",
                        Bypasses = new[]
                        {
                            "string",
                        },
                        Name = "string",
                    },
                },
                CustomControls = new[]
                {
                    new Fortimanager.Inputs.ObjectFirewallCasbprofileSaasApplicationCustomControlArgs
                    {
                        Name = "string",
                        Options = new[]
                        {
                            new Fortimanager.Inputs.ObjectFirewallCasbprofileSaasApplicationCustomControlOptionArgs
                            {
                                Name = "string",
                                UserInputs = new[]
                                {
                                    "string",
                                },
                            },
                        },
                    },
                },
                DomainControl = "string",
                DomainControlDomains = new[]
                {
                    "string",
                },
                Log = "string",
                Name = "string",
                SafeSearch = "string",
                SafeSearchControls = new[]
                {
                    "string",
                },
                TenantControl = "string",
                TenantControlTenants = new[]
                {
                    "string",
                },
            },
        },
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectFirewallCasbprofile(ctx, "objectFirewallCasbprofileResource", &fortimanager.ObjectFirewallCasbprofileArgs{
    Adom: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    Name: pulumi.String("string"),
    ObjectFirewallCasbprofileId: pulumi.String("string"),
    SaasApplications: .ObjectFirewallCasbprofileSaasApplicationTypeArray{
    &.ObjectFirewallCasbprofileSaasApplicationTypeArgs{
    AccessRules: .ObjectFirewallCasbprofileSaasApplicationAccessRuleTypeArray{
    &.ObjectFirewallCasbprofileSaasApplicationAccessRuleTypeArgs{
    Action: pulumi.String("string"),
    Bypasses: pulumi.StringArray{
    pulumi.String("string"),
    },
    Name: pulumi.String("string"),
    },
    },
    CustomControls: .ObjectFirewallCasbprofileSaasApplicationCustomControlTypeArray{
    &.ObjectFirewallCasbprofileSaasApplicationCustomControlTypeArgs{
    Name: pulumi.String("string"),
    Options: .ObjectFirewallCasbprofileSaasApplicationCustomControlOptionTypeArray{
    &.ObjectFirewallCasbprofileSaasApplicationCustomControlOptionTypeArgs{
    Name: pulumi.String("string"),
    UserInputs: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    },
    },
    DomainControl: pulumi.String("string"),
    DomainControlDomains: pulumi.StringArray{
    pulumi.String("string"),
    },
    Log: pulumi.String("string"),
    Name: pulumi.String("string"),
    SafeSearch: pulumi.String("string"),
    SafeSearchControls: pulumi.StringArray{
    pulumi.String("string"),
    },
    TenantControl: pulumi.String("string"),
    TenantControlTenants: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    Scopetype: pulumi.String("string"),
    })
    
    var objectFirewallCasbprofileResource = new ObjectFirewallCasbprofile("objectFirewallCasbprofileResource", ObjectFirewallCasbprofileArgs.builder()
        .adom("string")
        .dynamicSortSubtable("string")
        .name("string")
        .objectFirewallCasbprofileId("string")
        .saasApplications(ObjectFirewallCasbprofileSaasApplicationArgs.builder()
            .accessRules(ObjectFirewallCasbprofileSaasApplicationAccessRuleArgs.builder()
                .action("string")
                .bypasses("string")
                .name("string")
                .build())
            .customControls(ObjectFirewallCasbprofileSaasApplicationCustomControlArgs.builder()
                .name("string")
                .options(ObjectFirewallCasbprofileSaasApplicationCustomControlOptionArgs.builder()
                    .name("string")
                    .userInputs("string")
                    .build())
                .build())
            .domainControl("string")
            .domainControlDomains("string")
            .log("string")
            .name("string")
            .safeSearch("string")
            .safeSearchControls("string")
            .tenantControl("string")
            .tenantControlTenants("string")
            .build())
        .scopetype("string")
        .build());
    
    object_firewall_casbprofile_resource = fortimanager.ObjectFirewallCasbprofile("objectFirewallCasbprofileResource",
        adom="string",
        dynamic_sort_subtable="string",
        name="string",
        object_firewall_casbprofile_id="string",
        saas_applications=[{
            "access_rules": [{
                "action": "string",
                "bypasses": ["string"],
                "name": "string",
            }],
            "custom_controls": [{
                "name": "string",
                "options": [{
                    "name": "string",
                    "user_inputs": ["string"],
                }],
            }],
            "domain_control": "string",
            "domain_control_domains": ["string"],
            "log": "string",
            "name": "string",
            "safe_search": "string",
            "safe_search_controls": ["string"],
            "tenant_control": "string",
            "tenant_control_tenants": ["string"],
        }],
        scopetype="string")
    
    const objectFirewallCasbprofileResource = new fortimanager.ObjectFirewallCasbprofile("objectFirewallCasbprofileResource", {
        adom: "string",
        dynamicSortSubtable: "string",
        name: "string",
        objectFirewallCasbprofileId: "string",
        saasApplications: [{
            accessRules: [{
                action: "string",
                bypasses: ["string"],
                name: "string",
            }],
            customControls: [{
                name: "string",
                options: [{
                    name: "string",
                    userInputs: ["string"],
                }],
            }],
            domainControl: "string",
            domainControlDomains: ["string"],
            log: "string",
            name: "string",
            safeSearch: "string",
            safeSearchControls: ["string"],
            tenantControl: "string",
            tenantControlTenants: ["string"],
        }],
        scopetype: "string",
    });
    
    type: fortimanager:ObjectFirewallCasbprofile
    properties:
        adom: string
        dynamicSortSubtable: string
        name: string
        objectFirewallCasbprofileId: string
        saasApplications:
            - accessRules:
                - action: string
                  bypasses:
                    - string
                  name: string
              customControls:
                - name: string
                  options:
                    - name: string
                      userInputs:
                        - string
              domainControl: string
              domainControlDomains:
                - string
              log: string
              name: string
              safeSearch: string
              safeSearchControls:
                - string
              tenantControl: string
              tenantControlTenants:
                - string
        scopetype: string
    

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

    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Name string
    Name.
    ObjectFirewallCasbprofileId string
    an identifier for the resource with format {{name}}.
    SaasApplications List<ObjectFirewallCasbprofileSaasApplication>
    Saas-Application. The structure of saas_application block is documented below.
    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.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Name string
    Name.
    ObjectFirewallCasbprofileId string
    an identifier for the resource with format {{name}}.
    SaasApplications []ObjectFirewallCasbprofileSaasApplicationTypeArgs
    Saas-Application. The structure of saas_application block is documented below.
    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.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name String
    Name.
    objectFirewallCasbprofileId String
    an identifier for the resource with format {{name}}.
    saasApplications List<ObjectFirewallCasbprofileSaasApplication>
    Saas-Application. The structure of saas_application block is documented below.
    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.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name string
    Name.
    objectFirewallCasbprofileId string
    an identifier for the resource with format {{name}}.
    saasApplications ObjectFirewallCasbprofileSaasApplication[]
    Saas-Application. The structure of saas_application block is documented below.
    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.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name str
    Name.
    object_firewall_casbprofile_id str
    an identifier for the resource with format {{name}}.
    saas_applications Sequence[ObjectFirewallCasbprofileSaasApplicationArgs]
    Saas-Application. The structure of saas_application block is documented below.
    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.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name String
    Name.
    objectFirewallCasbprofileId String
    an identifier for the resource with format {{name}}.
    saasApplications List<Property Map>
    Saas-Application. The structure of saas_application block is documented below.
    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 ObjectFirewallCasbprofile 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 ObjectFirewallCasbprofile Resource

    Get an existing ObjectFirewallCasbprofile 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?: ObjectFirewallCasbprofileState, opts?: CustomResourceOptions): ObjectFirewallCasbprofile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            name: Optional[str] = None,
            object_firewall_casbprofile_id: Optional[str] = None,
            saas_applications: Optional[Sequence[ObjectFirewallCasbprofileSaasApplicationArgs]] = None,
            scopetype: Optional[str] = None) -> ObjectFirewallCasbprofile
    func GetObjectFirewallCasbprofile(ctx *Context, name string, id IDInput, state *ObjectFirewallCasbprofileState, opts ...ResourceOption) (*ObjectFirewallCasbprofile, error)
    public static ObjectFirewallCasbprofile Get(string name, Input<string> id, ObjectFirewallCasbprofileState? state, CustomResourceOptions? opts = null)
    public static ObjectFirewallCasbprofile get(String name, Output<String> id, ObjectFirewallCasbprofileState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectFirewallCasbprofile    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.
    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.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Name string
    Name.
    ObjectFirewallCasbprofileId string
    an identifier for the resource with format {{name}}.
    SaasApplications List<ObjectFirewallCasbprofileSaasApplication>
    Saas-Application. The structure of saas_application block is documented below.
    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.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Name string
    Name.
    ObjectFirewallCasbprofileId string
    an identifier for the resource with format {{name}}.
    SaasApplications []ObjectFirewallCasbprofileSaasApplicationTypeArgs
    Saas-Application. The structure of saas_application block is documented below.
    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.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name String
    Name.
    objectFirewallCasbprofileId String
    an identifier for the resource with format {{name}}.
    saasApplications List<ObjectFirewallCasbprofileSaasApplication>
    Saas-Application. The structure of saas_application block is documented below.
    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.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name string
    Name.
    objectFirewallCasbprofileId string
    an identifier for the resource with format {{name}}.
    saasApplications ObjectFirewallCasbprofileSaasApplication[]
    Saas-Application. The structure of saas_application block is documented below.
    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.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name str
    Name.
    object_firewall_casbprofile_id str
    an identifier for the resource with format {{name}}.
    saas_applications Sequence[ObjectFirewallCasbprofileSaasApplicationArgs]
    Saas-Application. The structure of saas_application block is documented below.
    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.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name String
    Name.
    objectFirewallCasbprofileId String
    an identifier for the resource with format {{name}}.
    saasApplications List<Property Map>
    Saas-Application. The structure of saas_application block is documented below.
    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.

    Supporting Types

    ObjectFirewallCasbprofileSaasApplication, ObjectFirewallCasbprofileSaasApplicationArgs

    AccessRules List<ObjectFirewallCasbprofileSaasApplicationAccessRule>
    Access-Rule. The structure of access_rule block is documented below.
    CustomControls List<ObjectFirewallCasbprofileSaasApplicationCustomControl>
    Custom-Control. The structure of custom_control block is documented below.
    DomainControl string
    Domain-Control. Valid values: disable, enable.
    DomainControlDomains List<string>
    Domain-Control-Domains.
    Log string
    Log. Valid values: disable, enable.
    Name string
    Name.
    SafeSearch string
    Safe-Search. Valid values: disable, enable.
    SafeSearchControls List<string>
    Safe-Search-Control.
    TenantControl string
    Tenant-Control. Valid values: disable, enable.
    TenantControlTenants List<string>
    Tenant-Control-Tenants.
    AccessRules []ObjectFirewallCasbprofileSaasApplicationAccessRuleType
    Access-Rule. The structure of access_rule block is documented below.
    CustomControls []ObjectFirewallCasbprofileSaasApplicationCustomControlType
    Custom-Control. The structure of custom_control block is documented below.
    DomainControl string
    Domain-Control. Valid values: disable, enable.
    DomainControlDomains []string
    Domain-Control-Domains.
    Log string
    Log. Valid values: disable, enable.
    Name string
    Name.
    SafeSearch string
    Safe-Search. Valid values: disable, enable.
    SafeSearchControls []string
    Safe-Search-Control.
    TenantControl string
    Tenant-Control. Valid values: disable, enable.
    TenantControlTenants []string
    Tenant-Control-Tenants.
    accessRules List<ObjectFirewallCasbprofileSaasApplicationAccessRule>
    Access-Rule. The structure of access_rule block is documented below.
    customControls List<ObjectFirewallCasbprofileSaasApplicationCustomControl>
    Custom-Control. The structure of custom_control block is documented below.
    domainControl String
    Domain-Control. Valid values: disable, enable.
    domainControlDomains List<String>
    Domain-Control-Domains.
    log String
    Log. Valid values: disable, enable.
    name String
    Name.
    safeSearch String
    Safe-Search. Valid values: disable, enable.
    safeSearchControls List<String>
    Safe-Search-Control.
    tenantControl String
    Tenant-Control. Valid values: disable, enable.
    tenantControlTenants List<String>
    Tenant-Control-Tenants.
    accessRules ObjectFirewallCasbprofileSaasApplicationAccessRule[]
    Access-Rule. The structure of access_rule block is documented below.
    customControls ObjectFirewallCasbprofileSaasApplicationCustomControl[]
    Custom-Control. The structure of custom_control block is documented below.
    domainControl string
    Domain-Control. Valid values: disable, enable.
    domainControlDomains string[]
    Domain-Control-Domains.
    log string
    Log. Valid values: disable, enable.
    name string
    Name.
    safeSearch string
    Safe-Search. Valid values: disable, enable.
    safeSearchControls string[]
    Safe-Search-Control.
    tenantControl string
    Tenant-Control. Valid values: disable, enable.
    tenantControlTenants string[]
    Tenant-Control-Tenants.
    access_rules Sequence[ObjectFirewallCasbprofileSaasApplicationAccessRule]
    Access-Rule. The structure of access_rule block is documented below.
    custom_controls Sequence[ObjectFirewallCasbprofileSaasApplicationCustomControl]
    Custom-Control. The structure of custom_control block is documented below.
    domain_control str
    Domain-Control. Valid values: disable, enable.
    domain_control_domains Sequence[str]
    Domain-Control-Domains.
    log str
    Log. Valid values: disable, enable.
    name str
    Name.
    safe_search str
    Safe-Search. Valid values: disable, enable.
    safe_search_controls Sequence[str]
    Safe-Search-Control.
    tenant_control str
    Tenant-Control. Valid values: disable, enable.
    tenant_control_tenants Sequence[str]
    Tenant-Control-Tenants.
    accessRules List<Property Map>
    Access-Rule. The structure of access_rule block is documented below.
    customControls List<Property Map>
    Custom-Control. The structure of custom_control block is documented below.
    domainControl String
    Domain-Control. Valid values: disable, enable.
    domainControlDomains List<String>
    Domain-Control-Domains.
    log String
    Log. Valid values: disable, enable.
    name String
    Name.
    safeSearch String
    Safe-Search. Valid values: disable, enable.
    safeSearchControls List<String>
    Safe-Search-Control.
    tenantControl String
    Tenant-Control. Valid values: disable, enable.
    tenantControlTenants List<String>
    Tenant-Control-Tenants.

    ObjectFirewallCasbprofileSaasApplicationAccessRule, ObjectFirewallCasbprofileSaasApplicationAccessRuleArgs

    Action string
    Action. Valid values: block, monitor, bypass.
    Bypasses List<string>
    Bypass. Valid values: av, dlp, web-filter, file-filter, video-filter.
    Name string
    Name.
    Action string
    Action. Valid values: block, monitor, bypass.
    Bypasses []string
    Bypass. Valid values: av, dlp, web-filter, file-filter, video-filter.
    Name string
    Name.
    action String
    Action. Valid values: block, monitor, bypass.
    bypasses List<String>
    Bypass. Valid values: av, dlp, web-filter, file-filter, video-filter.
    name String
    Name.
    action string
    Action. Valid values: block, monitor, bypass.
    bypasses string[]
    Bypass. Valid values: av, dlp, web-filter, file-filter, video-filter.
    name string
    Name.
    action str
    Action. Valid values: block, monitor, bypass.
    bypasses Sequence[str]
    Bypass. Valid values: av, dlp, web-filter, file-filter, video-filter.
    name str
    Name.
    action String
    Action. Valid values: block, monitor, bypass.
    bypasses List<String>
    Bypass. Valid values: av, dlp, web-filter, file-filter, video-filter.
    name String
    Name.

    ObjectFirewallCasbprofileSaasApplicationCustomControl, ObjectFirewallCasbprofileSaasApplicationCustomControlArgs

    Name string
    Name.
    Options List<ObjectFirewallCasbprofileSaasApplicationCustomControlOption>
    Option. The structure of option block is documented below.
    Name string
    Name.
    Options []ObjectFirewallCasbprofileSaasApplicationCustomControlOptionType
    Option. The structure of option block is documented below.
    name String
    Name.
    options List<ObjectFirewallCasbprofileSaasApplicationCustomControlOption>
    Option. The structure of option block is documented below.
    name string
    Name.
    options ObjectFirewallCasbprofileSaasApplicationCustomControlOption[]
    Option. The structure of option block is documented below.
    name str
    Name.
    options Sequence[ObjectFirewallCasbprofileSaasApplicationCustomControlOption]
    Option. The structure of option block is documented below.
    name String
    Name.
    options List<Property Map>
    Option. The structure of option block is documented below.

    ObjectFirewallCasbprofileSaasApplicationCustomControlOption, ObjectFirewallCasbprofileSaasApplicationCustomControlOptionArgs

    Name string
    Name.
    UserInputs List<string>
    User-Input.
    Name string
    Name.
    UserInputs []string
    User-Input.
    name String
    Name.
    userInputs List<String>
    User-Input.
    name string
    Name.
    userInputs string[]
    User-Input.
    name str
    Name.
    user_inputs Sequence[str]
    User-Input.
    name String
    Name.
    userInputs List<String>
    User-Input.

    Import

    ObjectFirewall CasbProfile can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectFirewallCasbprofile:ObjectFirewallCasbprofile labelname {{name}}
    

    $ 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.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev