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

fortimanager.ObjectFirewallCasbprofileSaasapplicationAccessrule

Explore with Pulumi AI

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

    ObjectFirewall CasbProfileSaasApplicationAccessRule

    This resource is a sub resource for variable access_rule of resource fortimanager.ObjectFirewallCasbprofileSaasapplication. Conflict and overwrite may occur if use both of them.

    Create ObjectFirewallCasbprofileSaasapplicationAccessrule Resource

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

    Constructor syntax

    new ObjectFirewallCasbprofileSaasapplicationAccessrule(name: string, args: ObjectFirewallCasbprofileSaasapplicationAccessruleArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectFirewallCasbprofileSaasapplicationAccessrule(resource_name: str,
                                                           args: ObjectFirewallCasbprofileSaasapplicationAccessruleArgs,
                                                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectFirewallCasbprofileSaasapplicationAccessrule(resource_name: str,
                                                           opts: Optional[ResourceOptions] = None,
                                                           casb_profile: Optional[str] = None,
                                                           saas_application: Optional[str] = None,
                                                           action: Optional[str] = None,
                                                           adom: Optional[str] = None,
                                                           bypasses: Optional[Sequence[str]] = None,
                                                           name: Optional[str] = None,
                                                           object_firewall_casbprofile_saasapplication_accessrule_id: Optional[str] = None,
                                                           scopetype: Optional[str] = None)
    func NewObjectFirewallCasbprofileSaasapplicationAccessrule(ctx *Context, name string, args ObjectFirewallCasbprofileSaasapplicationAccessruleArgs, opts ...ResourceOption) (*ObjectFirewallCasbprofileSaasapplicationAccessrule, error)
    public ObjectFirewallCasbprofileSaasapplicationAccessrule(string name, ObjectFirewallCasbprofileSaasapplicationAccessruleArgs args, CustomResourceOptions? opts = null)
    public ObjectFirewallCasbprofileSaasapplicationAccessrule(String name, ObjectFirewallCasbprofileSaasapplicationAccessruleArgs args)
    public ObjectFirewallCasbprofileSaasapplicationAccessrule(String name, ObjectFirewallCasbprofileSaasapplicationAccessruleArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectFirewallCasbprofileSaasapplicationAccessrule
    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 ObjectFirewallCasbprofileSaasapplicationAccessruleArgs
    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 ObjectFirewallCasbprofileSaasapplicationAccessruleArgs
    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 ObjectFirewallCasbprofileSaasapplicationAccessruleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectFirewallCasbprofileSaasapplicationAccessruleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectFirewallCasbprofileSaasapplicationAccessruleArgs
    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 objectFirewallCasbprofileSaasapplicationAccessruleResource = new Fortimanager.ObjectFirewallCasbprofileSaasapplicationAccessrule("objectFirewallCasbprofileSaasapplicationAccessruleResource", new()
    {
        CasbProfile = "string",
        SaasApplication = "string",
        Action = "string",
        Adom = "string",
        Bypasses = new[]
        {
            "string",
        },
        Name = "string",
        ObjectFirewallCasbprofileSaasapplicationAccessruleId = "string",
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectFirewallCasbprofileSaasapplicationAccessrule(ctx, "objectFirewallCasbprofileSaasapplicationAccessruleResource", &fortimanager.ObjectFirewallCasbprofileSaasapplicationAccessruleArgs{
    CasbProfile: pulumi.String("string"),
    SaasApplication: pulumi.String("string"),
    Action: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Bypasses: pulumi.StringArray{
    pulumi.String("string"),
    },
    Name: pulumi.String("string"),
    ObjectFirewallCasbprofileSaasapplicationAccessruleId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    })
    
    var objectFirewallCasbprofileSaasapplicationAccessruleResource = new ObjectFirewallCasbprofileSaasapplicationAccessrule("objectFirewallCasbprofileSaasapplicationAccessruleResource", ObjectFirewallCasbprofileSaasapplicationAccessruleArgs.builder()
        .casbProfile("string")
        .saasApplication("string")
        .action("string")
        .adom("string")
        .bypasses("string")
        .name("string")
        .objectFirewallCasbprofileSaasapplicationAccessruleId("string")
        .scopetype("string")
        .build());
    
    object_firewall_casbprofile_saasapplication_accessrule_resource = fortimanager.ObjectFirewallCasbprofileSaasapplicationAccessrule("objectFirewallCasbprofileSaasapplicationAccessruleResource",
        casb_profile="string",
        saas_application="string",
        action="string",
        adom="string",
        bypasses=["string"],
        name="string",
        object_firewall_casbprofile_saasapplication_accessrule_id="string",
        scopetype="string")
    
    const objectFirewallCasbprofileSaasapplicationAccessruleResource = new fortimanager.ObjectFirewallCasbprofileSaasapplicationAccessrule("objectFirewallCasbprofileSaasapplicationAccessruleResource", {
        casbProfile: "string",
        saasApplication: "string",
        action: "string",
        adom: "string",
        bypasses: ["string"],
        name: "string",
        objectFirewallCasbprofileSaasapplicationAccessruleId: "string",
        scopetype: "string",
    });
    
    type: fortimanager:ObjectFirewallCasbprofileSaasapplicationAccessrule
    properties:
        action: string
        adom: string
        bypasses:
            - string
        casbProfile: string
        name: string
        objectFirewallCasbprofileSaasapplicationAccessruleId: string
        saasApplication: string
        scopetype: string
    

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

    CasbProfile string
    Casb Profile.
    SaasApplication string
    Saas Application.
    Action string
    Action. Valid values: block, monitor, bypass.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Bypasses List<string>
    Bypass. Valid values: av, dlp, web-filter, file-filter, video-filter.
    Name string
    Name.
    ObjectFirewallCasbprofileSaasapplicationAccessruleId 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.
    CasbProfile string
    Casb Profile.
    SaasApplication string
    Saas Application.
    Action string
    Action. Valid values: block, monitor, bypass.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Bypasses []string
    Bypass. Valid values: av, dlp, web-filter, file-filter, video-filter.
    Name string
    Name.
    ObjectFirewallCasbprofileSaasapplicationAccessruleId 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.
    casbProfile String
    Casb Profile.
    saasApplication String
    Saas Application.
    action String
    Action. Valid values: block, monitor, bypass.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bypasses List<String>
    Bypass. Valid values: av, dlp, web-filter, file-filter, video-filter.
    name String
    Name.
    objectFirewallCasbprofileSaasapplicationAccessruleId 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.
    casbProfile string
    Casb Profile.
    saasApplication string
    Saas Application.
    action string
    Action. Valid values: block, monitor, bypass.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bypasses string[]
    Bypass. Valid values: av, dlp, web-filter, file-filter, video-filter.
    name string
    Name.
    objectFirewallCasbprofileSaasapplicationAccessruleId 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.
    casb_profile str
    Casb Profile.
    saas_application str
    Saas Application.
    action str
    Action. Valid values: block, monitor, bypass.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bypasses Sequence[str]
    Bypass. Valid values: av, dlp, web-filter, file-filter, video-filter.
    name str
    Name.
    object_firewall_casbprofile_saasapplication_accessrule_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.
    casbProfile String
    Casb Profile.
    saasApplication String
    Saas Application.
    action String
    Action. Valid values: block, monitor, bypass.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bypasses List<String>
    Bypass. Valid values: av, dlp, web-filter, file-filter, video-filter.
    name String
    Name.
    objectFirewallCasbprofileSaasapplicationAccessruleId 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 ObjectFirewallCasbprofileSaasapplicationAccessrule 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 ObjectFirewallCasbprofileSaasapplicationAccessrule Resource

    Get an existing ObjectFirewallCasbprofileSaasapplicationAccessrule 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?: ObjectFirewallCasbprofileSaasapplicationAccessruleState, opts?: CustomResourceOptions): ObjectFirewallCasbprofileSaasapplicationAccessrule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            adom: Optional[str] = None,
            bypasses: Optional[Sequence[str]] = None,
            casb_profile: Optional[str] = None,
            name: Optional[str] = None,
            object_firewall_casbprofile_saasapplication_accessrule_id: Optional[str] = None,
            saas_application: Optional[str] = None,
            scopetype: Optional[str] = None) -> ObjectFirewallCasbprofileSaasapplicationAccessrule
    func GetObjectFirewallCasbprofileSaasapplicationAccessrule(ctx *Context, name string, id IDInput, state *ObjectFirewallCasbprofileSaasapplicationAccessruleState, opts ...ResourceOption) (*ObjectFirewallCasbprofileSaasapplicationAccessrule, error)
    public static ObjectFirewallCasbprofileSaasapplicationAccessrule Get(string name, Input<string> id, ObjectFirewallCasbprofileSaasapplicationAccessruleState? state, CustomResourceOptions? opts = null)
    public static ObjectFirewallCasbprofileSaasapplicationAccessrule get(String name, Output<String> id, ObjectFirewallCasbprofileSaasapplicationAccessruleState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectFirewallCasbprofileSaasapplicationAccessrule    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:
    Action string
    Action. Valid values: block, monitor, bypass.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Bypasses List<string>
    Bypass. Valid values: av, dlp, web-filter, file-filter, video-filter.
    CasbProfile string
    Casb Profile.
    Name string
    Name.
    ObjectFirewallCasbprofileSaasapplicationAccessruleId string
    an identifier for the resource with format {{name}}.
    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.
    Action string
    Action. Valid values: block, monitor, bypass.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Bypasses []string
    Bypass. Valid values: av, dlp, web-filter, file-filter, video-filter.
    CasbProfile string
    Casb Profile.
    Name string
    Name.
    ObjectFirewallCasbprofileSaasapplicationAccessruleId string
    an identifier for the resource with format {{name}}.
    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.
    action String
    Action. Valid values: block, monitor, bypass.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bypasses List<String>
    Bypass. Valid values: av, dlp, web-filter, file-filter, video-filter.
    casbProfile String
    Casb Profile.
    name String
    Name.
    objectFirewallCasbprofileSaasapplicationAccessruleId String
    an identifier for the resource with format {{name}}.
    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.
    action string
    Action. Valid values: block, monitor, bypass.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bypasses string[]
    Bypass. Valid values: av, dlp, web-filter, file-filter, video-filter.
    casbProfile string
    Casb Profile.
    name string
    Name.
    objectFirewallCasbprofileSaasapplicationAccessruleId string
    an identifier for the resource with format {{name}}.
    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.
    action str
    Action. Valid values: block, monitor, bypass.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bypasses Sequence[str]
    Bypass. Valid values: av, dlp, web-filter, file-filter, video-filter.
    casb_profile str
    Casb Profile.
    name str
    Name.
    object_firewall_casbprofile_saasapplication_accessrule_id str
    an identifier for the resource with format {{name}}.
    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.
    action String
    Action. Valid values: block, monitor, bypass.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bypasses List<String>
    Bypass. Valid values: av, dlp, web-filter, file-filter, video-filter.
    casbProfile String
    Casb Profile.
    name String
    Name.
    objectFirewallCasbprofileSaasapplicationAccessruleId String
    an identifier for the resource with format {{name}}.
    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.

    Import

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

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectFirewallCasbprofileSaasapplicationAccessrule:ObjectFirewallCasbprofileSaasapplicationAccessrule labelname {{name}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

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

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev