1. Packages
  2. Fortios
  3. API Docs
  4. casb
  5. Profile
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

fortios.casb.Profile

Explore with Pulumi AI

Configure CASB profile. Applies to FortiOS Version >= 7.4.1.

Create Profile Resource

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

Constructor syntax

new Profile(name: string, args?: ProfileArgs, opts?: CustomResourceOptions);
@overload
def Profile(resource_name: str,
            args: Optional[ProfileArgs] = None,
            opts: Optional[ResourceOptions] = None)

@overload
def Profile(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            comment: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            get_all_tables: Optional[str] = None,
            name: Optional[str] = None,
            saas_applications: Optional[Sequence[ProfileSaasApplicationArgs]] = None,
            vdomparam: Optional[str] = None)
func NewProfile(ctx *Context, name string, args *ProfileArgs, opts ...ResourceOption) (*Profile, error)
public Profile(string name, ProfileArgs? args = null, CustomResourceOptions? opts = null)
public Profile(String name, ProfileArgs args)
public Profile(String name, ProfileArgs args, CustomResourceOptions options)
type: fortios:casb:Profile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args ProfileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args ProfileArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args ProfileArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args ProfileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ProfileArgs
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 fortiosProfileResource = new Fortios.Casb.Profile("fortiosProfileResource", new()
{
    Comment = "string",
    DynamicSortSubtable = "string",
    GetAllTables = "string",
    Name = "string",
    SaasApplications = new[]
    {
        new Fortios.Casb.Inputs.ProfileSaasApplicationArgs
        {
            AccessRules = new[]
            {
                new Fortios.Casb.Inputs.ProfileSaasApplicationAccessRuleArgs
                {
                    Action = "string",
                    Bypass = "string",
                    Name = "string",
                },
            },
            CustomControls = new[]
            {
                new Fortios.Casb.Inputs.ProfileSaasApplicationCustomControlArgs
                {
                    Name = "string",
                    Options = new[]
                    {
                        new Fortios.Casb.Inputs.ProfileSaasApplicationCustomControlOptionArgs
                        {
                            Name = "string",
                            UserInputs = new[]
                            {
                                new Fortios.Casb.Inputs.ProfileSaasApplicationCustomControlOptionUserInputArgs
                                {
                                    Value = "string",
                                },
                            },
                        },
                    },
                },
            },
            DomainControl = "string",
            DomainControlDomains = new[]
            {
                new Fortios.Casb.Inputs.ProfileSaasApplicationDomainControlDomainArgs
                {
                    Name = "string",
                },
            },
            Log = "string",
            Name = "string",
            SafeSearch = "string",
            SafeSearchControls = new[]
            {
                new Fortios.Casb.Inputs.ProfileSaasApplicationSafeSearchControlArgs
                {
                    Name = "string",
                },
            },
            Status = "string",
            TenantControl = "string",
            TenantControlTenants = new[]
            {
                new Fortios.Casb.Inputs.ProfileSaasApplicationTenantControlTenantArgs
                {
                    Name = "string",
                },
            },
        },
    },
    Vdomparam = "string",
});
Copy
example, err := casb.NewProfile(ctx, "fortiosProfileResource", &casb.ProfileArgs{
	Comment:             pulumi.String("string"),
	DynamicSortSubtable: pulumi.String("string"),
	GetAllTables:        pulumi.String("string"),
	Name:                pulumi.String("string"),
	SaasApplications: casb.ProfileSaasApplicationArray{
		&casb.ProfileSaasApplicationArgs{
			AccessRules: casb.ProfileSaasApplicationAccessRuleArray{
				&casb.ProfileSaasApplicationAccessRuleArgs{
					Action: pulumi.String("string"),
					Bypass: pulumi.String("string"),
					Name:   pulumi.String("string"),
				},
			},
			CustomControls: casb.ProfileSaasApplicationCustomControlArray{
				&casb.ProfileSaasApplicationCustomControlArgs{
					Name: pulumi.String("string"),
					Options: casb.ProfileSaasApplicationCustomControlOptionArray{
						&casb.ProfileSaasApplicationCustomControlOptionArgs{
							Name: pulumi.String("string"),
							UserInputs: casb.ProfileSaasApplicationCustomControlOptionUserInputArray{
								&casb.ProfileSaasApplicationCustomControlOptionUserInputArgs{
									Value: pulumi.String("string"),
								},
							},
						},
					},
				},
			},
			DomainControl: pulumi.String("string"),
			DomainControlDomains: casb.ProfileSaasApplicationDomainControlDomainArray{
				&casb.ProfileSaasApplicationDomainControlDomainArgs{
					Name: pulumi.String("string"),
				},
			},
			Log:        pulumi.String("string"),
			Name:       pulumi.String("string"),
			SafeSearch: pulumi.String("string"),
			SafeSearchControls: casb.ProfileSaasApplicationSafeSearchControlArray{
				&casb.ProfileSaasApplicationSafeSearchControlArgs{
					Name: pulumi.String("string"),
				},
			},
			Status:        pulumi.String("string"),
			TenantControl: pulumi.String("string"),
			TenantControlTenants: casb.ProfileSaasApplicationTenantControlTenantArray{
				&casb.ProfileSaasApplicationTenantControlTenantArgs{
					Name: pulumi.String("string"),
				},
			},
		},
	},
	Vdomparam: pulumi.String("string"),
})
Copy
var fortiosProfileResource = new Profile("fortiosProfileResource", ProfileArgs.builder()
    .comment("string")
    .dynamicSortSubtable("string")
    .getAllTables("string")
    .name("string")
    .saasApplications(ProfileSaasApplicationArgs.builder()
        .accessRules(ProfileSaasApplicationAccessRuleArgs.builder()
            .action("string")
            .bypass("string")
            .name("string")
            .build())
        .customControls(ProfileSaasApplicationCustomControlArgs.builder()
            .name("string")
            .options(ProfileSaasApplicationCustomControlOptionArgs.builder()
                .name("string")
                .userInputs(ProfileSaasApplicationCustomControlOptionUserInputArgs.builder()
                    .value("string")
                    .build())
                .build())
            .build())
        .domainControl("string")
        .domainControlDomains(ProfileSaasApplicationDomainControlDomainArgs.builder()
            .name("string")
            .build())
        .log("string")
        .name("string")
        .safeSearch("string")
        .safeSearchControls(ProfileSaasApplicationSafeSearchControlArgs.builder()
            .name("string")
            .build())
        .status("string")
        .tenantControl("string")
        .tenantControlTenants(ProfileSaasApplicationTenantControlTenantArgs.builder()
            .name("string")
            .build())
        .build())
    .vdomparam("string")
    .build());
Copy
fortios_profile_resource = fortios.casb.Profile("fortiosProfileResource",
    comment="string",
    dynamic_sort_subtable="string",
    get_all_tables="string",
    name="string",
    saas_applications=[{
        "access_rules": [{
            "action": "string",
            "bypass": "string",
            "name": "string",
        }],
        "custom_controls": [{
            "name": "string",
            "options": [{
                "name": "string",
                "user_inputs": [{
                    "value": "string",
                }],
            }],
        }],
        "domain_control": "string",
        "domain_control_domains": [{
            "name": "string",
        }],
        "log": "string",
        "name": "string",
        "safe_search": "string",
        "safe_search_controls": [{
            "name": "string",
        }],
        "status": "string",
        "tenant_control": "string",
        "tenant_control_tenants": [{
            "name": "string",
        }],
    }],
    vdomparam="string")
Copy
const fortiosProfileResource = new fortios.casb.Profile("fortiosProfileResource", {
    comment: "string",
    dynamicSortSubtable: "string",
    getAllTables: "string",
    name: "string",
    saasApplications: [{
        accessRules: [{
            action: "string",
            bypass: "string",
            name: "string",
        }],
        customControls: [{
            name: "string",
            options: [{
                name: "string",
                userInputs: [{
                    value: "string",
                }],
            }],
        }],
        domainControl: "string",
        domainControlDomains: [{
            name: "string",
        }],
        log: "string",
        name: "string",
        safeSearch: "string",
        safeSearchControls: [{
            name: "string",
        }],
        status: "string",
        tenantControl: "string",
        tenantControlTenants: [{
            name: "string",
        }],
    }],
    vdomparam: "string",
});
Copy
type: fortios:casb:Profile
properties:
    comment: string
    dynamicSortSubtable: string
    getAllTables: string
    name: string
    saasApplications:
        - accessRules:
            - action: string
              bypass: string
              name: string
          customControls:
            - name: string
              options:
                - name: string
                  userInputs:
                    - value: string
          domainControl: string
          domainControlDomains:
            - name: string
          log: string
          name: string
          safeSearch: string
          safeSearchControls:
            - name: string
          status: string
          tenantControl: string
          tenantControlTenants:
            - name: string
    vdomparam: string
Copy

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

Comment string
Comment.
DynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
Name Changes to this property will trigger replacement. string
CASB profile name.
SaasApplications List<Pulumiverse.Fortios.Casb.Inputs.ProfileSaasApplication>
CASB profile SaaS application. The structure of saas_application block is documented below.
Vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Comment string
Comment.
DynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
Name Changes to this property will trigger replacement. string
CASB profile name.
SaasApplications []ProfileSaasApplicationArgs
CASB profile SaaS application. The structure of saas_application block is documented below.
Vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
comment String
Comment.
dynamicSortSubtable String
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name Changes to this property will trigger replacement. String
CASB profile name.
saasApplications List<ProfileSaasApplication>
CASB profile SaaS application. The structure of saas_application block is documented below.
vdomparam Changes to this property will trigger replacement. String
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
comment string
Comment.
dynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
getAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name Changes to this property will trigger replacement. string
CASB profile name.
saasApplications ProfileSaasApplication[]
CASB profile SaaS application. The structure of saas_application block is documented below.
vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
comment str
Comment.
dynamic_sort_subtable str
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
get_all_tables str
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name Changes to this property will trigger replacement. str
CASB profile name.
saas_applications Sequence[ProfileSaasApplicationArgs]
CASB profile SaaS application. The structure of saas_application block is documented below.
vdomparam Changes to this property will trigger replacement. str
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
comment String
Comment.
dynamicSortSubtable String
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name Changes to this property will trigger replacement. String
CASB profile name.
saasApplications List<Property Map>
CASB profile SaaS application. The structure of saas_application block is documented below.
vdomparam Changes to this property will trigger replacement. String
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.

Outputs

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

Get an existing Profile 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?: ProfileState, opts?: CustomResourceOptions): Profile
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        comment: Optional[str] = None,
        dynamic_sort_subtable: Optional[str] = None,
        get_all_tables: Optional[str] = None,
        name: Optional[str] = None,
        saas_applications: Optional[Sequence[ProfileSaasApplicationArgs]] = None,
        vdomparam: Optional[str] = None) -> Profile
func GetProfile(ctx *Context, name string, id IDInput, state *ProfileState, opts ...ResourceOption) (*Profile, error)
public static Profile Get(string name, Input<string> id, ProfileState? state, CustomResourceOptions? opts = null)
public static Profile get(String name, Output<String> id, ProfileState state, CustomResourceOptions options)
resources:  _:    type: fortios:casb:Profile    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Comment string
Comment.
DynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
Name Changes to this property will trigger replacement. string
CASB profile name.
SaasApplications List<Pulumiverse.Fortios.Casb.Inputs.ProfileSaasApplication>
CASB profile SaaS application. The structure of saas_application block is documented below.
Vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Comment string
Comment.
DynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
Name Changes to this property will trigger replacement. string
CASB profile name.
SaasApplications []ProfileSaasApplicationArgs
CASB profile SaaS application. The structure of saas_application block is documented below.
Vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
comment String
Comment.
dynamicSortSubtable String
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name Changes to this property will trigger replacement. String
CASB profile name.
saasApplications List<ProfileSaasApplication>
CASB profile SaaS application. The structure of saas_application block is documented below.
vdomparam Changes to this property will trigger replacement. String
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
comment string
Comment.
dynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
getAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name Changes to this property will trigger replacement. string
CASB profile name.
saasApplications ProfileSaasApplication[]
CASB profile SaaS application. The structure of saas_application block is documented below.
vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
comment str
Comment.
dynamic_sort_subtable str
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
get_all_tables str
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name Changes to this property will trigger replacement. str
CASB profile name.
saas_applications Sequence[ProfileSaasApplicationArgs]
CASB profile SaaS application. The structure of saas_application block is documented below.
vdomparam Changes to this property will trigger replacement. str
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
comment String
Comment.
dynamicSortSubtable String
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name Changes to this property will trigger replacement. String
CASB profile name.
saasApplications List<Property Map>
CASB profile SaaS application. The structure of saas_application block is documented below.
vdomparam Changes to this property will trigger replacement. String
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.

Supporting Types

ProfileSaasApplication
, ProfileSaasApplicationArgs

AccessRules List<Pulumiverse.Fortios.Casb.Inputs.ProfileSaasApplicationAccessRule>
CASB profile access rule. The structure of access_rule block is documented below.
CustomControls List<Pulumiverse.Fortios.Casb.Inputs.ProfileSaasApplicationCustomControl>
CASB profile custom control. The structure of custom_control block is documented below.
DomainControl string
Enable/disable domain control. Valid values: enable, disable.
DomainControlDomains List<Pulumiverse.Fortios.Casb.Inputs.ProfileSaasApplicationDomainControlDomain>
CASB profile domain control domains. The structure of domain_control_domains block is documented below.
Log string
Enable/disable log settings. Valid values: enable, disable.
Name string
CASB profile SaaS application name.
SafeSearch string
Enable/disable safe search. Valid values: enable, disable.
SafeSearchControls List<Pulumiverse.Fortios.Casb.Inputs.ProfileSaasApplicationSafeSearchControl>
CASB profile safe search control. The structure of safe_search_control block is documented below.
Status string
Enable/disable setting. Valid values: enable, disable.
TenantControl string
Enable/disable tenant control. Valid values: enable, disable.
TenantControlTenants List<Pulumiverse.Fortios.Casb.Inputs.ProfileSaasApplicationTenantControlTenant>
CASB profile tenant control tenants. The structure of tenant_control_tenants block is documented below.
AccessRules []ProfileSaasApplicationAccessRule
CASB profile access rule. The structure of access_rule block is documented below.
CustomControls []ProfileSaasApplicationCustomControl
CASB profile custom control. The structure of custom_control block is documented below.
DomainControl string
Enable/disable domain control. Valid values: enable, disable.
DomainControlDomains []ProfileSaasApplicationDomainControlDomain
CASB profile domain control domains. The structure of domain_control_domains block is documented below.
Log string
Enable/disable log settings. Valid values: enable, disable.
Name string
CASB profile SaaS application name.
SafeSearch string
Enable/disable safe search. Valid values: enable, disable.
SafeSearchControls []ProfileSaasApplicationSafeSearchControl
CASB profile safe search control. The structure of safe_search_control block is documented below.
Status string
Enable/disable setting. Valid values: enable, disable.
TenantControl string
Enable/disable tenant control. Valid values: enable, disable.
TenantControlTenants []ProfileSaasApplicationTenantControlTenant
CASB profile tenant control tenants. The structure of tenant_control_tenants block is documented below.
accessRules List<ProfileSaasApplicationAccessRule>
CASB profile access rule. The structure of access_rule block is documented below.
customControls List<ProfileSaasApplicationCustomControl>
CASB profile custom control. The structure of custom_control block is documented below.
domainControl String
Enable/disable domain control. Valid values: enable, disable.
domainControlDomains List<ProfileSaasApplicationDomainControlDomain>
CASB profile domain control domains. The structure of domain_control_domains block is documented below.
log String
Enable/disable log settings. Valid values: enable, disable.
name String
CASB profile SaaS application name.
safeSearch String
Enable/disable safe search. Valid values: enable, disable.
safeSearchControls List<ProfileSaasApplicationSafeSearchControl>
CASB profile safe search control. The structure of safe_search_control block is documented below.
status String
Enable/disable setting. Valid values: enable, disable.
tenantControl String
Enable/disable tenant control. Valid values: enable, disable.
tenantControlTenants List<ProfileSaasApplicationTenantControlTenant>
CASB profile tenant control tenants. The structure of tenant_control_tenants block is documented below.
accessRules ProfileSaasApplicationAccessRule[]
CASB profile access rule. The structure of access_rule block is documented below.
customControls ProfileSaasApplicationCustomControl[]
CASB profile custom control. The structure of custom_control block is documented below.
domainControl string
Enable/disable domain control. Valid values: enable, disable.
domainControlDomains ProfileSaasApplicationDomainControlDomain[]
CASB profile domain control domains. The structure of domain_control_domains block is documented below.
log string
Enable/disable log settings. Valid values: enable, disable.
name string
CASB profile SaaS application name.
safeSearch string
Enable/disable safe search. Valid values: enable, disable.
safeSearchControls ProfileSaasApplicationSafeSearchControl[]
CASB profile safe search control. The structure of safe_search_control block is documented below.
status string
Enable/disable setting. Valid values: enable, disable.
tenantControl string
Enable/disable tenant control. Valid values: enable, disable.
tenantControlTenants ProfileSaasApplicationTenantControlTenant[]
CASB profile tenant control tenants. The structure of tenant_control_tenants block is documented below.
access_rules Sequence[ProfileSaasApplicationAccessRule]
CASB profile access rule. The structure of access_rule block is documented below.
custom_controls Sequence[ProfileSaasApplicationCustomControl]
CASB profile custom control. The structure of custom_control block is documented below.
domain_control str
Enable/disable domain control. Valid values: enable, disable.
domain_control_domains Sequence[ProfileSaasApplicationDomainControlDomain]
CASB profile domain control domains. The structure of domain_control_domains block is documented below.
log str
Enable/disable log settings. Valid values: enable, disable.
name str
CASB profile SaaS application name.
safe_search str
Enable/disable safe search. Valid values: enable, disable.
safe_search_controls Sequence[ProfileSaasApplicationSafeSearchControl]
CASB profile safe search control. The structure of safe_search_control block is documented below.
status str
Enable/disable setting. Valid values: enable, disable.
tenant_control str
Enable/disable tenant control. Valid values: enable, disable.
tenant_control_tenants Sequence[ProfileSaasApplicationTenantControlTenant]
CASB profile tenant control tenants. The structure of tenant_control_tenants block is documented below.
accessRules List<Property Map>
CASB profile access rule. The structure of access_rule block is documented below.
customControls List<Property Map>
CASB profile custom control. The structure of custom_control block is documented below.
domainControl String
Enable/disable domain control. Valid values: enable, disable.
domainControlDomains List<Property Map>
CASB profile domain control domains. The structure of domain_control_domains block is documented below.
log String
Enable/disable log settings. Valid values: enable, disable.
name String
CASB profile SaaS application name.
safeSearch String
Enable/disable safe search. Valid values: enable, disable.
safeSearchControls List<Property Map>
CASB profile safe search control. The structure of safe_search_control block is documented below.
status String
Enable/disable setting. Valid values: enable, disable.
tenantControl String
Enable/disable tenant control. Valid values: enable, disable.
tenantControlTenants List<Property Map>
CASB profile tenant control tenants. The structure of tenant_control_tenants block is documented below.

ProfileSaasApplicationAccessRule
, ProfileSaasApplicationAccessRuleArgs

Action string
CASB access rule action. Valid values: bypass, block, monitor.
Bypass string
CASB bypass options. Valid values: av, dlp, web-filter, file-filter, video-filter.
Name string
CASB access rule activity name.
Action string
CASB access rule action. Valid values: bypass, block, monitor.
Bypass string
CASB bypass options. Valid values: av, dlp, web-filter, file-filter, video-filter.
Name string
CASB access rule activity name.
action String
CASB access rule action. Valid values: bypass, block, monitor.
bypass String
CASB bypass options. Valid values: av, dlp, web-filter, file-filter, video-filter.
name String
CASB access rule activity name.
action string
CASB access rule action. Valid values: bypass, block, monitor.
bypass string
CASB bypass options. Valid values: av, dlp, web-filter, file-filter, video-filter.
name string
CASB access rule activity name.
action str
CASB access rule action. Valid values: bypass, block, monitor.
bypass str
CASB bypass options. Valid values: av, dlp, web-filter, file-filter, video-filter.
name str
CASB access rule activity name.
action String
CASB access rule action. Valid values: bypass, block, monitor.
bypass String
CASB bypass options. Valid values: av, dlp, web-filter, file-filter, video-filter.
name String
CASB access rule activity name.

ProfileSaasApplicationCustomControl
, ProfileSaasApplicationCustomControlArgs

Name string
CASB custom control user activity name.
Options List<Pulumiverse.Fortios.Casb.Inputs.ProfileSaasApplicationCustomControlOption>
CASB custom control option. The structure of option block is documented below.
Name string
CASB custom control user activity name.
Options []ProfileSaasApplicationCustomControlOption
CASB custom control option. The structure of option block is documented below.
name String
CASB custom control user activity name.
options List<ProfileSaasApplicationCustomControlOption>
CASB custom control option. The structure of option block is documented below.
name string
CASB custom control user activity name.
options ProfileSaasApplicationCustomControlOption[]
CASB custom control option. The structure of option block is documented below.
name str
CASB custom control user activity name.
options Sequence[ProfileSaasApplicationCustomControlOption]
CASB custom control option. The structure of option block is documented below.
name String
CASB custom control user activity name.
options List<Property Map>
CASB custom control option. The structure of option block is documented below.

ProfileSaasApplicationCustomControlOption
, ProfileSaasApplicationCustomControlOptionArgs

Name string
CASB custom control option name.
UserInputs List<Pulumiverse.Fortios.Casb.Inputs.ProfileSaasApplicationCustomControlOptionUserInput>
CASB custom control user input. The structure of user_input block is documented below.
Name string
CASB custom control option name.
UserInputs []ProfileSaasApplicationCustomControlOptionUserInput
CASB custom control user input. The structure of user_input block is documented below.
name String
CASB custom control option name.
userInputs List<ProfileSaasApplicationCustomControlOptionUserInput>
CASB custom control user input. The structure of user_input block is documented below.
name string
CASB custom control option name.
userInputs ProfileSaasApplicationCustomControlOptionUserInput[]
CASB custom control user input. The structure of user_input block is documented below.
name str
CASB custom control option name.
user_inputs Sequence[ProfileSaasApplicationCustomControlOptionUserInput]
CASB custom control user input. The structure of user_input block is documented below.
name String
CASB custom control option name.
userInputs List<Property Map>
CASB custom control user input. The structure of user_input block is documented below.

ProfileSaasApplicationCustomControlOptionUserInput
, ProfileSaasApplicationCustomControlOptionUserInputArgs

Value string
user input value.
Value string
user input value.
value String
user input value.
value string
user input value.
value str
user input value.
value String
user input value.

ProfileSaasApplicationDomainControlDomain
, ProfileSaasApplicationDomainControlDomainArgs

Name string
Domain control domain name.
Name string
Domain control domain name.
name String
Domain control domain name.
name string
Domain control domain name.
name str
Domain control domain name.
name String
Domain control domain name.

ProfileSaasApplicationSafeSearchControl
, ProfileSaasApplicationSafeSearchControlArgs

Name string
Safe search control name.
Name string
Safe search control name.
name String
Safe search control name.
name string
Safe search control name.
name str
Safe search control name.
name String
Safe search control name.

ProfileSaasApplicationTenantControlTenant
, ProfileSaasApplicationTenantControlTenantArgs

Name string
Tenant control tenants name.
Name string
Tenant control tenants name.
name String
Tenant control tenants name.
name string
Tenant control tenants name.
name str
Tenant control tenants name.
name String
Tenant control tenants name.

Import

Casb Profile can be imported using any of these accepted formats:

$ pulumi import fortios:casb/profile:Profile labelname {{name}}
Copy

If you do not want to import arguments of block:

$ export “FORTIOS_IMPORT_TABLE”=“false”

$ pulumi import fortios:casb/profile:Profile labelname {{name}}
Copy

$ unset “FORTIOS_IMPORT_TABLE”

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

Package Details

Repository
fortios pulumiverse/pulumi-fortios
License
Apache-2.0
Notes
This Pulumi package is based on the fortios Terraform Provider.