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

fortimanager.ObjectWebfilterContentheaderEntries

Explore with Pulumi AI

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

    Configure content types used by web filter.

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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectWebfilterContentheader = new fortimanager.ObjectWebfilterContentheader("trnameObjectWebfilterContentheader", {
        comment: "This is a Terraform example",
        fosid: 4,
    });
    const trnameObjectWebfilterContentheaderEntries = new fortimanager.ObjectWebfilterContentheaderEntries("trnameObjectWebfilterContentheaderEntries", {
        category: "2",
        pattern: "abc",
        contentHeader: trnameObjectWebfilterContentheader.fosid,
    }, {
        dependsOn: [trnameObjectWebfilterContentheader],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_webfilter_contentheader = fortimanager.ObjectWebfilterContentheader("trnameObjectWebfilterContentheader",
        comment="This is a Terraform example",
        fosid=4)
    trname_object_webfilter_contentheader_entries = fortimanager.ObjectWebfilterContentheaderEntries("trnameObjectWebfilterContentheaderEntries",
        category="2",
        pattern="abc",
        content_header=trname_object_webfilter_contentheader.fosid,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_webfilter_contentheader]))
    
    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 {
    		trnameObjectWebfilterContentheader, err := fortimanager.NewObjectWebfilterContentheader(ctx, "trnameObjectWebfilterContentheader", &fortimanager.ObjectWebfilterContentheaderArgs{
    			Comment: pulumi.String("This is a Terraform example"),
    			Fosid:   pulumi.Float64(4),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectWebfilterContentheaderEntries(ctx, "trnameObjectWebfilterContentheaderEntries", &fortimanager.ObjectWebfilterContentheaderEntriesArgs{
    			Category:      pulumi.String("2"),
    			Pattern:       pulumi.String("abc"),
    			ContentHeader: trnameObjectWebfilterContentheader.Fosid,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectWebfilterContentheader,
    		}))
    		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 trnameObjectWebfilterContentheader = new Fortimanager.ObjectWebfilterContentheader("trnameObjectWebfilterContentheader", new()
        {
            Comment = "This is a Terraform example",
            Fosid = 4,
        });
    
        var trnameObjectWebfilterContentheaderEntries = new Fortimanager.ObjectWebfilterContentheaderEntries("trnameObjectWebfilterContentheaderEntries", new()
        {
            Category = "2",
            Pattern = "abc",
            ContentHeader = trnameObjectWebfilterContentheader.Fosid,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectWebfilterContentheader,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWebfilterContentheader;
    import com.pulumi.fortimanager.ObjectWebfilterContentheaderArgs;
    import com.pulumi.fortimanager.ObjectWebfilterContentheaderEntries;
    import com.pulumi.fortimanager.ObjectWebfilterContentheaderEntriesArgs;
    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 trnameObjectWebfilterContentheader = new ObjectWebfilterContentheader("trnameObjectWebfilterContentheader", ObjectWebfilterContentheaderArgs.builder()
                .comment("This is a Terraform example")
                .fosid(4)
                .build());
    
            var trnameObjectWebfilterContentheaderEntries = new ObjectWebfilterContentheaderEntries("trnameObjectWebfilterContentheaderEntries", ObjectWebfilterContentheaderEntriesArgs.builder()
                .category(2)
                .pattern("abc")
                .contentHeader(trnameObjectWebfilterContentheader.fosid())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectWebfilterContentheader)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectWebfilterContentheaderEntries:
        type: fortimanager:ObjectWebfilterContentheaderEntries
        properties:
          category: 2
          pattern: abc
          contentHeader: ${trnameObjectWebfilterContentheader.fosid}
        options:
          dependsOn:
            - ${trnameObjectWebfilterContentheader}
      trnameObjectWebfilterContentheader:
        type: fortimanager:ObjectWebfilterContentheader
        properties:
          comment: This is a Terraform example
          fosid: 4
    

    Create ObjectWebfilterContentheaderEntries Resource

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

    Constructor syntax

    new ObjectWebfilterContentheaderEntries(name: string, args: ObjectWebfilterContentheaderEntriesArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWebfilterContentheaderEntries(resource_name: str,
                                            args: ObjectWebfilterContentheaderEntriesArgs,
                                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWebfilterContentheaderEntries(resource_name: str,
                                            opts: Optional[ResourceOptions] = None,
                                            content_header: Optional[str] = None,
                                            action: Optional[str] = None,
                                            adom: Optional[str] = None,
                                            category: Optional[str] = None,
                                            object_webfilter_contentheader_entries_id: Optional[str] = None,
                                            pattern: Optional[str] = None,
                                            scopetype: Optional[str] = None)
    func NewObjectWebfilterContentheaderEntries(ctx *Context, name string, args ObjectWebfilterContentheaderEntriesArgs, opts ...ResourceOption) (*ObjectWebfilterContentheaderEntries, error)
    public ObjectWebfilterContentheaderEntries(string name, ObjectWebfilterContentheaderEntriesArgs args, CustomResourceOptions? opts = null)
    public ObjectWebfilterContentheaderEntries(String name, ObjectWebfilterContentheaderEntriesArgs args)
    public ObjectWebfilterContentheaderEntries(String name, ObjectWebfilterContentheaderEntriesArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWebfilterContentheaderEntries
    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 ObjectWebfilterContentheaderEntriesArgs
    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 ObjectWebfilterContentheaderEntriesArgs
    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 ObjectWebfilterContentheaderEntriesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWebfilterContentheaderEntriesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWebfilterContentheaderEntriesArgs
    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 objectWebfilterContentheaderEntriesResource = new Fortimanager.ObjectWebfilterContentheaderEntries("objectWebfilterContentheaderEntriesResource", new()
    {
        ContentHeader = "string",
        Action = "string",
        Adom = "string",
        Category = "string",
        ObjectWebfilterContentheaderEntriesId = "string",
        Pattern = "string",
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectWebfilterContentheaderEntries(ctx, "objectWebfilterContentheaderEntriesResource", &fortimanager.ObjectWebfilterContentheaderEntriesArgs{
    ContentHeader: pulumi.String("string"),
    Action: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Category: pulumi.String("string"),
    ObjectWebfilterContentheaderEntriesId: pulumi.String("string"),
    Pattern: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    })
    
    var objectWebfilterContentheaderEntriesResource = new ObjectWebfilterContentheaderEntries("objectWebfilterContentheaderEntriesResource", ObjectWebfilterContentheaderEntriesArgs.builder()
        .contentHeader("string")
        .action("string")
        .adom("string")
        .category("string")
        .objectWebfilterContentheaderEntriesId("string")
        .pattern("string")
        .scopetype("string")
        .build());
    
    object_webfilter_contentheader_entries_resource = fortimanager.ObjectWebfilterContentheaderEntries("objectWebfilterContentheaderEntriesResource",
        content_header="string",
        action="string",
        adom="string",
        category="string",
        object_webfilter_contentheader_entries_id="string",
        pattern="string",
        scopetype="string")
    
    const objectWebfilterContentheaderEntriesResource = new fortimanager.ObjectWebfilterContentheaderEntries("objectWebfilterContentheaderEntriesResource", {
        contentHeader: "string",
        action: "string",
        adom: "string",
        category: "string",
        objectWebfilterContentheaderEntriesId: "string",
        pattern: "string",
        scopetype: "string",
    });
    
    type: fortimanager:ObjectWebfilterContentheaderEntries
    properties:
        action: string
        adom: string
        category: string
        contentHeader: string
        objectWebfilterContentheaderEntriesId: string
        pattern: string
        scopetype: string
    

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

    ContentHeader string
    Content Header.
    Action string
    Action to take for this content type. Valid values: exempt, block, allow.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Category string
    Categories that this content type applies to.
    ObjectWebfilterContentheaderEntriesId string
    an identifier for the resource with format {{pattern}}.
    Pattern string
    Content type (regular expression).
    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.
    ContentHeader string
    Content Header.
    Action string
    Action to take for this content type. Valid values: exempt, block, allow.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Category string
    Categories that this content type applies to.
    ObjectWebfilterContentheaderEntriesId string
    an identifier for the resource with format {{pattern}}.
    Pattern string
    Content type (regular expression).
    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.
    contentHeader String
    Content Header.
    action String
    Action to take for this content type. Valid values: exempt, block, allow.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category String
    Categories that this content type applies to.
    objectWebfilterContentheaderEntriesId String
    an identifier for the resource with format {{pattern}}.
    pattern String
    Content type (regular expression).
    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.
    contentHeader string
    Content Header.
    action string
    Action to take for this content type. Valid values: exempt, block, allow.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category string
    Categories that this content type applies to.
    objectWebfilterContentheaderEntriesId string
    an identifier for the resource with format {{pattern}}.
    pattern string
    Content type (regular expression).
    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.
    content_header str
    Content Header.
    action str
    Action to take for this content type. Valid values: exempt, block, allow.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category str
    Categories that this content type applies to.
    object_webfilter_contentheader_entries_id str
    an identifier for the resource with format {{pattern}}.
    pattern str
    Content type (regular expression).
    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.
    contentHeader String
    Content Header.
    action String
    Action to take for this content type. Valid values: exempt, block, allow.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category String
    Categories that this content type applies to.
    objectWebfilterContentheaderEntriesId String
    an identifier for the resource with format {{pattern}}.
    pattern String
    Content type (regular expression).
    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 ObjectWebfilterContentheaderEntries 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 ObjectWebfilterContentheaderEntries Resource

    Get an existing ObjectWebfilterContentheaderEntries 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?: ObjectWebfilterContentheaderEntriesState, opts?: CustomResourceOptions): ObjectWebfilterContentheaderEntries
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            adom: Optional[str] = None,
            category: Optional[str] = None,
            content_header: Optional[str] = None,
            object_webfilter_contentheader_entries_id: Optional[str] = None,
            pattern: Optional[str] = None,
            scopetype: Optional[str] = None) -> ObjectWebfilterContentheaderEntries
    func GetObjectWebfilterContentheaderEntries(ctx *Context, name string, id IDInput, state *ObjectWebfilterContentheaderEntriesState, opts ...ResourceOption) (*ObjectWebfilterContentheaderEntries, error)
    public static ObjectWebfilterContentheaderEntries Get(string name, Input<string> id, ObjectWebfilterContentheaderEntriesState? state, CustomResourceOptions? opts = null)
    public static ObjectWebfilterContentheaderEntries get(String name, Output<String> id, ObjectWebfilterContentheaderEntriesState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWebfilterContentheaderEntries    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 to take for this content type. Valid values: exempt, block, allow.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Category string
    Categories that this content type applies to.
    ContentHeader string
    Content Header.
    ObjectWebfilterContentheaderEntriesId string
    an identifier for the resource with format {{pattern}}.
    Pattern string
    Content type (regular expression).
    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 to take for this content type. Valid values: exempt, block, allow.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Category string
    Categories that this content type applies to.
    ContentHeader string
    Content Header.
    ObjectWebfilterContentheaderEntriesId string
    an identifier for the resource with format {{pattern}}.
    Pattern string
    Content type (regular expression).
    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 to take for this content type. Valid values: exempt, block, allow.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category String
    Categories that this content type applies to.
    contentHeader String
    Content Header.
    objectWebfilterContentheaderEntriesId String
    an identifier for the resource with format {{pattern}}.
    pattern String
    Content type (regular expression).
    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 to take for this content type. Valid values: exempt, block, allow.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category string
    Categories that this content type applies to.
    contentHeader string
    Content Header.
    objectWebfilterContentheaderEntriesId string
    an identifier for the resource with format {{pattern}}.
    pattern string
    Content type (regular expression).
    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 to take for this content type. Valid values: exempt, block, allow.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category str
    Categories that this content type applies to.
    content_header str
    Content Header.
    object_webfilter_contentheader_entries_id str
    an identifier for the resource with format {{pattern}}.
    pattern str
    Content type (regular expression).
    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 to take for this content type. Valid values: exempt, block, allow.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category String
    Categories that this content type applies to.
    contentHeader String
    Content Header.
    objectWebfilterContentheaderEntriesId String
    an identifier for the resource with format {{pattern}}.
    pattern String
    Content type (regular expression).
    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

    ObjectWebfilter ContentHeaderEntries can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWebfilterContentheaderEntries:ObjectWebfilterContentheaderEntries labelname {{pattern}}
    

    $ 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