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

fortimanager.ObjectVideofilterYoutubechannelfilter

Explore with Pulumi AI

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

    Configure YouTube channel filter.

    The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • entries: fortimanager_object_videofilter_youtubechannelfilter_entries

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectVideofilterYoutubechannelfilter("trname", {
        entries: [{
            action: "monitor",
            channelId: "23",
            id: 2,
        }],
        fosid: 12,
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectVideofilterYoutubechannelfilter("trname",
        entries=[{
            "action": "monitor",
            "channel_id": "23",
            "id": 2,
        }],
        fosid=12)
    
    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 {
    		_, err := fortimanager.NewObjectVideofilterYoutubechannelfilter(ctx, "trname", &fortimanager.ObjectVideofilterYoutubechannelfilterArgs{
    			Entries: fortimanager.ObjectVideofilterYoutubechannelfilterEntryArray{
    				&fortimanager.ObjectVideofilterYoutubechannelfilterEntryArgs{
    					Action:    pulumi.String("monitor"),
    					ChannelId: pulumi.String("23"),
    					Id:        pulumi.Float64(2),
    				},
    			},
    			Fosid: pulumi.Float64(12),
    		})
    		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 trname = new Fortimanager.ObjectVideofilterYoutubechannelfilter("trname", new()
        {
            Entries = new[]
            {
                new Fortimanager.Inputs.ObjectVideofilterYoutubechannelfilterEntryArgs
                {
                    Action = "monitor",
                    ChannelId = "23",
                    Id = 2,
                },
            },
            Fosid = 12,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectVideofilterYoutubechannelfilter;
    import com.pulumi.fortimanager.ObjectVideofilterYoutubechannelfilterArgs;
    import com.pulumi.fortimanager.inputs.ObjectVideofilterYoutubechannelfilterEntryArgs;
    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 trname = new ObjectVideofilterYoutubechannelfilter("trname", ObjectVideofilterYoutubechannelfilterArgs.builder()
                .entries(ObjectVideofilterYoutubechannelfilterEntryArgs.builder()
                    .action("monitor")
                    .channelId(23)
                    .id(2)
                    .build())
                .fosid(12)
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectVideofilterYoutubechannelfilter
        properties:
          entries:
            - action: monitor
              channelId: 23
              id: 2
          fosid: 12
    

    Create ObjectVideofilterYoutubechannelfilter Resource

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

    Constructor syntax

    new ObjectVideofilterYoutubechannelfilter(name: string, args?: ObjectVideofilterYoutubechannelfilterArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectVideofilterYoutubechannelfilter(resource_name: str,
                                              args: Optional[ObjectVideofilterYoutubechannelfilterArgs] = None,
                                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectVideofilterYoutubechannelfilter(resource_name: str,
                                              opts: Optional[ResourceOptions] = None,
                                              adom: Optional[str] = None,
                                              comment: Optional[str] = None,
                                              default_action: Optional[str] = None,
                                              dynamic_sort_subtable: Optional[str] = None,
                                              entries: Optional[Sequence[ObjectVideofilterYoutubechannelfilterEntryArgs]] = None,
                                              fosid: Optional[float] = None,
                                              log: Optional[str] = None,
                                              name: Optional[str] = None,
                                              object_videofilter_youtubechannelfilter_id: Optional[str] = None,
                                              override_category: Optional[str] = None,
                                              scopetype: Optional[str] = None)
    func NewObjectVideofilterYoutubechannelfilter(ctx *Context, name string, args *ObjectVideofilterYoutubechannelfilterArgs, opts ...ResourceOption) (*ObjectVideofilterYoutubechannelfilter, error)
    public ObjectVideofilterYoutubechannelfilter(string name, ObjectVideofilterYoutubechannelfilterArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectVideofilterYoutubechannelfilter(String name, ObjectVideofilterYoutubechannelfilterArgs args)
    public ObjectVideofilterYoutubechannelfilter(String name, ObjectVideofilterYoutubechannelfilterArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectVideofilterYoutubechannelfilter
    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 ObjectVideofilterYoutubechannelfilterArgs
    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 ObjectVideofilterYoutubechannelfilterArgs
    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 ObjectVideofilterYoutubechannelfilterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectVideofilterYoutubechannelfilterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectVideofilterYoutubechannelfilterArgs
    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 objectVideofilterYoutubechannelfilterResource = new Fortimanager.ObjectVideofilterYoutubechannelfilter("objectVideofilterYoutubechannelfilterResource", new()
    {
        Adom = "string",
        Comment = "string",
        DefaultAction = "string",
        DynamicSortSubtable = "string",
        Entries = new[]
        {
            new Fortimanager.Inputs.ObjectVideofilterYoutubechannelfilterEntryArgs
            {
                Action = "string",
                ChannelId = "string",
                Comment = "string",
                Id = 0,
            },
        },
        Fosid = 0,
        Log = "string",
        Name = "string",
        ObjectVideofilterYoutubechannelfilterId = "string",
        OverrideCategory = "string",
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectVideofilterYoutubechannelfilter(ctx, "objectVideofilterYoutubechannelfilterResource", &fortimanager.ObjectVideofilterYoutubechannelfilterArgs{
    Adom: pulumi.String("string"),
    Comment: pulumi.String("string"),
    DefaultAction: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    Entries: .ObjectVideofilterYoutubechannelfilterEntryArray{
    &.ObjectVideofilterYoutubechannelfilterEntryArgs{
    Action: pulumi.String("string"),
    ChannelId: pulumi.String("string"),
    Comment: pulumi.String("string"),
    Id: pulumi.Float64(0),
    },
    },
    Fosid: pulumi.Float64(0),
    Log: pulumi.String("string"),
    Name: pulumi.String("string"),
    ObjectVideofilterYoutubechannelfilterId: pulumi.String("string"),
    OverrideCategory: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    })
    
    var objectVideofilterYoutubechannelfilterResource = new ObjectVideofilterYoutubechannelfilter("objectVideofilterYoutubechannelfilterResource", ObjectVideofilterYoutubechannelfilterArgs.builder()
        .adom("string")
        .comment("string")
        .defaultAction("string")
        .dynamicSortSubtable("string")
        .entries(ObjectVideofilterYoutubechannelfilterEntryArgs.builder()
            .action("string")
            .channelId("string")
            .comment("string")
            .id(0)
            .build())
        .fosid(0)
        .log("string")
        .name("string")
        .objectVideofilterYoutubechannelfilterId("string")
        .overrideCategory("string")
        .scopetype("string")
        .build());
    
    object_videofilter_youtubechannelfilter_resource = fortimanager.ObjectVideofilterYoutubechannelfilter("objectVideofilterYoutubechannelfilterResource",
        adom="string",
        comment="string",
        default_action="string",
        dynamic_sort_subtable="string",
        entries=[{
            "action": "string",
            "channel_id": "string",
            "comment": "string",
            "id": 0,
        }],
        fosid=0,
        log="string",
        name="string",
        object_videofilter_youtubechannelfilter_id="string",
        override_category="string",
        scopetype="string")
    
    const objectVideofilterYoutubechannelfilterResource = new fortimanager.ObjectVideofilterYoutubechannelfilter("objectVideofilterYoutubechannelfilterResource", {
        adom: "string",
        comment: "string",
        defaultAction: "string",
        dynamicSortSubtable: "string",
        entries: [{
            action: "string",
            channelId: "string",
            comment: "string",
            id: 0,
        }],
        fosid: 0,
        log: "string",
        name: "string",
        objectVideofilterYoutubechannelfilterId: "string",
        overrideCategory: "string",
        scopetype: "string",
    });
    
    type: fortimanager:ObjectVideofilterYoutubechannelfilter
    properties:
        adom: string
        comment: string
        defaultAction: string
        dynamicSortSubtable: string
        entries:
            - action: string
              channelId: string
              comment: string
              id: 0
        fosid: 0
        log: string
        name: string
        objectVideofilterYoutubechannelfilterId: string
        overrideCategory: string
        scopetype: string
    

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

    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Comment.
    DefaultAction string
    YouTube channel filter default action. Valid values: monitor, block, allow.
    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.
    Entries List<ObjectVideofilterYoutubechannelfilterEntry>
    Entries. The structure of entries block is documented below.
    Fosid double
    ID.
    Log string
    Eanble/disable logging. Valid values: disable, enable.
    Name string
    Name.
    ObjectVideofilterYoutubechannelfilterId string
    an identifier for the resource with format {{fosid}}.
    OverrideCategory string
    Enable/disable overriding category filtering result. Valid values: disable, enable.
    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.
    Comment string
    Comment.
    DefaultAction string
    YouTube channel filter default action. Valid values: monitor, block, allow.
    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.
    Entries []ObjectVideofilterYoutubechannelfilterEntryArgs
    Entries. The structure of entries block is documented below.
    Fosid float64
    ID.
    Log string
    Eanble/disable logging. Valid values: disable, enable.
    Name string
    Name.
    ObjectVideofilterYoutubechannelfilterId string
    an identifier for the resource with format {{fosid}}.
    OverrideCategory string
    Enable/disable overriding category filtering result. Valid values: disable, enable.
    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.
    comment String
    Comment.
    defaultAction String
    YouTube channel filter default action. Valid values: monitor, block, allow.
    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.
    entries List<ObjectVideofilterYoutubechannelfilterEntry>
    Entries. The structure of entries block is documented below.
    fosid Double
    ID.
    log String
    Eanble/disable logging. Valid values: disable, enable.
    name String
    Name.
    objectVideofilterYoutubechannelfilterId String
    an identifier for the resource with format {{fosid}}.
    overrideCategory String
    Enable/disable overriding category filtering result. Valid values: disable, enable.
    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.
    comment string
    Comment.
    defaultAction string
    YouTube channel filter default action. Valid values: monitor, block, allow.
    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.
    entries ObjectVideofilterYoutubechannelfilterEntry[]
    Entries. The structure of entries block is documented below.
    fosid number
    ID.
    log string
    Eanble/disable logging. Valid values: disable, enable.
    name string
    Name.
    objectVideofilterYoutubechannelfilterId string
    an identifier for the resource with format {{fosid}}.
    overrideCategory string
    Enable/disable overriding category filtering result. Valid values: disable, enable.
    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.
    comment str
    Comment.
    default_action str
    YouTube channel filter default action. Valid values: monitor, block, allow.
    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.
    entries Sequence[ObjectVideofilterYoutubechannelfilterEntryArgs]
    Entries. The structure of entries block is documented below.
    fosid float
    ID.
    log str
    Eanble/disable logging. Valid values: disable, enable.
    name str
    Name.
    object_videofilter_youtubechannelfilter_id str
    an identifier for the resource with format {{fosid}}.
    override_category str
    Enable/disable overriding category filtering result. Valid values: disable, enable.
    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.
    comment String
    Comment.
    defaultAction String
    YouTube channel filter default action. Valid values: monitor, block, allow.
    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.
    entries List<Property Map>
    Entries. The structure of entries block is documented below.
    fosid Number
    ID.
    log String
    Eanble/disable logging. Valid values: disable, enable.
    name String
    Name.
    objectVideofilterYoutubechannelfilterId String
    an identifier for the resource with format {{fosid}}.
    overrideCategory String
    Enable/disable overriding category filtering result. Valid values: disable, enable.
    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 ObjectVideofilterYoutubechannelfilter 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 ObjectVideofilterYoutubechannelfilter Resource

    Get an existing ObjectVideofilterYoutubechannelfilter 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?: ObjectVideofilterYoutubechannelfilterState, opts?: CustomResourceOptions): ObjectVideofilterYoutubechannelfilter
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            comment: Optional[str] = None,
            default_action: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            entries: Optional[Sequence[ObjectVideofilterYoutubechannelfilterEntryArgs]] = None,
            fosid: Optional[float] = None,
            log: Optional[str] = None,
            name: Optional[str] = None,
            object_videofilter_youtubechannelfilter_id: Optional[str] = None,
            override_category: Optional[str] = None,
            scopetype: Optional[str] = None) -> ObjectVideofilterYoutubechannelfilter
    func GetObjectVideofilterYoutubechannelfilter(ctx *Context, name string, id IDInput, state *ObjectVideofilterYoutubechannelfilterState, opts ...ResourceOption) (*ObjectVideofilterYoutubechannelfilter, error)
    public static ObjectVideofilterYoutubechannelfilter Get(string name, Input<string> id, ObjectVideofilterYoutubechannelfilterState? state, CustomResourceOptions? opts = null)
    public static ObjectVideofilterYoutubechannelfilter get(String name, Output<String> id, ObjectVideofilterYoutubechannelfilterState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectVideofilterYoutubechannelfilter    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.
    Comment string
    Comment.
    DefaultAction string
    YouTube channel filter default action. Valid values: monitor, block, allow.
    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.
    Entries List<ObjectVideofilterYoutubechannelfilterEntry>
    Entries. The structure of entries block is documented below.
    Fosid double
    ID.
    Log string
    Eanble/disable logging. Valid values: disable, enable.
    Name string
    Name.
    ObjectVideofilterYoutubechannelfilterId string
    an identifier for the resource with format {{fosid}}.
    OverrideCategory string
    Enable/disable overriding category filtering result. Valid values: disable, enable.
    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.
    Comment string
    Comment.
    DefaultAction string
    YouTube channel filter default action. Valid values: monitor, block, allow.
    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.
    Entries []ObjectVideofilterYoutubechannelfilterEntryArgs
    Entries. The structure of entries block is documented below.
    Fosid float64
    ID.
    Log string
    Eanble/disable logging. Valid values: disable, enable.
    Name string
    Name.
    ObjectVideofilterYoutubechannelfilterId string
    an identifier for the resource with format {{fosid}}.
    OverrideCategory string
    Enable/disable overriding category filtering result. Valid values: disable, enable.
    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.
    comment String
    Comment.
    defaultAction String
    YouTube channel filter default action. Valid values: monitor, block, allow.
    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.
    entries List<ObjectVideofilterYoutubechannelfilterEntry>
    Entries. The structure of entries block is documented below.
    fosid Double
    ID.
    log String
    Eanble/disable logging. Valid values: disable, enable.
    name String
    Name.
    objectVideofilterYoutubechannelfilterId String
    an identifier for the resource with format {{fosid}}.
    overrideCategory String
    Enable/disable overriding category filtering result. Valid values: disable, enable.
    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.
    comment string
    Comment.
    defaultAction string
    YouTube channel filter default action. Valid values: monitor, block, allow.
    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.
    entries ObjectVideofilterYoutubechannelfilterEntry[]
    Entries. The structure of entries block is documented below.
    fosid number
    ID.
    log string
    Eanble/disable logging. Valid values: disable, enable.
    name string
    Name.
    objectVideofilterYoutubechannelfilterId string
    an identifier for the resource with format {{fosid}}.
    overrideCategory string
    Enable/disable overriding category filtering result. Valid values: disable, enable.
    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.
    comment str
    Comment.
    default_action str
    YouTube channel filter default action. Valid values: monitor, block, allow.
    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.
    entries Sequence[ObjectVideofilterYoutubechannelfilterEntryArgs]
    Entries. The structure of entries block is documented below.
    fosid float
    ID.
    log str
    Eanble/disable logging. Valid values: disable, enable.
    name str
    Name.
    object_videofilter_youtubechannelfilter_id str
    an identifier for the resource with format {{fosid}}.
    override_category str
    Enable/disable overriding category filtering result. Valid values: disable, enable.
    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.
    comment String
    Comment.
    defaultAction String
    YouTube channel filter default action. Valid values: monitor, block, allow.
    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.
    entries List<Property Map>
    Entries. The structure of entries block is documented below.
    fosid Number
    ID.
    log String
    Eanble/disable logging. Valid values: disable, enable.
    name String
    Name.
    objectVideofilterYoutubechannelfilterId String
    an identifier for the resource with format {{fosid}}.
    overrideCategory String
    Enable/disable overriding category filtering result. Valid values: disable, enable.
    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

    ObjectVideofilterYoutubechannelfilterEntry, ObjectVideofilterYoutubechannelfilterEntryArgs

    Action string
    YouTube channel filter action. Valid values: block, bypass, monitor.
    ChannelId string
    Channel ID.
    Comment string
    Comment.
    Id double
    ID.
    Action string
    YouTube channel filter action. Valid values: block, bypass, monitor.
    ChannelId string
    Channel ID.
    Comment string
    Comment.
    Id float64
    ID.
    action String
    YouTube channel filter action. Valid values: block, bypass, monitor.
    channelId String
    Channel ID.
    comment String
    Comment.
    id Double
    ID.
    action string
    YouTube channel filter action. Valid values: block, bypass, monitor.
    channelId string
    Channel ID.
    comment string
    Comment.
    id number
    ID.
    action str
    YouTube channel filter action. Valid values: block, bypass, monitor.
    channel_id str
    Channel ID.
    comment str
    Comment.
    id float
    ID.
    action String
    YouTube channel filter action. Valid values: block, bypass, monitor.
    channelId String
    Channel ID.
    comment String
    Comment.
    id Number
    ID.

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectVideofilterYoutubechannelfilter:ObjectVideofilterYoutubechannelfilter 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