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 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 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 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 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 String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
fortios_profile_resource = fortios.casb.Profile("fortiosProfileResource",
comment="string",
dynamic_sort_subtable="string",
get_all_tables="string",
name="string",
saas_applications=[fortios.casb.ProfileSaasApplicationArgs(
access_rules=[fortios.casb.ProfileSaasApplicationAccessRuleArgs(
action="string",
bypass="string",
name="string",
)],
custom_controls=[fortios.casb.ProfileSaasApplicationCustomControlArgs(
name="string",
options=[fortios.casb.ProfileSaasApplicationCustomControlOptionArgs(
name="string",
user_inputs=[fortios.casb.ProfileSaasApplicationCustomControlOptionUserInputArgs(
value="string",
)],
)],
)],
domain_control="string",
domain_control_domains=[fortios.casb.ProfileSaasApplicationDomainControlDomainArgs(
name="string",
)],
log="string",
name="string",
safe_search="string",
safe_search_controls=[fortios.casb.ProfileSaasApplicationSafeSearchControlArgs(
name="string",
)],
status="string",
tenant_control="string",
tenant_control_tenants=[fortios.casb.ProfileSaasApplicationTenantControlTenantArgs(
name="string",
)],
)],
vdomparam="string")
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",
});
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
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
The Profile resource accepts the following input properties:
- Comment string
- Comment.
- Dynamic
Sort stringSubtable - 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 stringTables - 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 string
- CASB profile name.
- Saas
Applications List<Pulumiverse.Fortios. Casb. Inputs. Profile Saas Application> - CASB profile SaaS application. The structure of
saas_application
block is documented below. - Vdomparam 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.
- Dynamic
Sort stringSubtable - 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 stringTables - 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 string
- CASB profile name.
- Saas
Applications []ProfileSaas Application Args - CASB profile SaaS application. The structure of
saas_application
block is documented below. - Vdomparam 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.
- dynamic
Sort StringSubtable - 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 StringTables - 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 String
- CASB profile name.
- saas
Applications List<ProfileSaas Application> - CASB profile SaaS application. The structure of
saas_application
block is documented below. - vdomparam 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.
- dynamic
Sort stringSubtable - 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 stringTables - 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 string
- CASB profile name.
- saas
Applications ProfileSaas Application[] - CASB profile SaaS application. The structure of
saas_application
block is documented below. - vdomparam 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_ strsubtable - 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_ strtables - 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 str
- CASB profile name.
- saas_
applications Sequence[ProfileSaas Application Args] - CASB profile SaaS application. The structure of
saas_application
block is documented below. - vdomparam 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.
- dynamic
Sort StringSubtable - 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 StringTables - 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 String
- CASB profile name.
- saas
Applications List<Property Map> - CASB profile SaaS application. The structure of
saas_application
block is documented below. - vdomparam 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)
Resource lookup is not supported in YAML
- 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.
- Comment string
- Comment.
- Dynamic
Sort stringSubtable - 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 stringTables - 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 string
- CASB profile name.
- Saas
Applications List<Pulumiverse.Fortios. Casb. Inputs. Profile Saas Application> - CASB profile SaaS application. The structure of
saas_application
block is documented below. - Vdomparam 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.
- Dynamic
Sort stringSubtable - 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 stringTables - 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 string
- CASB profile name.
- Saas
Applications []ProfileSaas Application Args - CASB profile SaaS application. The structure of
saas_application
block is documented below. - Vdomparam 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.
- dynamic
Sort StringSubtable - 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 StringTables - 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 String
- CASB profile name.
- saas
Applications List<ProfileSaas Application> - CASB profile SaaS application. The structure of
saas_application
block is documented below. - vdomparam 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.
- dynamic
Sort stringSubtable - 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 stringTables - 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 string
- CASB profile name.
- saas
Applications ProfileSaas Application[] - CASB profile SaaS application. The structure of
saas_application
block is documented below. - vdomparam 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_ strsubtable - 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_ strtables - 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 str
- CASB profile name.
- saas_
applications Sequence[ProfileSaas Application Args] - CASB profile SaaS application. The structure of
saas_application
block is documented below. - vdomparam 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.
- dynamic
Sort StringSubtable - 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 StringTables - 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 String
- CASB profile name.
- saas
Applications List<Property Map> - CASB profile SaaS application. The structure of
saas_application
block is documented below. - vdomparam 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
- Access
Rules List<Pulumiverse.Fortios. Casb. Inputs. Profile Saas Application Access Rule> - CASB profile access rule. The structure of
access_rule
block is documented below. - Custom
Controls List<Pulumiverse.Fortios. Casb. Inputs. Profile Saas Application Custom Control> - CASB profile custom control. The structure of
custom_control
block is documented below. - Domain
Control string - Enable/disable domain control. Valid values:
enable
,disable
. - Domain
Control List<Pulumiverse.Domains Fortios. Casb. Inputs. Profile Saas Application Domain Control Domain> - 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.
- Safe
Search string - Enable/disable safe search. Valid values:
enable
,disable
. - Safe
Search List<Pulumiverse.Controls Fortios. Casb. Inputs. Profile Saas Application Safe Search Control> - CASB profile safe search control. The structure of
safe_search_control
block is documented below. - Status string
- Enable/disable setting. Valid values:
enable
,disable
. - Tenant
Control string - Enable/disable tenant control. Valid values:
enable
,disable
. - Tenant
Control List<Pulumiverse.Tenants Fortios. Casb. Inputs. Profile Saas Application Tenant Control Tenant> - CASB profile tenant control tenants. The structure of
tenant_control_tenants
block is documented below.
- Access
Rules []ProfileSaas Application Access Rule - CASB profile access rule. The structure of
access_rule
block is documented below. - Custom
Controls []ProfileSaas Application Custom Control - CASB profile custom control. The structure of
custom_control
block is documented below. - Domain
Control string - Enable/disable domain control. Valid values:
enable
,disable
. - Domain
Control []ProfileDomains Saas Application Domain Control Domain - 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.
- Safe
Search string - Enable/disable safe search. Valid values:
enable
,disable
. - Safe
Search []ProfileControls Saas Application Safe Search Control - CASB profile safe search control. The structure of
safe_search_control
block is documented below. - Status string
- Enable/disable setting. Valid values:
enable
,disable
. - Tenant
Control string - Enable/disable tenant control. Valid values:
enable
,disable
. - Tenant
Control []ProfileTenants Saas Application Tenant Control Tenant - CASB profile tenant control tenants. The structure of
tenant_control_tenants
block is documented below.
- access
Rules List<ProfileSaas Application Access Rule> - CASB profile access rule. The structure of
access_rule
block is documented below. - custom
Controls List<ProfileSaas Application Custom Control> - CASB profile custom control. The structure of
custom_control
block is documented below. - domain
Control String - Enable/disable domain control. Valid values:
enable
,disable
. - domain
Control List<ProfileDomains Saas Application Domain Control Domain> - 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.
- safe
Search String - Enable/disable safe search. Valid values:
enable
,disable
. - safe
Search List<ProfileControls Saas Application Safe Search Control> - CASB profile safe search control. The structure of
safe_search_control
block is documented below. - status String
- Enable/disable setting. Valid values:
enable
,disable
. - tenant
Control String - Enable/disable tenant control. Valid values:
enable
,disable
. - tenant
Control List<ProfileTenants Saas Application Tenant Control Tenant> - CASB profile tenant control tenants. The structure of
tenant_control_tenants
block is documented below.
- access
Rules ProfileSaas Application Access Rule[] - CASB profile access rule. The structure of
access_rule
block is documented below. - custom
Controls ProfileSaas Application Custom Control[] - CASB profile custom control. The structure of
custom_control
block is documented below. - domain
Control string - Enable/disable domain control. Valid values:
enable
,disable
. - domain
Control ProfileDomains Saas Application Domain Control Domain[] - 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.
- safe
Search string - Enable/disable safe search. Valid values:
enable
,disable
. - safe
Search ProfileControls Saas Application Safe Search Control[] - CASB profile safe search control. The structure of
safe_search_control
block is documented below. - status string
- Enable/disable setting. Valid values:
enable
,disable
. - tenant
Control string - Enable/disable tenant control. Valid values:
enable
,disable
. - tenant
Control ProfileTenants Saas Application Tenant Control Tenant[] - CASB profile tenant control tenants. The structure of
tenant_control_tenants
block is documented below.
- access_
rules Sequence[ProfileSaas Application Access Rule] - CASB profile access rule. The structure of
access_rule
block is documented below. - custom_
controls Sequence[ProfileSaas Application Custom Control] - 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_ Sequence[Profiledomains Saas Application Domain Control Domain] - 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_ Sequence[Profilecontrols Saas Application Safe Search Control] - 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_ Sequence[Profiletenants Saas Application Tenant Control Tenant] - CASB profile tenant control tenants. The structure of
tenant_control_tenants
block is documented below.
- access
Rules List<Property Map> - CASB profile access rule. The structure of
access_rule
block is documented below. - custom
Controls List<Property Map> - CASB profile custom control. The structure of
custom_control
block is documented below. - domain
Control String - Enable/disable domain control. Valid values:
enable
,disable
. - domain
Control List<Property Map>Domains - 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.
- safe
Search String - Enable/disable safe search. Valid values:
enable
,disable
. - safe
Search List<Property Map>Controls - CASB profile safe search control. The structure of
safe_search_control
block is documented below. - status String
- Enable/disable setting. Valid values:
enable
,disable
. - tenant
Control String - Enable/disable tenant control. Valid values:
enable
,disable
. - tenant
Control List<Property Map>Tenants - CASB profile tenant control tenants. The structure of
tenant_control_tenants
block is documented below.
ProfileSaasApplicationAccessRule, ProfileSaasApplicationAccessRuleArgs
ProfileSaasApplicationCustomControl, ProfileSaasApplicationCustomControlArgs
- Name string
- CASB custom control user activity name.
- Options
List<Pulumiverse.
Fortios. Casb. Inputs. Profile Saas Application Custom Control Option> - CASB custom control option. The structure of
option
block is documented below.
- Name string
- CASB custom control user activity name.
- Options
[]Profile
Saas Application Custom Control Option - CASB custom control option. The structure of
option
block is documented below.
- name String
- CASB custom control user activity name.
- options
List<Profile
Saas Application Custom Control Option> - CASB custom control option. The structure of
option
block is documented below.
- name string
- CASB custom control user activity name.
- options
Profile
Saas Application Custom Control Option[] - CASB custom control option. The structure of
option
block is documented below.
- name str
- CASB custom control user activity name.
- options
Sequence[Profile
Saas Application Custom Control Option] - 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.
- User
Inputs List<Pulumiverse.Fortios. Casb. Inputs. Profile Saas Application Custom Control Option User Input> - CASB custom control user input. The structure of
user_input
block is documented below.
- Name string
- CASB custom control option name.
- User
Inputs []ProfileSaas Application Custom Control Option User Input - CASB custom control user input. The structure of
user_input
block is documented below.
- name String
- CASB custom control option name.
- user
Inputs List<ProfileSaas Application Custom Control Option User Input> - CASB custom control user input. The structure of
user_input
block is documented below.
- name string
- CASB custom control option name.
- user
Inputs ProfileSaas Application Custom Control Option User Input[] - CASB custom control user input. The structure of
user_input
block is documented below.
- name str
- CASB custom control option name.
- user_
inputs Sequence[ProfileSaas Application Custom Control Option User Input] - CASB custom control user input. The structure of
user_input
block is documented below.
- name String
- CASB custom control option name.
- user
Inputs 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}}
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:casb/profile:Profile labelname {{name}}
$ 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.