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

fortimanager.ObjectEmailfilterBwordEntries

Explore with Pulumi AI

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

    Spam filter banned word.

    This resource is a sub resource for variable entries of resource fortimanager.ObjectEmailfilterBword. 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 trnameObjectEmailfilterBword = new fortimanager.ObjectEmailfilterBword("trnameObjectEmailfilterBword", {
        comment: "This is a Terraform example",
        fosid: 1,
    });
    const trnameObjectEmailfilterBwordEntries = new fortimanager.ObjectEmailfilterBwordEntries("trnameObjectEmailfilterBwordEntries", {
        bword: trnameObjectEmailfilterBword.fosid,
        fosid: 2,
        language: "simch",
        pattern: "exampe",
        patternType: "regexp",
        status: "disable",
        where: "body",
    }, {
        dependsOn: [trnameObjectEmailfilterBword],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_emailfilter_bword = fortimanager.ObjectEmailfilterBword("trnameObjectEmailfilterBword",
        comment="This is a Terraform example",
        fosid=1)
    trname_object_emailfilter_bword_entries = fortimanager.ObjectEmailfilterBwordEntries("trnameObjectEmailfilterBwordEntries",
        bword=trname_object_emailfilter_bword.fosid,
        fosid=2,
        language="simch",
        pattern="exampe",
        pattern_type="regexp",
        status="disable",
        where="body",
        opts = pulumi.ResourceOptions(depends_on=[trname_object_emailfilter_bword]))
    
    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 {
    		trnameObjectEmailfilterBword, err := fortimanager.NewObjectEmailfilterBword(ctx, "trnameObjectEmailfilterBword", &fortimanager.ObjectEmailfilterBwordArgs{
    			Comment: pulumi.String("This is a Terraform example"),
    			Fosid:   pulumi.Float64(1),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectEmailfilterBwordEntries(ctx, "trnameObjectEmailfilterBwordEntries", &fortimanager.ObjectEmailfilterBwordEntriesArgs{
    			Bword:       trnameObjectEmailfilterBword.Fosid,
    			Fosid:       pulumi.Float64(2),
    			Language:    pulumi.String("simch"),
    			Pattern:     pulumi.String("exampe"),
    			PatternType: pulumi.String("regexp"),
    			Status:      pulumi.String("disable"),
    			Where:       pulumi.String("body"),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectEmailfilterBword,
    		}))
    		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 trnameObjectEmailfilterBword = new Fortimanager.ObjectEmailfilterBword("trnameObjectEmailfilterBword", new()
        {
            Comment = "This is a Terraform example",
            Fosid = 1,
        });
    
        var trnameObjectEmailfilterBwordEntries = new Fortimanager.ObjectEmailfilterBwordEntries("trnameObjectEmailfilterBwordEntries", new()
        {
            Bword = trnameObjectEmailfilterBword.Fosid,
            Fosid = 2,
            Language = "simch",
            Pattern = "exampe",
            PatternType = "regexp",
            Status = "disable",
            Where = "body",
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectEmailfilterBword,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectEmailfilterBword;
    import com.pulumi.fortimanager.ObjectEmailfilterBwordArgs;
    import com.pulumi.fortimanager.ObjectEmailfilterBwordEntries;
    import com.pulumi.fortimanager.ObjectEmailfilterBwordEntriesArgs;
    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 trnameObjectEmailfilterBword = new ObjectEmailfilterBword("trnameObjectEmailfilterBword", ObjectEmailfilterBwordArgs.builder()
                .comment("This is a Terraform example")
                .fosid(1)
                .build());
    
            var trnameObjectEmailfilterBwordEntries = new ObjectEmailfilterBwordEntries("trnameObjectEmailfilterBwordEntries", ObjectEmailfilterBwordEntriesArgs.builder()
                .bword(trnameObjectEmailfilterBword.fosid())
                .fosid(2)
                .language("simch")
                .pattern("exampe")
                .patternType("regexp")
                .status("disable")
                .where("body")
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectEmailfilterBword)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectEmailfilterBwordEntries:
        type: fortimanager:ObjectEmailfilterBwordEntries
        properties:
          bword: ${trnameObjectEmailfilterBword.fosid}
          fosid: 2
          language: simch
          pattern: exampe
          patternType: regexp
          status: disable
          where: body
        options:
          dependsOn:
            - ${trnameObjectEmailfilterBword}
      trnameObjectEmailfilterBword:
        type: fortimanager:ObjectEmailfilterBword
        properties:
          comment: This is a Terraform example
          fosid: 1
    

    Create ObjectEmailfilterBwordEntries Resource

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

    Constructor syntax

    new ObjectEmailfilterBwordEntries(name: string, args: ObjectEmailfilterBwordEntriesArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectEmailfilterBwordEntries(resource_name: str,
                                      args: ObjectEmailfilterBwordEntriesArgs,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectEmailfilterBwordEntries(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      bword: Optional[str] = None,
                                      action: Optional[str] = None,
                                      adom: Optional[str] = None,
                                      fosid: Optional[float] = None,
                                      language: Optional[str] = None,
                                      object_emailfilter_bword_entries_id: Optional[str] = None,
                                      pattern: Optional[str] = None,
                                      pattern_type: Optional[str] = None,
                                      scopetype: Optional[str] = None,
                                      score: Optional[float] = None,
                                      status: Optional[str] = None,
                                      where: Optional[str] = None)
    func NewObjectEmailfilterBwordEntries(ctx *Context, name string, args ObjectEmailfilterBwordEntriesArgs, opts ...ResourceOption) (*ObjectEmailfilterBwordEntries, error)
    public ObjectEmailfilterBwordEntries(string name, ObjectEmailfilterBwordEntriesArgs args, CustomResourceOptions? opts = null)
    public ObjectEmailfilterBwordEntries(String name, ObjectEmailfilterBwordEntriesArgs args)
    public ObjectEmailfilterBwordEntries(String name, ObjectEmailfilterBwordEntriesArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectEmailfilterBwordEntries
    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 ObjectEmailfilterBwordEntriesArgs
    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 ObjectEmailfilterBwordEntriesArgs
    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 ObjectEmailfilterBwordEntriesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectEmailfilterBwordEntriesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectEmailfilterBwordEntriesArgs
    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 objectEmailfilterBwordEntriesResource = new Fortimanager.ObjectEmailfilterBwordEntries("objectEmailfilterBwordEntriesResource", new()
    {
        Bword = "string",
        Action = "string",
        Adom = "string",
        Fosid = 0,
        Language = "string",
        ObjectEmailfilterBwordEntriesId = "string",
        Pattern = "string",
        PatternType = "string",
        Scopetype = "string",
        Score = 0,
        Status = "string",
        Where = "string",
    });
    
    example, err := fortimanager.NewObjectEmailfilterBwordEntries(ctx, "objectEmailfilterBwordEntriesResource", &fortimanager.ObjectEmailfilterBwordEntriesArgs{
    Bword: pulumi.String("string"),
    Action: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    Language: pulumi.String("string"),
    ObjectEmailfilterBwordEntriesId: pulumi.String("string"),
    Pattern: pulumi.String("string"),
    PatternType: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Score: pulumi.Float64(0),
    Status: pulumi.String("string"),
    Where: pulumi.String("string"),
    })
    
    var objectEmailfilterBwordEntriesResource = new ObjectEmailfilterBwordEntries("objectEmailfilterBwordEntriesResource", ObjectEmailfilterBwordEntriesArgs.builder()
        .bword("string")
        .action("string")
        .adom("string")
        .fosid(0)
        .language("string")
        .objectEmailfilterBwordEntriesId("string")
        .pattern("string")
        .patternType("string")
        .scopetype("string")
        .score(0)
        .status("string")
        .where("string")
        .build());
    
    object_emailfilter_bword_entries_resource = fortimanager.ObjectEmailfilterBwordEntries("objectEmailfilterBwordEntriesResource",
        bword="string",
        action="string",
        adom="string",
        fosid=0,
        language="string",
        object_emailfilter_bword_entries_id="string",
        pattern="string",
        pattern_type="string",
        scopetype="string",
        score=0,
        status="string",
        where="string")
    
    const objectEmailfilterBwordEntriesResource = new fortimanager.ObjectEmailfilterBwordEntries("objectEmailfilterBwordEntriesResource", {
        bword: "string",
        action: "string",
        adom: "string",
        fosid: 0,
        language: "string",
        objectEmailfilterBwordEntriesId: "string",
        pattern: "string",
        patternType: "string",
        scopetype: "string",
        score: 0,
        status: "string",
        where: "string",
    });
    
    type: fortimanager:ObjectEmailfilterBwordEntries
    properties:
        action: string
        adom: string
        bword: string
        fosid: 0
        language: string
        objectEmailfilterBwordEntriesId: string
        pattern: string
        patternType: string
        scopetype: string
        score: 0
        status: string
        where: string
    

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

    Bword string
    Bword.
    Action string
    Mark spam or good. Valid values: spam, clear.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Fosid double
    Banned word entry ID.
    Language string
    Language for the banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish.
    ObjectEmailfilterBwordEntriesId string
    an identifier for the resource with format {{fosid}}.
    Pattern string
    Pattern for the banned word.
    PatternType string
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    Score double
    Score value.
    Status string
    Enable/disable status. Valid values: disable, enable.
    Where string
    Component of the email to be scanned. Valid values: all, subject, body.
    Bword string
    Bword.
    Action string
    Mark spam or good. Valid values: spam, clear.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Fosid float64
    Banned word entry ID.
    Language string
    Language for the banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish.
    ObjectEmailfilterBwordEntriesId string
    an identifier for the resource with format {{fosid}}.
    Pattern string
    Pattern for the banned word.
    PatternType string
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    Score float64
    Score value.
    Status string
    Enable/disable status. Valid values: disable, enable.
    Where string
    Component of the email to be scanned. Valid values: all, subject, body.
    bword String
    Bword.
    action String
    Mark spam or good. Valid values: spam, clear.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid Double
    Banned word entry ID.
    language String
    Language for the banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish.
    objectEmailfilterBwordEntriesId String
    an identifier for the resource with format {{fosid}}.
    pattern String
    Pattern for the banned word.
    patternType String
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    score Double
    Score value.
    status String
    Enable/disable status. Valid values: disable, enable.
    where String
    Component of the email to be scanned. Valid values: all, subject, body.
    bword string
    Bword.
    action string
    Mark spam or good. Valid values: spam, clear.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid number
    Banned word entry ID.
    language string
    Language for the banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish.
    objectEmailfilterBwordEntriesId string
    an identifier for the resource with format {{fosid}}.
    pattern string
    Pattern for the banned word.
    patternType string
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    score number
    Score value.
    status string
    Enable/disable status. Valid values: disable, enable.
    where string
    Component of the email to be scanned. Valid values: all, subject, body.
    bword str
    Bword.
    action str
    Mark spam or good. Valid values: spam, clear.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid float
    Banned word entry ID.
    language str
    Language for the banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish.
    object_emailfilter_bword_entries_id str
    an identifier for the resource with format {{fosid}}.
    pattern str
    Pattern for the banned word.
    pattern_type str
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    score float
    Score value.
    status str
    Enable/disable status. Valid values: disable, enable.
    where str
    Component of the email to be scanned. Valid values: all, subject, body.
    bword String
    Bword.
    action String
    Mark spam or good. Valid values: spam, clear.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid Number
    Banned word entry ID.
    language String
    Language for the banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish.
    objectEmailfilterBwordEntriesId String
    an identifier for the resource with format {{fosid}}.
    pattern String
    Pattern for the banned word.
    patternType String
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    score Number
    Score value.
    status String
    Enable/disable status. Valid values: disable, enable.
    where String
    Component of the email to be scanned. Valid values: all, subject, body.

    Outputs

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

    Get an existing ObjectEmailfilterBwordEntries 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?: ObjectEmailfilterBwordEntriesState, opts?: CustomResourceOptions): ObjectEmailfilterBwordEntries
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            adom: Optional[str] = None,
            bword: Optional[str] = None,
            fosid: Optional[float] = None,
            language: Optional[str] = None,
            object_emailfilter_bword_entries_id: Optional[str] = None,
            pattern: Optional[str] = None,
            pattern_type: Optional[str] = None,
            scopetype: Optional[str] = None,
            score: Optional[float] = None,
            status: Optional[str] = None,
            where: Optional[str] = None) -> ObjectEmailfilterBwordEntries
    func GetObjectEmailfilterBwordEntries(ctx *Context, name string, id IDInput, state *ObjectEmailfilterBwordEntriesState, opts ...ResourceOption) (*ObjectEmailfilterBwordEntries, error)
    public static ObjectEmailfilterBwordEntries Get(string name, Input<string> id, ObjectEmailfilterBwordEntriesState? state, CustomResourceOptions? opts = null)
    public static ObjectEmailfilterBwordEntries get(String name, Output<String> id, ObjectEmailfilterBwordEntriesState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectEmailfilterBwordEntries    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
    Mark spam or good. Valid values: spam, clear.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Bword string
    Bword.
    Fosid double
    Banned word entry ID.
    Language string
    Language for the banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish.
    ObjectEmailfilterBwordEntriesId string
    an identifier for the resource with format {{fosid}}.
    Pattern string
    Pattern for the banned word.
    PatternType string
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    Score double
    Score value.
    Status string
    Enable/disable status. Valid values: disable, enable.
    Where string
    Component of the email to be scanned. Valid values: all, subject, body.
    Action string
    Mark spam or good. Valid values: spam, clear.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Bword string
    Bword.
    Fosid float64
    Banned word entry ID.
    Language string
    Language for the banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish.
    ObjectEmailfilterBwordEntriesId string
    an identifier for the resource with format {{fosid}}.
    Pattern string
    Pattern for the banned word.
    PatternType string
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    Score float64
    Score value.
    Status string
    Enable/disable status. Valid values: disable, enable.
    Where string
    Component of the email to be scanned. Valid values: all, subject, body.
    action String
    Mark spam or good. Valid values: spam, clear.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bword String
    Bword.
    fosid Double
    Banned word entry ID.
    language String
    Language for the banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish.
    objectEmailfilterBwordEntriesId String
    an identifier for the resource with format {{fosid}}.
    pattern String
    Pattern for the banned word.
    patternType String
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    score Double
    Score value.
    status String
    Enable/disable status. Valid values: disable, enable.
    where String
    Component of the email to be scanned. Valid values: all, subject, body.
    action string
    Mark spam or good. Valid values: spam, clear.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bword string
    Bword.
    fosid number
    Banned word entry ID.
    language string
    Language for the banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish.
    objectEmailfilterBwordEntriesId string
    an identifier for the resource with format {{fosid}}.
    pattern string
    Pattern for the banned word.
    patternType string
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    score number
    Score value.
    status string
    Enable/disable status. Valid values: disable, enable.
    where string
    Component of the email to be scanned. Valid values: all, subject, body.
    action str
    Mark spam or good. Valid values: spam, clear.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bword str
    Bword.
    fosid float
    Banned word entry ID.
    language str
    Language for the banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish.
    object_emailfilter_bword_entries_id str
    an identifier for the resource with format {{fosid}}.
    pattern str
    Pattern for the banned word.
    pattern_type str
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    score float
    Score value.
    status str
    Enable/disable status. Valid values: disable, enable.
    where str
    Component of the email to be scanned. Valid values: all, subject, body.
    action String
    Mark spam or good. Valid values: spam, clear.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bword String
    Bword.
    fosid Number
    Banned word entry ID.
    language String
    Language for the banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish.
    objectEmailfilterBwordEntriesId String
    an identifier for the resource with format {{fosid}}.
    pattern String
    Pattern for the banned word.
    patternType String
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    score Number
    Score value.
    status String
    Enable/disable status. Valid values: disable, enable.
    where String
    Component of the email to be scanned. Valid values: all, subject, body.

    Import

    ObjectEmailfilter BwordEntries can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectEmailfilterBwordEntries:ObjectEmailfilterBwordEntries 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