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

fortimanager.ObjectCasbUseractivityMatch

Explore with Pulumi AI

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

    CASB user activity match rules.

    This resource is a sub resource for variable match of resource fortimanager.ObjectCasbUseractivity. 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.

    • rules: fortimanager.ObjectCasbUseractivityMatchRules

    Create ObjectCasbUseractivityMatch Resource

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

    Constructor syntax

    new ObjectCasbUseractivityMatch(name: string, args: ObjectCasbUseractivityMatchArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectCasbUseractivityMatch(resource_name: str,
                                    args: ObjectCasbUseractivityMatchInitArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectCasbUseractivityMatch(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    user_activity: Optional[str] = None,
                                    adom: Optional[str] = None,
                                    dynamic_sort_subtable: Optional[str] = None,
                                    fosid: Optional[float] = None,
                                    object_casb_useractivity_match_id: Optional[str] = None,
                                    rules: Optional[Sequence[ObjectCasbUseractivityMatchRuleArgs]] = None,
                                    scopetype: Optional[str] = None,
                                    strategy: Optional[str] = None)
    func NewObjectCasbUseractivityMatch(ctx *Context, name string, args ObjectCasbUseractivityMatchArgs, opts ...ResourceOption) (*ObjectCasbUseractivityMatch, error)
    public ObjectCasbUseractivityMatch(string name, ObjectCasbUseractivityMatchArgs args, CustomResourceOptions? opts = null)
    public ObjectCasbUseractivityMatch(String name, ObjectCasbUseractivityMatchArgs args)
    public ObjectCasbUseractivityMatch(String name, ObjectCasbUseractivityMatchArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectCasbUseractivityMatch
    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 ObjectCasbUseractivityMatchArgs
    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 ObjectCasbUseractivityMatchInitArgs
    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 ObjectCasbUseractivityMatchArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectCasbUseractivityMatchArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectCasbUseractivityMatchArgs
    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 objectCasbUseractivityMatchResource = new Fortimanager.ObjectCasbUseractivityMatch("objectCasbUseractivityMatchResource", new()
    {
        UserActivity = "string",
        Adom = "string",
        DynamicSortSubtable = "string",
        Fosid = 0,
        ObjectCasbUseractivityMatchId = "string",
        Rules = new[]
        {
            new Fortimanager.Inputs.ObjectCasbUseractivityMatchRuleArgs
            {
                CaseSensitive = "string",
                Domains = new[]
                {
                    "string",
                },
                HeaderName = "string",
                Id = 0,
                MatchPattern = "string",
                MatchValue = "string",
                Methods = new[]
                {
                    "string",
                },
                Negate = "string",
                Type = "string",
            },
        },
        Scopetype = "string",
        Strategy = "string",
    });
    
    example, err := fortimanager.NewObjectCasbUseractivityMatch(ctx, "objectCasbUseractivityMatchResource", &fortimanager.ObjectCasbUseractivityMatchArgs{
    UserActivity: pulumi.String("string"),
    Adom: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    ObjectCasbUseractivityMatchId: pulumi.String("string"),
    Rules: .ObjectCasbUseractivityMatchRuleArray{
    &.ObjectCasbUseractivityMatchRuleArgs{
    CaseSensitive: pulumi.String("string"),
    Domains: pulumi.StringArray{
    pulumi.String("string"),
    },
    HeaderName: pulumi.String("string"),
    Id: pulumi.Float64(0),
    MatchPattern: pulumi.String("string"),
    MatchValue: pulumi.String("string"),
    Methods: pulumi.StringArray{
    pulumi.String("string"),
    },
    Negate: pulumi.String("string"),
    Type: pulumi.String("string"),
    },
    },
    Scopetype: pulumi.String("string"),
    Strategy: pulumi.String("string"),
    })
    
    var objectCasbUseractivityMatchResource = new ObjectCasbUseractivityMatch("objectCasbUseractivityMatchResource", ObjectCasbUseractivityMatchArgs.builder()
        .userActivity("string")
        .adom("string")
        .dynamicSortSubtable("string")
        .fosid(0)
        .objectCasbUseractivityMatchId("string")
        .rules(ObjectCasbUseractivityMatchRuleArgs.builder()
            .caseSensitive("string")
            .domains("string")
            .headerName("string")
            .id(0)
            .matchPattern("string")
            .matchValue("string")
            .methods("string")
            .negate("string")
            .type("string")
            .build())
        .scopetype("string")
        .strategy("string")
        .build());
    
    object_casb_useractivity_match_resource = fortimanager.ObjectCasbUseractivityMatch("objectCasbUseractivityMatchResource",
        user_activity="string",
        adom="string",
        dynamic_sort_subtable="string",
        fosid=0,
        object_casb_useractivity_match_id="string",
        rules=[{
            "case_sensitive": "string",
            "domains": ["string"],
            "header_name": "string",
            "id": 0,
            "match_pattern": "string",
            "match_value": "string",
            "methods": ["string"],
            "negate": "string",
            "type": "string",
        }],
        scopetype="string",
        strategy="string")
    
    const objectCasbUseractivityMatchResource = new fortimanager.ObjectCasbUseractivityMatch("objectCasbUseractivityMatchResource", {
        userActivity: "string",
        adom: "string",
        dynamicSortSubtable: "string",
        fosid: 0,
        objectCasbUseractivityMatchId: "string",
        rules: [{
            caseSensitive: "string",
            domains: ["string"],
            headerName: "string",
            id: 0,
            matchPattern: "string",
            matchValue: "string",
            methods: ["string"],
            negate: "string",
            type: "string",
        }],
        scopetype: "string",
        strategy: "string",
    });
    
    type: fortimanager:ObjectCasbUseractivityMatch
    properties:
        adom: string
        dynamicSortSubtable: string
        fosid: 0
        objectCasbUseractivityMatchId: string
        rules:
            - caseSensitive: string
              domains:
                - string
              headerName: string
              id: 0
              matchPattern: string
              matchValue: string
              methods:
                - string
              negate: string
              type: string
        scopetype: string
        strategy: string
        userActivity: string
    

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

    UserActivity string
    User Activity.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Fosid double
    CASB user activity match rules ID.
    ObjectCasbUseractivityMatchId string
    an identifier for the resource with format {{fosid}}.
    Rules List<ObjectCasbUseractivityMatchRule>
    Rules. The structure of rules block is documented below.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Strategy string
    CASB user activity rules strategy. Valid values: or, and.
    UserActivity string
    User Activity.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Fosid float64
    CASB user activity match rules ID.
    ObjectCasbUseractivityMatchId string
    an identifier for the resource with format {{fosid}}.
    Rules []ObjectCasbUseractivityMatchRuleArgs
    Rules. The structure of rules block is documented below.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Strategy string
    CASB user activity rules strategy. Valid values: or, and.
    userActivity String
    User Activity.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fosid Double
    CASB user activity match rules ID.
    objectCasbUseractivityMatchId String
    an identifier for the resource with format {{fosid}}.
    rules List<ObjectCasbUseractivityMatchRule>
    Rules. The structure of rules block is documented below.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    strategy String
    CASB user activity rules strategy. Valid values: or, and.
    userActivity string
    User Activity.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fosid number
    CASB user activity match rules ID.
    objectCasbUseractivityMatchId string
    an identifier for the resource with format {{fosid}}.
    rules ObjectCasbUseractivityMatchRule[]
    Rules. The structure of rules block is documented below.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    strategy string
    CASB user activity rules strategy. Valid values: or, and.
    user_activity str
    User Activity.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fosid float
    CASB user activity match rules ID.
    object_casb_useractivity_match_id str
    an identifier for the resource with format {{fosid}}.
    rules Sequence[ObjectCasbUseractivityMatchRuleArgs]
    Rules. The structure of rules block is documented below.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    strategy str
    CASB user activity rules strategy. Valid values: or, and.
    userActivity String
    User Activity.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fosid Number
    CASB user activity match rules ID.
    objectCasbUseractivityMatchId String
    an identifier for the resource with format {{fosid}}.
    rules List<Property Map>
    Rules. The structure of rules block is documented below.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    strategy String
    CASB user activity rules strategy. Valid values: or, and.

    Outputs

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

    Get an existing ObjectCasbUseractivityMatch 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?: ObjectCasbUseractivityMatchState, opts?: CustomResourceOptions): ObjectCasbUseractivityMatch
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            fosid: Optional[float] = None,
            object_casb_useractivity_match_id: Optional[str] = None,
            rules: Optional[Sequence[ObjectCasbUseractivityMatchRuleArgs]] = None,
            scopetype: Optional[str] = None,
            strategy: Optional[str] = None,
            user_activity: Optional[str] = None) -> ObjectCasbUseractivityMatch
    func GetObjectCasbUseractivityMatch(ctx *Context, name string, id IDInput, state *ObjectCasbUseractivityMatchState, opts ...ResourceOption) (*ObjectCasbUseractivityMatch, error)
    public static ObjectCasbUseractivityMatch Get(string name, Input<string> id, ObjectCasbUseractivityMatchState? state, CustomResourceOptions? opts = null)
    public static ObjectCasbUseractivityMatch get(String name, Output<String> id, ObjectCasbUseractivityMatchState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectCasbUseractivityMatch    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Fosid double
    CASB user activity match rules ID.
    ObjectCasbUseractivityMatchId string
    an identifier for the resource with format {{fosid}}.
    Rules List<ObjectCasbUseractivityMatchRule>
    Rules. The structure of rules block is documented below.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Strategy string
    CASB user activity rules strategy. Valid values: or, and.
    UserActivity string
    User Activity.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Fosid float64
    CASB user activity match rules ID.
    ObjectCasbUseractivityMatchId string
    an identifier for the resource with format {{fosid}}.
    Rules []ObjectCasbUseractivityMatchRuleArgs
    Rules. The structure of rules block is documented below.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Strategy string
    CASB user activity rules strategy. Valid values: or, and.
    UserActivity string
    User Activity.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fosid Double
    CASB user activity match rules ID.
    objectCasbUseractivityMatchId String
    an identifier for the resource with format {{fosid}}.
    rules List<ObjectCasbUseractivityMatchRule>
    Rules. The structure of rules block is documented below.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    strategy String
    CASB user activity rules strategy. Valid values: or, and.
    userActivity String
    User Activity.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fosid number
    CASB user activity match rules ID.
    objectCasbUseractivityMatchId string
    an identifier for the resource with format {{fosid}}.
    rules ObjectCasbUseractivityMatchRule[]
    Rules. The structure of rules block is documented below.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    strategy string
    CASB user activity rules strategy. Valid values: or, and.
    userActivity string
    User Activity.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fosid float
    CASB user activity match rules ID.
    object_casb_useractivity_match_id str
    an identifier for the resource with format {{fosid}}.
    rules Sequence[ObjectCasbUseractivityMatchRuleArgs]
    Rules. The structure of rules block is documented below.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    strategy str
    CASB user activity rules strategy. Valid values: or, and.
    user_activity str
    User Activity.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fosid Number
    CASB user activity match rules ID.
    objectCasbUseractivityMatchId String
    an identifier for the resource with format {{fosid}}.
    rules List<Property Map>
    Rules. The structure of rules block is documented below.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    strategy String
    CASB user activity rules strategy. Valid values: or, and.
    userActivity String
    User Activity.

    Supporting Types

    ObjectCasbUseractivityMatchRule, ObjectCasbUseractivityMatchRuleArgs

    CaseSensitive string
    CASB user activity match case sensitive. Valid values: disable, enable.
    Domains List<string>
    CASB user activity domain list.
    HeaderName string
    CASB user activity rule header name.
    Id double
    CASB user activity rule ID.
    MatchPattern string
    CASB user activity rule match pattern. Valid values: simple, substr, regexp.
    MatchValue string
    CASB user activity rule match value.
    Methods List<string>
    CASB user activity method list.
    Negate string
    Enable/disable what the matching strategy must not be. Valid values: disable, enable.
    Type string
    CASB user activity rule type. Valid values: domains, host, path, header, header-value, method.
    CaseSensitive string
    CASB user activity match case sensitive. Valid values: disable, enable.
    Domains []string
    CASB user activity domain list.
    HeaderName string
    CASB user activity rule header name.
    Id float64
    CASB user activity rule ID.
    MatchPattern string
    CASB user activity rule match pattern. Valid values: simple, substr, regexp.
    MatchValue string
    CASB user activity rule match value.
    Methods []string
    CASB user activity method list.
    Negate string
    Enable/disable what the matching strategy must not be. Valid values: disable, enable.
    Type string
    CASB user activity rule type. Valid values: domains, host, path, header, header-value, method.
    caseSensitive String
    CASB user activity match case sensitive. Valid values: disable, enable.
    domains List<String>
    CASB user activity domain list.
    headerName String
    CASB user activity rule header name.
    id Double
    CASB user activity rule ID.
    matchPattern String
    CASB user activity rule match pattern. Valid values: simple, substr, regexp.
    matchValue String
    CASB user activity rule match value.
    methods List<String>
    CASB user activity method list.
    negate String
    Enable/disable what the matching strategy must not be. Valid values: disable, enable.
    type String
    CASB user activity rule type. Valid values: domains, host, path, header, header-value, method.
    caseSensitive string
    CASB user activity match case sensitive. Valid values: disable, enable.
    domains string[]
    CASB user activity domain list.
    headerName string
    CASB user activity rule header name.
    id number
    CASB user activity rule ID.
    matchPattern string
    CASB user activity rule match pattern. Valid values: simple, substr, regexp.
    matchValue string
    CASB user activity rule match value.
    methods string[]
    CASB user activity method list.
    negate string
    Enable/disable what the matching strategy must not be. Valid values: disable, enable.
    type string
    CASB user activity rule type. Valid values: domains, host, path, header, header-value, method.
    case_sensitive str
    CASB user activity match case sensitive. Valid values: disable, enable.
    domains Sequence[str]
    CASB user activity domain list.
    header_name str
    CASB user activity rule header name.
    id float
    CASB user activity rule ID.
    match_pattern str
    CASB user activity rule match pattern. Valid values: simple, substr, regexp.
    match_value str
    CASB user activity rule match value.
    methods Sequence[str]
    CASB user activity method list.
    negate str
    Enable/disable what the matching strategy must not be. Valid values: disable, enable.
    type str
    CASB user activity rule type. Valid values: domains, host, path, header, header-value, method.
    caseSensitive String
    CASB user activity match case sensitive. Valid values: disable, enable.
    domains List<String>
    CASB user activity domain list.
    headerName String
    CASB user activity rule header name.
    id Number
    CASB user activity rule ID.
    matchPattern String
    CASB user activity rule match pattern. Valid values: simple, substr, regexp.
    matchValue String
    CASB user activity rule match value.
    methods List<String>
    CASB user activity method list.
    negate String
    Enable/disable what the matching strategy must not be. Valid values: disable, enable.
    type String
    CASB user activity rule type. Valid values: domains, host, path, header, header-value, method.

    Import

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

    Set import_options = [“user_activity=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectCasbUseractivityMatch:ObjectCasbUseractivityMatch labelname {{fosid}}
    

    $ 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