1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectCasbProfileSaasapplicationAdvancedtenantcontrol
fortimanager 1.14.0 published on Tuesday, Apr 15, 2025 by fortinetdev

fortimanager.ObjectCasbProfileSaasapplicationAdvancedtenantcontrol

Explore with Pulumi AI

fortimanager logo
fortimanager 1.14.0 published on Tuesday, Apr 15, 2025 by fortinetdev

    CASB profile advanced tenant control.

    This resource is a sub resource for variable advanced_tenant_control of resource fortimanager.ObjectCasbProfileSaasapplication. Conflict and overwrite may occur if use both of them. The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • attribute: fortimanager.ObjectCasbProfileSaasapplicationAdvancedtenantcontrolAttribute

    Create ObjectCasbProfileSaasapplicationAdvancedtenantcontrol Resource

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

    Constructor syntax

    new ObjectCasbProfileSaasapplicationAdvancedtenantcontrol(name: string, args: ObjectCasbProfileSaasapplicationAdvancedtenantcontrolArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectCasbProfileSaasapplicationAdvancedtenantcontrol(resource_name: str,
                                                              args: ObjectCasbProfileSaasapplicationAdvancedtenantcontrolArgs,
                                                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectCasbProfileSaasapplicationAdvancedtenantcontrol(resource_name: str,
                                                              opts: Optional[ResourceOptions] = None,
                                                              profile: Optional[str] = None,
                                                              saas_application: Optional[str] = None,
                                                              adom: Optional[str] = None,
                                                              attributes: Optional[Sequence[ObjectCasbProfileSaasapplicationAdvancedtenantcontrolAttributeArgs]] = None,
                                                              dynamic_sort_subtable: Optional[str] = None,
                                                              name: Optional[str] = None,
                                                              object_casb_profile_saasapplication_advancedtenantcontrol_id: Optional[str] = None,
                                                              scopetype: Optional[str] = None)
    func NewObjectCasbProfileSaasapplicationAdvancedtenantcontrol(ctx *Context, name string, args ObjectCasbProfileSaasapplicationAdvancedtenantcontrolArgs, opts ...ResourceOption) (*ObjectCasbProfileSaasapplicationAdvancedtenantcontrol, error)
    public ObjectCasbProfileSaasapplicationAdvancedtenantcontrol(string name, ObjectCasbProfileSaasapplicationAdvancedtenantcontrolArgs args, CustomResourceOptions? opts = null)
    public ObjectCasbProfileSaasapplicationAdvancedtenantcontrol(String name, ObjectCasbProfileSaasapplicationAdvancedtenantcontrolArgs args)
    public ObjectCasbProfileSaasapplicationAdvancedtenantcontrol(String name, ObjectCasbProfileSaasapplicationAdvancedtenantcontrolArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectCasbProfileSaasapplicationAdvancedtenantcontrol
    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 ObjectCasbProfileSaasapplicationAdvancedtenantcontrolArgs
    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 ObjectCasbProfileSaasapplicationAdvancedtenantcontrolArgs
    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 ObjectCasbProfileSaasapplicationAdvancedtenantcontrolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectCasbProfileSaasapplicationAdvancedtenantcontrolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectCasbProfileSaasapplicationAdvancedtenantcontrolArgs
    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 objectCasbProfileSaasapplicationAdvancedtenantcontrolResource = new Fortimanager.ObjectCasbProfileSaasapplicationAdvancedtenantcontrol("objectCasbProfileSaasapplicationAdvancedtenantcontrolResource", new()
    {
        Profile = "string",
        SaasApplication = "string",
        Adom = "string",
        Attributes = new[]
        {
            new Fortimanager.Inputs.ObjectCasbProfileSaasapplicationAdvancedtenantcontrolAttributeArgs
            {
                Inputs = new[]
                {
                    "string",
                },
                Name = "string",
            },
        },
        DynamicSortSubtable = "string",
        Name = "string",
        ObjectCasbProfileSaasapplicationAdvancedtenantcontrolId = "string",
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectCasbProfileSaasapplicationAdvancedtenantcontrol(ctx, "objectCasbProfileSaasapplicationAdvancedtenantcontrolResource", &fortimanager.ObjectCasbProfileSaasapplicationAdvancedtenantcontrolArgs{
    	Profile:         pulumi.String("string"),
    	SaasApplication: pulumi.String("string"),
    	Adom:            pulumi.String("string"),
    	Attributes: fortimanager.ObjectCasbProfileSaasapplicationAdvancedtenantcontrolAttributeTypeArray{
    		&fortimanager.ObjectCasbProfileSaasapplicationAdvancedtenantcontrolAttributeTypeArgs{
    			Inputs: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			Name: pulumi.String("string"),
    		},
    	},
    	DynamicSortSubtable: pulumi.String("string"),
    	Name:                pulumi.String("string"),
    	ObjectCasbProfileSaasapplicationAdvancedtenantcontrolId: pulumi.String("string"),
    	Scopetype: pulumi.String("string"),
    })
    
    var objectCasbProfileSaasapplicationAdvancedtenantcontrolResource = new ObjectCasbProfileSaasapplicationAdvancedtenantcontrol("objectCasbProfileSaasapplicationAdvancedtenantcontrolResource", ObjectCasbProfileSaasapplicationAdvancedtenantcontrolArgs.builder()
        .profile("string")
        .saasApplication("string")
        .adom("string")
        .attributes(ObjectCasbProfileSaasapplicationAdvancedtenantcontrolAttributeArgs.builder()
            .inputs("string")
            .name("string")
            .build())
        .dynamicSortSubtable("string")
        .name("string")
        .objectCasbProfileSaasapplicationAdvancedtenantcontrolId("string")
        .scopetype("string")
        .build());
    
    object_casb_profile_saasapplication_advancedtenantcontrol_resource = fortimanager.ObjectCasbProfileSaasapplicationAdvancedtenantcontrol("objectCasbProfileSaasapplicationAdvancedtenantcontrolResource",
        profile="string",
        saas_application="string",
        adom="string",
        attributes=[{
            "inputs": ["string"],
            "name": "string",
        }],
        dynamic_sort_subtable="string",
        name="string",
        object_casb_profile_saasapplication_advancedtenantcontrol_id="string",
        scopetype="string")
    
    const objectCasbProfileSaasapplicationAdvancedtenantcontrolResource = new fortimanager.ObjectCasbProfileSaasapplicationAdvancedtenantcontrol("objectCasbProfileSaasapplicationAdvancedtenantcontrolResource", {
        profile: "string",
        saasApplication: "string",
        adom: "string",
        attributes: [{
            inputs: ["string"],
            name: "string",
        }],
        dynamicSortSubtable: "string",
        name: "string",
        objectCasbProfileSaasapplicationAdvancedtenantcontrolId: "string",
        scopetype: "string",
    });
    
    type: fortimanager:ObjectCasbProfileSaasapplicationAdvancedtenantcontrol
    properties:
        adom: string
        attributes:
            - inputs:
                - string
              name: string
        dynamicSortSubtable: string
        name: string
        objectCasbProfileSaasapplicationAdvancedtenantcontrolId: string
        profile: string
        saasApplication: string
        scopetype: string
    

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

    Profile string
    Profile.
    SaasApplication string
    Saas Application.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Attributes List<ObjectCasbProfileSaasapplicationAdvancedtenantcontrolAttribute>
    Attribute. The structure of attribute block is documented below.
    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
    CASB advanced tenant control name.
    ObjectCasbProfileSaasapplicationAdvancedtenantcontrolId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Profile string
    Profile.
    SaasApplication string
    Saas Application.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Attributes []ObjectCasbProfileSaasapplicationAdvancedtenantcontrolAttributeTypeArgs
    Attribute. The structure of attribute block is documented below.
    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
    CASB advanced tenant control name.
    ObjectCasbProfileSaasapplicationAdvancedtenantcontrolId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    profile String
    Profile.
    saasApplication String
    Saas Application.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    attributes List<ObjectCasbProfileSaasapplicationAdvancedtenantcontrolAttribute>
    Attribute. The structure of attribute block is documented below.
    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
    CASB advanced tenant control name.
    objectCasbProfileSaasapplicationAdvancedtenantcontrolId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    profile string
    Profile.
    saasApplication string
    Saas Application.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    attributes ObjectCasbProfileSaasapplicationAdvancedtenantcontrolAttribute[]
    Attribute. The structure of attribute block is documented below.
    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
    CASB advanced tenant control name.
    objectCasbProfileSaasapplicationAdvancedtenantcontrolId string
    an identifier for the resource with format {{name}}.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    profile str
    Profile.
    saas_application str
    Saas Application.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    attributes Sequence[ObjectCasbProfileSaasapplicationAdvancedtenantcontrolAttributeArgs]
    Attribute. The structure of attribute block is documented below.
    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
    CASB advanced tenant control name.
    object_casb_profile_saasapplication_advancedtenantcontrol_id str
    an identifier for the resource with format {{name}}.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    profile String
    Profile.
    saasApplication String
    Saas Application.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    attributes List<Property Map>
    Attribute. The structure of attribute block is documented below.
    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
    CASB advanced tenant control name.
    objectCasbProfileSaasapplicationAdvancedtenantcontrolId String
    an identifier for the resource with format {{name}}.
    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 ObjectCasbProfileSaasapplicationAdvancedtenantcontrol 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 ObjectCasbProfileSaasapplicationAdvancedtenantcontrol Resource

    Get an existing ObjectCasbProfileSaasapplicationAdvancedtenantcontrol 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?: ObjectCasbProfileSaasapplicationAdvancedtenantcontrolState, opts?: CustomResourceOptions): ObjectCasbProfileSaasapplicationAdvancedtenantcontrol
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            attributes: Optional[Sequence[ObjectCasbProfileSaasapplicationAdvancedtenantcontrolAttributeArgs]] = None,
            dynamic_sort_subtable: Optional[str] = None,
            name: Optional[str] = None,
            object_casb_profile_saasapplication_advancedtenantcontrol_id: Optional[str] = None,
            profile: Optional[str] = None,
            saas_application: Optional[str] = None,
            scopetype: Optional[str] = None) -> ObjectCasbProfileSaasapplicationAdvancedtenantcontrol
    func GetObjectCasbProfileSaasapplicationAdvancedtenantcontrol(ctx *Context, name string, id IDInput, state *ObjectCasbProfileSaasapplicationAdvancedtenantcontrolState, opts ...ResourceOption) (*ObjectCasbProfileSaasapplicationAdvancedtenantcontrol, error)
    public static ObjectCasbProfileSaasapplicationAdvancedtenantcontrol Get(string name, Input<string> id, ObjectCasbProfileSaasapplicationAdvancedtenantcontrolState? state, CustomResourceOptions? opts = null)
    public static ObjectCasbProfileSaasapplicationAdvancedtenantcontrol get(String name, Output<String> id, ObjectCasbProfileSaasapplicationAdvancedtenantcontrolState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectCasbProfileSaasapplicationAdvancedtenantcontrol    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.
    Attributes List<ObjectCasbProfileSaasapplicationAdvancedtenantcontrolAttribute>
    Attribute. The structure of attribute block is documented below.
    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
    CASB advanced tenant control name.
    ObjectCasbProfileSaasapplicationAdvancedtenantcontrolId string
    an identifier for the resource with format {{name}}.
    Profile string
    Profile.
    SaasApplication string
    Saas Application.
    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.
    Attributes []ObjectCasbProfileSaasapplicationAdvancedtenantcontrolAttributeTypeArgs
    Attribute. The structure of attribute block is documented below.
    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
    CASB advanced tenant control name.
    ObjectCasbProfileSaasapplicationAdvancedtenantcontrolId string
    an identifier for the resource with format {{name}}.
    Profile string
    Profile.
    SaasApplication string
    Saas Application.
    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.
    attributes List<ObjectCasbProfileSaasapplicationAdvancedtenantcontrolAttribute>
    Attribute. The structure of attribute block is documented below.
    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
    CASB advanced tenant control name.
    objectCasbProfileSaasapplicationAdvancedtenantcontrolId String
    an identifier for the resource with format {{name}}.
    profile String
    Profile.
    saasApplication String
    Saas Application.
    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.
    attributes ObjectCasbProfileSaasapplicationAdvancedtenantcontrolAttribute[]
    Attribute. The structure of attribute block is documented below.
    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
    CASB advanced tenant control name.
    objectCasbProfileSaasapplicationAdvancedtenantcontrolId string
    an identifier for the resource with format {{name}}.
    profile string
    Profile.
    saasApplication string
    Saas Application.
    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.
    attributes Sequence[ObjectCasbProfileSaasapplicationAdvancedtenantcontrolAttributeArgs]
    Attribute. The structure of attribute block is documented below.
    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
    CASB advanced tenant control name.
    object_casb_profile_saasapplication_advancedtenantcontrol_id str
    an identifier for the resource with format {{name}}.
    profile str
    Profile.
    saas_application str
    Saas Application.
    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.
    attributes List<Property Map>
    Attribute. The structure of attribute block is documented below.
    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
    CASB advanced tenant control name.
    objectCasbProfileSaasapplicationAdvancedtenantcontrolId String
    an identifier for the resource with format {{name}}.
    profile String
    Profile.
    saasApplication String
    Saas Application.
    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

    ObjectCasbProfileSaasapplicationAdvancedtenantcontrolAttribute, ObjectCasbProfileSaasapplicationAdvancedtenantcontrolAttributeArgs

    Inputs List<string>
    CASB extend user input value.
    Name string
    CASB extend user input name.
    Inputs []string
    CASB extend user input value.
    Name string
    CASB extend user input name.
    inputs List<String>
    CASB extend user input value.
    name String
    CASB extend user input name.
    inputs string[]
    CASB extend user input value.
    name string
    CASB extend user input name.
    inputs Sequence[str]
    CASB extend user input value.
    name str
    CASB extend user input name.
    inputs List<String>
    CASB extend user input value.
    name String
    CASB extend user input name.

    Import

    ObjectCasb ProfileSaasApplicationAdvancedTenantControl can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectCasbProfileSaasapplicationAdvancedtenantcontrol:ObjectCasbProfileSaasapplicationAdvancedtenantcontrol 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.14.0 published on Tuesday, Apr 15, 2025 by fortinetdev