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

fortimanager.ObjectVideofilterProfileFortiguardcategory

Explore with Pulumi AI

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

    Configure FortiGuard categories.

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

    • filters: fortimanager.ObjectVideofilterProfileFortiguardcategoryFilters

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectVideofilterProfile = new fortimanager.ObjectVideofilterProfile("trnameObjectVideofilterProfile", {});
    const trnameObjectVideofilterProfileFortiguardcategory = new fortimanager.ObjectVideofilterProfileFortiguardcategory("trnameObjectVideofilterProfileFortiguardcategory", {
        profile: trnameObjectVideofilterProfile.name,
        filters: [{
            id: 1,
        }],
    }, {
        dependsOn: [trnameObjectVideofilterProfile],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_videofilter_profile = fortimanager.ObjectVideofilterProfile("trnameObjectVideofilterProfile")
    trname_object_videofilter_profile_fortiguardcategory = fortimanager.ObjectVideofilterProfileFortiguardcategory("trnameObjectVideofilterProfileFortiguardcategory",
        profile=trname_object_videofilter_profile.name,
        filters=[{
            "id": 1,
        }],
        opts = pulumi.ResourceOptions(depends_on=[trname_object_videofilter_profile]))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		trnameObjectVideofilterProfile, err := fortimanager.NewObjectVideofilterProfile(ctx, "trnameObjectVideofilterProfile", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectVideofilterProfileFortiguardcategory(ctx, "trnameObjectVideofilterProfileFortiguardcategory", &fortimanager.ObjectVideofilterProfileFortiguardcategoryArgs{
    			Profile: trnameObjectVideofilterProfile.Name,
    			Filters: fortimanager.ObjectVideofilterProfileFortiguardcategoryFilterArray{
    				&fortimanager.ObjectVideofilterProfileFortiguardcategoryFilterArgs{
    					Id: pulumi.Float64(1),
    				},
    			},
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectVideofilterProfile,
    		}))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trnameObjectVideofilterProfile = new Fortimanager.ObjectVideofilterProfile("trnameObjectVideofilterProfile");
    
        var trnameObjectVideofilterProfileFortiguardcategory = new Fortimanager.ObjectVideofilterProfileFortiguardcategory("trnameObjectVideofilterProfileFortiguardcategory", new()
        {
            Profile = trnameObjectVideofilterProfile.Name,
            Filters = new[]
            {
                new Fortimanager.Inputs.ObjectVideofilterProfileFortiguardcategoryFilterArgs
                {
                    Id = 1,
                },
            },
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectVideofilterProfile,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectVideofilterProfile;
    import com.pulumi.fortimanager.ObjectVideofilterProfileFortiguardcategory;
    import com.pulumi.fortimanager.ObjectVideofilterProfileFortiguardcategoryArgs;
    import com.pulumi.fortimanager.inputs.ObjectVideofilterProfileFortiguardcategoryFilterArgs;
    import com.pulumi.resources.CustomResourceOptions;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var trnameObjectVideofilterProfile = new ObjectVideofilterProfile("trnameObjectVideofilterProfile");
    
            var trnameObjectVideofilterProfileFortiguardcategory = new ObjectVideofilterProfileFortiguardcategory("trnameObjectVideofilterProfileFortiguardcategory", ObjectVideofilterProfileFortiguardcategoryArgs.builder()
                .profile(trnameObjectVideofilterProfile.name())
                .filters(ObjectVideofilterProfileFortiguardcategoryFilterArgs.builder()
                    .id(1)
                    .build())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectVideofilterProfile)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectVideofilterProfileFortiguardcategory:
        type: fortimanager:ObjectVideofilterProfileFortiguardcategory
        properties:
          profile: ${trnameObjectVideofilterProfile.name}
          filters:
            - id: 1
        options:
          dependsOn:
            - ${trnameObjectVideofilterProfile}
      trnameObjectVideofilterProfile:
        type: fortimanager:ObjectVideofilterProfile
    

    Create ObjectVideofilterProfileFortiguardcategory Resource

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

    Constructor syntax

    new ObjectVideofilterProfileFortiguardcategory(name: string, args: ObjectVideofilterProfileFortiguardcategoryArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectVideofilterProfileFortiguardcategory(resource_name: str,
                                                   args: ObjectVideofilterProfileFortiguardcategoryArgs,
                                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectVideofilterProfileFortiguardcategory(resource_name: str,
                                                   opts: Optional[ResourceOptions] = None,
                                                   profile: Optional[str] = None,
                                                   adom: Optional[str] = None,
                                                   dynamic_sort_subtable: Optional[str] = None,
                                                   filters: Optional[Sequence[ObjectVideofilterProfileFortiguardcategoryFilterArgs]] = None,
                                                   object_videofilter_profile_fortiguardcategory_id: Optional[str] = None,
                                                   scopetype: Optional[str] = None)
    func NewObjectVideofilterProfileFortiguardcategory(ctx *Context, name string, args ObjectVideofilterProfileFortiguardcategoryArgs, opts ...ResourceOption) (*ObjectVideofilterProfileFortiguardcategory, error)
    public ObjectVideofilterProfileFortiguardcategory(string name, ObjectVideofilterProfileFortiguardcategoryArgs args, CustomResourceOptions? opts = null)
    public ObjectVideofilterProfileFortiguardcategory(String name, ObjectVideofilterProfileFortiguardcategoryArgs args)
    public ObjectVideofilterProfileFortiguardcategory(String name, ObjectVideofilterProfileFortiguardcategoryArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectVideofilterProfileFortiguardcategory
    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 ObjectVideofilterProfileFortiguardcategoryArgs
    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 ObjectVideofilterProfileFortiguardcategoryArgs
    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 ObjectVideofilterProfileFortiguardcategoryArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectVideofilterProfileFortiguardcategoryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectVideofilterProfileFortiguardcategoryArgs
    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 objectVideofilterProfileFortiguardcategoryResource = new Fortimanager.ObjectVideofilterProfileFortiguardcategory("objectVideofilterProfileFortiguardcategoryResource", new()
    {
        Profile = "string",
        Adom = "string",
        DynamicSortSubtable = "string",
        Filters = new[]
        {
            new Fortimanager.Inputs.ObjectVideofilterProfileFortiguardcategoryFilterArgs
            {
                Action = "string",
                CategoryId = 0,
                Id = 0,
                Log = "string",
            },
        },
        ObjectVideofilterProfileFortiguardcategoryId = "string",
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectVideofilterProfileFortiguardcategory(ctx, "objectVideofilterProfileFortiguardcategoryResource", &fortimanager.ObjectVideofilterProfileFortiguardcategoryArgs{
    Profile: pulumi.String("string"),
    Adom: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    Filters: .ObjectVideofilterProfileFortiguardcategoryFilterArray{
    &.ObjectVideofilterProfileFortiguardcategoryFilterArgs{
    Action: pulumi.String("string"),
    CategoryId: pulumi.Float64(0),
    Id: pulumi.Float64(0),
    Log: pulumi.String("string"),
    },
    },
    ObjectVideofilterProfileFortiguardcategoryId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    })
    
    var objectVideofilterProfileFortiguardcategoryResource = new ObjectVideofilterProfileFortiguardcategory("objectVideofilterProfileFortiguardcategoryResource", ObjectVideofilterProfileFortiguardcategoryArgs.builder()
        .profile("string")
        .adom("string")
        .dynamicSortSubtable("string")
        .filters(ObjectVideofilterProfileFortiguardcategoryFilterArgs.builder()
            .action("string")
            .categoryId(0)
            .id(0)
            .log("string")
            .build())
        .objectVideofilterProfileFortiguardcategoryId("string")
        .scopetype("string")
        .build());
    
    object_videofilter_profile_fortiguardcategory_resource = fortimanager.ObjectVideofilterProfileFortiguardcategory("objectVideofilterProfileFortiguardcategoryResource",
        profile="string",
        adom="string",
        dynamic_sort_subtable="string",
        filters=[{
            "action": "string",
            "category_id": 0,
            "id": 0,
            "log": "string",
        }],
        object_videofilter_profile_fortiguardcategory_id="string",
        scopetype="string")
    
    const objectVideofilterProfileFortiguardcategoryResource = new fortimanager.ObjectVideofilterProfileFortiguardcategory("objectVideofilterProfileFortiguardcategoryResource", {
        profile: "string",
        adom: "string",
        dynamicSortSubtable: "string",
        filters: [{
            action: "string",
            categoryId: 0,
            id: 0,
            log: "string",
        }],
        objectVideofilterProfileFortiguardcategoryId: "string",
        scopetype: "string",
    });
    
    type: fortimanager:ObjectVideofilterProfileFortiguardcategory
    properties:
        adom: string
        dynamicSortSubtable: string
        filters:
            - action: string
              categoryId: 0
              id: 0
              log: string
        objectVideofilterProfileFortiguardcategoryId: string
        profile: string
        scopetype: string
    

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

    Profile string
    Profile.
    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.
    Filters List<ObjectVideofilterProfileFortiguardcategoryFilter>
    Filters. The structure of filters block is documented below.
    ObjectVideofilterProfileFortiguardcategoryId string
    an identifier for the resource.
    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.
    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.
    Filters []ObjectVideofilterProfileFortiguardcategoryFilterArgs
    Filters. The structure of filters block is documented below.
    ObjectVideofilterProfileFortiguardcategoryId string
    an identifier for the resource.
    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.
    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.
    filters List<ObjectVideofilterProfileFortiguardcategoryFilter>
    Filters. The structure of filters block is documented below.
    objectVideofilterProfileFortiguardcategoryId String
    an identifier for the resource.
    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.
    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.
    filters ObjectVideofilterProfileFortiguardcategoryFilter[]
    Filters. The structure of filters block is documented below.
    objectVideofilterProfileFortiguardcategoryId string
    an identifier for the resource.
    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.
    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.
    filters Sequence[ObjectVideofilterProfileFortiguardcategoryFilterArgs]
    Filters. The structure of filters block is documented below.
    object_videofilter_profile_fortiguardcategory_id str
    an identifier for the resource.
    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.
    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.
    filters List<Property Map>
    Filters. The structure of filters block is documented below.
    objectVideofilterProfileFortiguardcategoryId String
    an identifier for the resource.
    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 ObjectVideofilterProfileFortiguardcategory 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 ObjectVideofilterProfileFortiguardcategory Resource

    Get an existing ObjectVideofilterProfileFortiguardcategory 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?: ObjectVideofilterProfileFortiguardcategoryState, opts?: CustomResourceOptions): ObjectVideofilterProfileFortiguardcategory
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            filters: Optional[Sequence[ObjectVideofilterProfileFortiguardcategoryFilterArgs]] = None,
            object_videofilter_profile_fortiguardcategory_id: Optional[str] = None,
            profile: Optional[str] = None,
            scopetype: Optional[str] = None) -> ObjectVideofilterProfileFortiguardcategory
    func GetObjectVideofilterProfileFortiguardcategory(ctx *Context, name string, id IDInput, state *ObjectVideofilterProfileFortiguardcategoryState, opts ...ResourceOption) (*ObjectVideofilterProfileFortiguardcategory, error)
    public static ObjectVideofilterProfileFortiguardcategory Get(string name, Input<string> id, ObjectVideofilterProfileFortiguardcategoryState? state, CustomResourceOptions? opts = null)
    public static ObjectVideofilterProfileFortiguardcategory get(String name, Output<String> id, ObjectVideofilterProfileFortiguardcategoryState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectVideofilterProfileFortiguardcategory    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.
    Filters List<ObjectVideofilterProfileFortiguardcategoryFilter>
    Filters. The structure of filters block is documented below.
    ObjectVideofilterProfileFortiguardcategoryId string
    an identifier for the resource.
    Profile string
    Profile.
    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.
    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.
    Filters []ObjectVideofilterProfileFortiguardcategoryFilterArgs
    Filters. The structure of filters block is documented below.
    ObjectVideofilterProfileFortiguardcategoryId string
    an identifier for the resource.
    Profile string
    Profile.
    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.
    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.
    filters List<ObjectVideofilterProfileFortiguardcategoryFilter>
    Filters. The structure of filters block is documented below.
    objectVideofilterProfileFortiguardcategoryId String
    an identifier for the resource.
    profile String
    Profile.
    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.
    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.
    filters ObjectVideofilterProfileFortiguardcategoryFilter[]
    Filters. The structure of filters block is documented below.
    objectVideofilterProfileFortiguardcategoryId string
    an identifier for the resource.
    profile string
    Profile.
    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.
    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.
    filters Sequence[ObjectVideofilterProfileFortiguardcategoryFilterArgs]
    Filters. The structure of filters block is documented below.
    object_videofilter_profile_fortiguardcategory_id str
    an identifier for the resource.
    profile str
    Profile.
    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.
    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.
    filters List<Property Map>
    Filters. The structure of filters block is documented below.
    objectVideofilterProfileFortiguardcategoryId String
    an identifier for the resource.
    profile String
    Profile.
    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

    ObjectVideofilterProfileFortiguardcategoryFilter, ObjectVideofilterProfileFortiguardcategoryFilterArgs

    Action string
    VideoFilter action. Valid values: block, bypass, monitor.
    CategoryId double
    Category ID.
    Id double
    ID.
    Log string
    Enable/disable logging. Valid values: disable, enable.
    Action string
    VideoFilter action. Valid values: block, bypass, monitor.
    CategoryId float64
    Category ID.
    Id float64
    ID.
    Log string
    Enable/disable logging. Valid values: disable, enable.
    action String
    VideoFilter action. Valid values: block, bypass, monitor.
    categoryId Double
    Category ID.
    id Double
    ID.
    log String
    Enable/disable logging. Valid values: disable, enable.
    action string
    VideoFilter action. Valid values: block, bypass, monitor.
    categoryId number
    Category ID.
    id number
    ID.
    log string
    Enable/disable logging. Valid values: disable, enable.
    action str
    VideoFilter action. Valid values: block, bypass, monitor.
    category_id float
    Category ID.
    id float
    ID.
    log str
    Enable/disable logging. Valid values: disable, enable.
    action String
    VideoFilter action. Valid values: block, bypass, monitor.
    categoryId Number
    Category ID.
    id Number
    ID.
    log String
    Enable/disable logging. Valid values: disable, enable.

    Import

    ObjectVideofilter ProfileFortiguardCategory can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectVideofilterProfileFortiguardcategory:ObjectVideofilterProfileFortiguardcategory labelname ObjectVideofilterProfileFortiguardCategory
    

    $ 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