fortios.filter/spam.Profile
Explore with Pulumi AI
Configure AntiSpam profiles. Applies to FortiOS Version <= 6.2.0.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";
const trname = new fortios.filter.spam.Profile("trname", {
    comment: "terraform test",
    external: "disable",
    flowBased: "disable",
    gmail: {
        log: "disable",
    },
    imap: {
        action: "tag",
        log: "disable",
        tagMsg: "Spam",
        tagType: "subject spaminfo",
    },
    mapi: {
        action: "discard",
        log: "disable",
    },
    msnHotmail: {
        log: "disable",
    },
    pop3: {
        action: "tag",
        log: "disable",
        tagMsg: "Spam",
        tagType: "subject spaminfo",
    },
    smtp: {
        action: "discard",
        hdrip: "disable",
        localOverride: "disable",
        log: "disable",
        tagMsg: "Spam",
        tagType: "subject spaminfo",
    },
    spamBwlTable: 0,
    spamBwordTable: 0,
    spamBwordThreshold: 10,
    spamFiltering: "disable",
    spamIptrustTable: 0,
    spamLog: "enable",
    spamLogFortiguardResponse: "disable",
    spamMheaderTable: 0,
    spamRblTable: 0,
    yahooMail: {
        log: "disable",
    },
});
import pulumi
import pulumiverse_fortios as fortios
trname = fortios.filter.spam.Profile("trname",
    comment="terraform test",
    external="disable",
    flow_based="disable",
    gmail=fortios.filter.spam.ProfileGmailArgs(
        log="disable",
    ),
    imap=fortios.filter.spam.ProfileImapArgs(
        action="tag",
        log="disable",
        tag_msg="Spam",
        tag_type="subject spaminfo",
    ),
    mapi=fortios.filter.spam.ProfileMapiArgs(
        action="discard",
        log="disable",
    ),
    msn_hotmail=fortios.filter.spam.ProfileMsnHotmailArgs(
        log="disable",
    ),
    pop3=fortios.filter.spam.ProfilePop3Args(
        action="tag",
        log="disable",
        tag_msg="Spam",
        tag_type="subject spaminfo",
    ),
    smtp=fortios.filter.spam.ProfileSmtpArgs(
        action="discard",
        hdrip="disable",
        local_override="disable",
        log="disable",
        tag_msg="Spam",
        tag_type="subject spaminfo",
    ),
    spam_bwl_table=0,
    spam_bword_table=0,
    spam_bword_threshold=10,
    spam_filtering="disable",
    spam_iptrust_table=0,
    spam_log="enable",
    spam_log_fortiguard_response="disable",
    spam_mheader_table=0,
    spam_rbl_table=0,
    yahoo_mail=fortios.filter.spam.ProfileYahooMailArgs(
        log="disable",
    ))
package main
import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/filter"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := filter.NewProfile(ctx, "trname", &filter.ProfileArgs{
			Comment:   pulumi.String("terraform test"),
			External:  pulumi.String("disable"),
			FlowBased: pulumi.String("disable"),
			Gmail: &spam.ProfileGmailArgs{
				Log: pulumi.String("disable"),
			},
			Imap: &spam.ProfileImapArgs{
				Action:  pulumi.String("tag"),
				Log:     pulumi.String("disable"),
				TagMsg:  pulumi.String("Spam"),
				TagType: pulumi.String("subject spaminfo"),
			},
			Mapi: &spam.ProfileMapiArgs{
				Action: pulumi.String("discard"),
				Log:    pulumi.String("disable"),
			},
			MsnHotmail: &spam.ProfileMsnHotmailArgs{
				Log: pulumi.String("disable"),
			},
			Pop3: &spam.ProfilePop3Args{
				Action:  pulumi.String("tag"),
				Log:     pulumi.String("disable"),
				TagMsg:  pulumi.String("Spam"),
				TagType: pulumi.String("subject spaminfo"),
			},
			Smtp: &spam.ProfileSmtpArgs{
				Action:        pulumi.String("discard"),
				Hdrip:         pulumi.String("disable"),
				LocalOverride: pulumi.String("disable"),
				Log:           pulumi.String("disable"),
				TagMsg:        pulumi.String("Spam"),
				TagType:       pulumi.String("subject spaminfo"),
			},
			SpamBwlTable:              pulumi.Int(0),
			SpamBwordTable:            pulumi.Int(0),
			SpamBwordThreshold:        pulumi.Int(10),
			SpamFiltering:             pulumi.String("disable"),
			SpamIptrustTable:          pulumi.Int(0),
			SpamLog:                   pulumi.String("enable"),
			SpamLogFortiguardResponse: pulumi.String("disable"),
			SpamMheaderTable:          pulumi.Int(0),
			SpamRblTable:              pulumi.Int(0),
			YahooMail: &spam.ProfileYahooMailArgs{
				Log: pulumi.String("disable"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortios = Pulumiverse.Fortios;
return await Deployment.RunAsync(() => 
{
    var trname = new Fortios.Filter.Spam.Profile("trname", new()
    {
        Comment = "terraform test",
        External = "disable",
        FlowBased = "disable",
        Gmail = new Fortios.Filter.Spam.Inputs.ProfileGmailArgs
        {
            Log = "disable",
        },
        Imap = new Fortios.Filter.Spam.Inputs.ProfileImapArgs
        {
            Action = "tag",
            Log = "disable",
            TagMsg = "Spam",
            TagType = "subject spaminfo",
        },
        Mapi = new Fortios.Filter.Spam.Inputs.ProfileMapiArgs
        {
            Action = "discard",
            Log = "disable",
        },
        MsnHotmail = new Fortios.Filter.Spam.Inputs.ProfileMsnHotmailArgs
        {
            Log = "disable",
        },
        Pop3 = new Fortios.Filter.Spam.Inputs.ProfilePop3Args
        {
            Action = "tag",
            Log = "disable",
            TagMsg = "Spam",
            TagType = "subject spaminfo",
        },
        Smtp = new Fortios.Filter.Spam.Inputs.ProfileSmtpArgs
        {
            Action = "discard",
            Hdrip = "disable",
            LocalOverride = "disable",
            Log = "disable",
            TagMsg = "Spam",
            TagType = "subject spaminfo",
        },
        SpamBwlTable = 0,
        SpamBwordTable = 0,
        SpamBwordThreshold = 10,
        SpamFiltering = "disable",
        SpamIptrustTable = 0,
        SpamLog = "enable",
        SpamLogFortiguardResponse = "disable",
        SpamMheaderTable = 0,
        SpamRblTable = 0,
        YahooMail = new Fortios.Filter.Spam.Inputs.ProfileYahooMailArgs
        {
            Log = "disable",
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.filter.Profile;
import com.pulumi.fortios.filter.ProfileArgs;
import com.pulumi.fortios.filter.inputs.ProfileGmailArgs;
import com.pulumi.fortios.filter.inputs.ProfileImapArgs;
import com.pulumi.fortios.filter.inputs.ProfileMapiArgs;
import com.pulumi.fortios.filter.inputs.ProfileMsnHotmailArgs;
import com.pulumi.fortios.filter.inputs.ProfilePop3Args;
import com.pulumi.fortios.filter.inputs.ProfileSmtpArgs;
import com.pulumi.fortios.filter.inputs.ProfileYahooMailArgs;
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 Profile("trname", ProfileArgs.builder()
            .comment("terraform test")
            .external("disable")
            .flowBased("disable")
            .gmail(ProfileGmailArgs.builder()
                .log("disable")
                .build())
            .imap(ProfileImapArgs.builder()
                .action("tag")
                .log("disable")
                .tagMsg("Spam")
                .tagType("subject spaminfo")
                .build())
            .mapi(ProfileMapiArgs.builder()
                .action("discard")
                .log("disable")
                .build())
            .msnHotmail(ProfileMsnHotmailArgs.builder()
                .log("disable")
                .build())
            .pop3(ProfilePop3Args.builder()
                .action("tag")
                .log("disable")
                .tagMsg("Spam")
                .tagType("subject spaminfo")
                .build())
            .smtp(ProfileSmtpArgs.builder()
                .action("discard")
                .hdrip("disable")
                .localOverride("disable")
                .log("disable")
                .tagMsg("Spam")
                .tagType("subject spaminfo")
                .build())
            .spamBwlTable(0)
            .spamBwordTable(0)
            .spamBwordThreshold(10)
            .spamFiltering("disable")
            .spamIptrustTable(0)
            .spamLog("enable")
            .spamLogFortiguardResponse("disable")
            .spamMheaderTable(0)
            .spamRblTable(0)
            .yahooMail(ProfileYahooMailArgs.builder()
                .log("disable")
                .build())
            .build());
    }
}
resources:
  trname:
    type: fortios:filter/spam:Profile
    properties:
      comment: terraform test
      external: disable
      flowBased: disable
      gmail:
        log: disable
      imap:
        action: tag
        log: disable
        tagMsg: Spam
        tagType: subject spaminfo
      mapi:
        action: discard
        log: disable
      msnHotmail:
        log: disable
      pop3:
        action: tag
        log: disable
        tagMsg: Spam
        tagType: subject spaminfo
      smtp:
        action: discard
        hdrip: disable
        localOverride: disable
        log: disable
        tagMsg: Spam
        tagType: subject spaminfo
      spamBwlTable: 0
      spamBwordTable: 0
      spamBwordThreshold: 10
      spamFiltering: disable
      spamIptrustTable: 0
      spamLog: enable
      spamLogFortiguardResponse: disable
      spamMheaderTable: 0
      spamRblTable: 0
      yahooMail:
        log: disable
Create Profile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Profile(name: string, args?: ProfileArgs, opts?: CustomResourceOptions);@overload
def Profile(resource_name: str,
            args: Optional[ProfileArgs] = None,
            opts: Optional[ResourceOptions] = None)
@overload
def Profile(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            comment: Optional[str] = None,
            external: Optional[str] = None,
            flow_based: Optional[str] = None,
            get_all_tables: Optional[str] = None,
            gmail: Optional[ProfileGmailArgs] = None,
            imap: Optional[ProfileImapArgs] = None,
            mapi: Optional[ProfileMapiArgs] = None,
            msn_hotmail: Optional[ProfileMsnHotmailArgs] = None,
            name: Optional[str] = None,
            options: Optional[str] = None,
            pop3: Optional[ProfilePop3Args] = None,
            replacemsg_group: Optional[str] = None,
            smtp: Optional[ProfileSmtpArgs] = None,
            spam_bwl_table: Optional[int] = None,
            spam_bword_table: Optional[int] = None,
            spam_bword_threshold: Optional[int] = None,
            spam_filtering: Optional[str] = None,
            spam_iptrust_table: Optional[int] = None,
            spam_log: Optional[str] = None,
            spam_log_fortiguard_response: Optional[str] = None,
            spam_mheader_table: Optional[int] = None,
            spam_rbl_table: Optional[int] = None,
            vdomparam: Optional[str] = None,
            yahoo_mail: Optional[ProfileYahooMailArgs] = None)func NewProfile(ctx *Context, name string, args *ProfileArgs, opts ...ResourceOption) (*Profile, error)public Profile(string name, ProfileArgs? args = null, CustomResourceOptions? opts = null)
public Profile(String name, ProfileArgs args)
public Profile(String name, ProfileArgs args, CustomResourceOptions options)
type: fortios:filter/spam/profile:Profile
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 ProfileArgs
- 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 ProfileArgs
- 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 ProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProfileArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Profile 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 Profile resource accepts the following input properties:
- Comment string
- Comment.
- External string
- Enable/disable external Email inspection. Valid values: enable,disable.
- FlowBased string
- Enable/disable flow-based spam filtering. Valid values: enable,disable.
- GetAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Gmail
Pulumiverse.Fortios. Filter. Spam. Inputs. Profile Gmail 
- Gmail. The structure of gmailblock is documented below.
- Imap
Pulumiverse.Fortios. Filter. Spam. Inputs. Profile Imap 
- IMAP. The structure of imapblock is documented below.
- Mapi
Pulumiverse.Fortios. Filter. Spam. Inputs. Profile Mapi 
- MAPI. The structure of mapiblock is documented below.
- MsnHotmail Pulumiverse.Fortios. Filter. Spam. Inputs. Profile Msn Hotmail 
- MSN Hotmail. The structure of msn_hotmailblock is documented below.
- Name string
- Profile name.
- Options string
- Options. Valid values: bannedword,spambwl,spamfsip,spamfssubmit,spamfschksum,spamfsurl,spamhelodns,spamraddrdns,spamrbl,spamhdrcheck,spamfsphish.
- Pop3
Pulumiverse.Fortios. Filter. Spam. Inputs. Profile Pop3 
- POP3. The structure of pop3block is documented below.
- ReplacemsgGroup string
- Replacement message group.
- Smtp
Pulumiverse.Fortios. Filter. Spam. Inputs. Profile Smtp 
- SMTP. The structure of smtpblock is documented below.
- SpamBwl intTable 
- Anti-spam black/white list table ID.
- SpamBword intTable 
- Anti-spam banned word table ID.
- SpamBword intThreshold 
- Spam banned word threshold.
- SpamFiltering string
- Enable/disable spam filtering. Valid values: enable,disable.
- SpamIptrust intTable 
- Anti-spam IP trust table ID.
- SpamLog string
- Enable/disable spam logging for email filtering. Valid values: disable,enable.
- SpamLog stringFortiguard Response 
- Enable/disable logging FortiGuard spam response. Valid values: disable,enable.
- SpamMheader intTable 
- Anti-spam MIME header table ID.
- SpamRbl intTable 
- Anti-spam DNSBL table ID.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- YahooMail Pulumiverse.Fortios. Filter. Spam. Inputs. Profile Yahoo Mail 
- Yahoo! Mail. The structure of yahoo_mailblock is documented below.
- Comment string
- Comment.
- External string
- Enable/disable external Email inspection. Valid values: enable,disable.
- FlowBased string
- Enable/disable flow-based spam filtering. Valid values: enable,disable.
- GetAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Gmail
ProfileGmail Args 
- Gmail. The structure of gmailblock is documented below.
- Imap
ProfileImap Args 
- IMAP. The structure of imapblock is documented below.
- Mapi
ProfileMapi Args 
- MAPI. The structure of mapiblock is documented below.
- MsnHotmail ProfileMsn Hotmail Args 
- MSN Hotmail. The structure of msn_hotmailblock is documented below.
- Name string
- Profile name.
- Options string
- Options. Valid values: bannedword,spambwl,spamfsip,spamfssubmit,spamfschksum,spamfsurl,spamhelodns,spamraddrdns,spamrbl,spamhdrcheck,spamfsphish.
- Pop3
ProfilePop3Args 
- POP3. The structure of pop3block is documented below.
- ReplacemsgGroup string
- Replacement message group.
- Smtp
ProfileSmtp Args 
- SMTP. The structure of smtpblock is documented below.
- SpamBwl intTable 
- Anti-spam black/white list table ID.
- SpamBword intTable 
- Anti-spam banned word table ID.
- SpamBword intThreshold 
- Spam banned word threshold.
- SpamFiltering string
- Enable/disable spam filtering. Valid values: enable,disable.
- SpamIptrust intTable 
- Anti-spam IP trust table ID.
- SpamLog string
- Enable/disable spam logging for email filtering. Valid values: disable,enable.
- SpamLog stringFortiguard Response 
- Enable/disable logging FortiGuard spam response. Valid values: disable,enable.
- SpamMheader intTable 
- Anti-spam MIME header table ID.
- SpamRbl intTable 
- Anti-spam DNSBL table ID.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- YahooMail ProfileYahoo Mail Args 
- Yahoo! Mail. The structure of yahoo_mailblock is documented below.
- comment String
- Comment.
- external String
- Enable/disable external Email inspection. Valid values: enable,disable.
- flowBased String
- Enable/disable flow-based spam filtering. Valid values: enable,disable.
- getAll StringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- gmail
ProfileGmail 
- Gmail. The structure of gmailblock is documented below.
- imap
ProfileImap 
- IMAP. The structure of imapblock is documented below.
- mapi
ProfileMapi 
- MAPI. The structure of mapiblock is documented below.
- msnHotmail ProfileMsn Hotmail 
- MSN Hotmail. The structure of msn_hotmailblock is documented below.
- name String
- Profile name.
- options String
- Options. Valid values: bannedword,spambwl,spamfsip,spamfssubmit,spamfschksum,spamfsurl,spamhelodns,spamraddrdns,spamrbl,spamhdrcheck,spamfsphish.
- pop3
ProfilePop3 
- POP3. The structure of pop3block is documented below.
- replacemsgGroup String
- Replacement message group.
- smtp
ProfileSmtp 
- SMTP. The structure of smtpblock is documented below.
- spamBwl IntegerTable 
- Anti-spam black/white list table ID.
- spamBword IntegerTable 
- Anti-spam banned word table ID.
- spamBword IntegerThreshold 
- Spam banned word threshold.
- spamFiltering String
- Enable/disable spam filtering. Valid values: enable,disable.
- spamIptrust IntegerTable 
- Anti-spam IP trust table ID.
- spamLog String
- Enable/disable spam logging for email filtering. Valid values: disable,enable.
- spamLog StringFortiguard Response 
- Enable/disable logging FortiGuard spam response. Valid values: disable,enable.
- spamMheader IntegerTable 
- Anti-spam MIME header table ID.
- spamRbl IntegerTable 
- Anti-spam DNSBL table ID.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- yahooMail ProfileYahoo Mail 
- Yahoo! Mail. The structure of yahoo_mailblock is documented below.
- comment string
- Comment.
- external string
- Enable/disable external Email inspection. Valid values: enable,disable.
- flowBased string
- Enable/disable flow-based spam filtering. Valid values: enable,disable.
- getAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- gmail
ProfileGmail 
- Gmail. The structure of gmailblock is documented below.
- imap
ProfileImap 
- IMAP. The structure of imapblock is documented below.
- mapi
ProfileMapi 
- MAPI. The structure of mapiblock is documented below.
- msnHotmail ProfileMsn Hotmail 
- MSN Hotmail. The structure of msn_hotmailblock is documented below.
- name string
- Profile name.
- options string
- Options. Valid values: bannedword,spambwl,spamfsip,spamfssubmit,spamfschksum,spamfsurl,spamhelodns,spamraddrdns,spamrbl,spamhdrcheck,spamfsphish.
- pop3
ProfilePop3 
- POP3. The structure of pop3block is documented below.
- replacemsgGroup string
- Replacement message group.
- smtp
ProfileSmtp 
- SMTP. The structure of smtpblock is documented below.
- spamBwl numberTable 
- Anti-spam black/white list table ID.
- spamBword numberTable 
- Anti-spam banned word table ID.
- spamBword numberThreshold 
- Spam banned word threshold.
- spamFiltering string
- Enable/disable spam filtering. Valid values: enable,disable.
- spamIptrust numberTable 
- Anti-spam IP trust table ID.
- spamLog string
- Enable/disable spam logging for email filtering. Valid values: disable,enable.
- spamLog stringFortiguard Response 
- Enable/disable logging FortiGuard spam response. Valid values: disable,enable.
- spamMheader numberTable 
- Anti-spam MIME header table ID.
- spamRbl numberTable 
- Anti-spam DNSBL table ID.
- vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- yahooMail ProfileYahoo Mail 
- Yahoo! Mail. The structure of yahoo_mailblock is documented below.
- comment str
- Comment.
- external str
- Enable/disable external Email inspection. Valid values: enable,disable.
- flow_based str
- Enable/disable flow-based spam filtering. Valid values: enable,disable.
- get_all_ strtables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- gmail
ProfileGmail Args 
- Gmail. The structure of gmailblock is documented below.
- imap
ProfileImap Args 
- IMAP. The structure of imapblock is documented below.
- mapi
ProfileMapi Args 
- MAPI. The structure of mapiblock is documented below.
- msn_hotmail ProfileMsn Hotmail Args 
- MSN Hotmail. The structure of msn_hotmailblock is documented below.
- name str
- Profile name.
- options str
- Options. Valid values: bannedword,spambwl,spamfsip,spamfssubmit,spamfschksum,spamfsurl,spamhelodns,spamraddrdns,spamrbl,spamhdrcheck,spamfsphish.
- pop3
ProfilePop3Args 
- POP3. The structure of pop3block is documented below.
- replacemsg_group str
- Replacement message group.
- smtp
ProfileSmtp Args 
- SMTP. The structure of smtpblock is documented below.
- spam_bwl_ inttable 
- Anti-spam black/white list table ID.
- spam_bword_ inttable 
- Anti-spam banned word table ID.
- spam_bword_ intthreshold 
- Spam banned word threshold.
- spam_filtering str
- Enable/disable spam filtering. Valid values: enable,disable.
- spam_iptrust_ inttable 
- Anti-spam IP trust table ID.
- spam_log str
- Enable/disable spam logging for email filtering. Valid values: disable,enable.
- spam_log_ strfortiguard_ response 
- Enable/disable logging FortiGuard spam response. Valid values: disable,enable.
- spam_mheader_ inttable 
- Anti-spam MIME header table ID.
- spam_rbl_ inttable 
- Anti-spam DNSBL table ID.
- vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- yahoo_mail ProfileYahoo Mail Args 
- Yahoo! Mail. The structure of yahoo_mailblock is documented below.
- comment String
- Comment.
- external String
- Enable/disable external Email inspection. Valid values: enable,disable.
- flowBased String
- Enable/disable flow-based spam filtering. Valid values: enable,disable.
- getAll StringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- gmail Property Map
- Gmail. The structure of gmailblock is documented below.
- imap Property Map
- IMAP. The structure of imapblock is documented below.
- mapi Property Map
- MAPI. The structure of mapiblock is documented below.
- msnHotmail Property Map
- MSN Hotmail. The structure of msn_hotmailblock is documented below.
- name String
- Profile name.
- options String
- Options. Valid values: bannedword,spambwl,spamfsip,spamfssubmit,spamfschksum,spamfsurl,spamhelodns,spamraddrdns,spamrbl,spamhdrcheck,spamfsphish.
- pop3 Property Map
- POP3. The structure of pop3block is documented below.
- replacemsgGroup String
- Replacement message group.
- smtp Property Map
- SMTP. The structure of smtpblock is documented below.
- spamBwl NumberTable 
- Anti-spam black/white list table ID.
- spamBword NumberTable 
- Anti-spam banned word table ID.
- spamBword NumberThreshold 
- Spam banned word threshold.
- spamFiltering String
- Enable/disable spam filtering. Valid values: enable,disable.
- spamIptrust NumberTable 
- Anti-spam IP trust table ID.
- spamLog String
- Enable/disable spam logging for email filtering. Valid values: disable,enable.
- spamLog StringFortiguard Response 
- Enable/disable logging FortiGuard spam response. Valid values: disable,enable.
- spamMheader NumberTable 
- Anti-spam MIME header table ID.
- spamRbl NumberTable 
- Anti-spam DNSBL table ID.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- yahooMail Property Map
- Yahoo! Mail. The structure of yahoo_mailblock is documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the Profile 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 Profile Resource
Get an existing Profile 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?: ProfileState, opts?: CustomResourceOptions): Profile@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        comment: Optional[str] = None,
        external: Optional[str] = None,
        flow_based: Optional[str] = None,
        get_all_tables: Optional[str] = None,
        gmail: Optional[ProfileGmailArgs] = None,
        imap: Optional[ProfileImapArgs] = None,
        mapi: Optional[ProfileMapiArgs] = None,
        msn_hotmail: Optional[ProfileMsnHotmailArgs] = None,
        name: Optional[str] = None,
        options: Optional[str] = None,
        pop3: Optional[ProfilePop3Args] = None,
        replacemsg_group: Optional[str] = None,
        smtp: Optional[ProfileSmtpArgs] = None,
        spam_bwl_table: Optional[int] = None,
        spam_bword_table: Optional[int] = None,
        spam_bword_threshold: Optional[int] = None,
        spam_filtering: Optional[str] = None,
        spam_iptrust_table: Optional[int] = None,
        spam_log: Optional[str] = None,
        spam_log_fortiguard_response: Optional[str] = None,
        spam_mheader_table: Optional[int] = None,
        spam_rbl_table: Optional[int] = None,
        vdomparam: Optional[str] = None,
        yahoo_mail: Optional[ProfileYahooMailArgs] = None) -> Profilefunc GetProfile(ctx *Context, name string, id IDInput, state *ProfileState, opts ...ResourceOption) (*Profile, error)public static Profile Get(string name, Input<string> id, ProfileState? state, CustomResourceOptions? opts = null)public static Profile get(String name, Output<String> id, ProfileState state, CustomResourceOptions options)resources:  _:    type: fortios:filter/spam/profile:Profile    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.
- Comment string
- Comment.
- External string
- Enable/disable external Email inspection. Valid values: enable,disable.
- FlowBased string
- Enable/disable flow-based spam filtering. Valid values: enable,disable.
- GetAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Gmail
Pulumiverse.Fortios. Filter. Spam. Inputs. Profile Gmail 
- Gmail. The structure of gmailblock is documented below.
- Imap
Pulumiverse.Fortios. Filter. Spam. Inputs. Profile Imap 
- IMAP. The structure of imapblock is documented below.
- Mapi
Pulumiverse.Fortios. Filter. Spam. Inputs. Profile Mapi 
- MAPI. The structure of mapiblock is documented below.
- MsnHotmail Pulumiverse.Fortios. Filter. Spam. Inputs. Profile Msn Hotmail 
- MSN Hotmail. The structure of msn_hotmailblock is documented below.
- Name string
- Profile name.
- Options string
- Options. Valid values: bannedword,spambwl,spamfsip,spamfssubmit,spamfschksum,spamfsurl,spamhelodns,spamraddrdns,spamrbl,spamhdrcheck,spamfsphish.
- Pop3
Pulumiverse.Fortios. Filter. Spam. Inputs. Profile Pop3 
- POP3. The structure of pop3block is documented below.
- ReplacemsgGroup string
- Replacement message group.
- Smtp
Pulumiverse.Fortios. Filter. Spam. Inputs. Profile Smtp 
- SMTP. The structure of smtpblock is documented below.
- SpamBwl intTable 
- Anti-spam black/white list table ID.
- SpamBword intTable 
- Anti-spam banned word table ID.
- SpamBword intThreshold 
- Spam banned word threshold.
- SpamFiltering string
- Enable/disable spam filtering. Valid values: enable,disable.
- SpamIptrust intTable 
- Anti-spam IP trust table ID.
- SpamLog string
- Enable/disable spam logging for email filtering. Valid values: disable,enable.
- SpamLog stringFortiguard Response 
- Enable/disable logging FortiGuard spam response. Valid values: disable,enable.
- SpamMheader intTable 
- Anti-spam MIME header table ID.
- SpamRbl intTable 
- Anti-spam DNSBL table ID.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- YahooMail Pulumiverse.Fortios. Filter. Spam. Inputs. Profile Yahoo Mail 
- Yahoo! Mail. The structure of yahoo_mailblock is documented below.
- Comment string
- Comment.
- External string
- Enable/disable external Email inspection. Valid values: enable,disable.
- FlowBased string
- Enable/disable flow-based spam filtering. Valid values: enable,disable.
- GetAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Gmail
ProfileGmail Args 
- Gmail. The structure of gmailblock is documented below.
- Imap
ProfileImap Args 
- IMAP. The structure of imapblock is documented below.
- Mapi
ProfileMapi Args 
- MAPI. The structure of mapiblock is documented below.
- MsnHotmail ProfileMsn Hotmail Args 
- MSN Hotmail. The structure of msn_hotmailblock is documented below.
- Name string
- Profile name.
- Options string
- Options. Valid values: bannedword,spambwl,spamfsip,spamfssubmit,spamfschksum,spamfsurl,spamhelodns,spamraddrdns,spamrbl,spamhdrcheck,spamfsphish.
- Pop3
ProfilePop3Args 
- POP3. The structure of pop3block is documented below.
- ReplacemsgGroup string
- Replacement message group.
- Smtp
ProfileSmtp Args 
- SMTP. The structure of smtpblock is documented below.
- SpamBwl intTable 
- Anti-spam black/white list table ID.
- SpamBword intTable 
- Anti-spam banned word table ID.
- SpamBword intThreshold 
- Spam banned word threshold.
- SpamFiltering string
- Enable/disable spam filtering. Valid values: enable,disable.
- SpamIptrust intTable 
- Anti-spam IP trust table ID.
- SpamLog string
- Enable/disable spam logging for email filtering. Valid values: disable,enable.
- SpamLog stringFortiguard Response 
- Enable/disable logging FortiGuard spam response. Valid values: disable,enable.
- SpamMheader intTable 
- Anti-spam MIME header table ID.
- SpamRbl intTable 
- Anti-spam DNSBL table ID.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- YahooMail ProfileYahoo Mail Args 
- Yahoo! Mail. The structure of yahoo_mailblock is documented below.
- comment String
- Comment.
- external String
- Enable/disable external Email inspection. Valid values: enable,disable.
- flowBased String
- Enable/disable flow-based spam filtering. Valid values: enable,disable.
- getAll StringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- gmail
ProfileGmail 
- Gmail. The structure of gmailblock is documented below.
- imap
ProfileImap 
- IMAP. The structure of imapblock is documented below.
- mapi
ProfileMapi 
- MAPI. The structure of mapiblock is documented below.
- msnHotmail ProfileMsn Hotmail 
- MSN Hotmail. The structure of msn_hotmailblock is documented below.
- name String
- Profile name.
- options String
- Options. Valid values: bannedword,spambwl,spamfsip,spamfssubmit,spamfschksum,spamfsurl,spamhelodns,spamraddrdns,spamrbl,spamhdrcheck,spamfsphish.
- pop3
ProfilePop3 
- POP3. The structure of pop3block is documented below.
- replacemsgGroup String
- Replacement message group.
- smtp
ProfileSmtp 
- SMTP. The structure of smtpblock is documented below.
- spamBwl IntegerTable 
- Anti-spam black/white list table ID.
- spamBword IntegerTable 
- Anti-spam banned word table ID.
- spamBword IntegerThreshold 
- Spam banned word threshold.
- spamFiltering String
- Enable/disable spam filtering. Valid values: enable,disable.
- spamIptrust IntegerTable 
- Anti-spam IP trust table ID.
- spamLog String
- Enable/disable spam logging for email filtering. Valid values: disable,enable.
- spamLog StringFortiguard Response 
- Enable/disable logging FortiGuard spam response. Valid values: disable,enable.
- spamMheader IntegerTable 
- Anti-spam MIME header table ID.
- spamRbl IntegerTable 
- Anti-spam DNSBL table ID.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- yahooMail ProfileYahoo Mail 
- Yahoo! Mail. The structure of yahoo_mailblock is documented below.
- comment string
- Comment.
- external string
- Enable/disable external Email inspection. Valid values: enable,disable.
- flowBased string
- Enable/disable flow-based spam filtering. Valid values: enable,disable.
- getAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- gmail
ProfileGmail 
- Gmail. The structure of gmailblock is documented below.
- imap
ProfileImap 
- IMAP. The structure of imapblock is documented below.
- mapi
ProfileMapi 
- MAPI. The structure of mapiblock is documented below.
- msnHotmail ProfileMsn Hotmail 
- MSN Hotmail. The structure of msn_hotmailblock is documented below.
- name string
- Profile name.
- options string
- Options. Valid values: bannedword,spambwl,spamfsip,spamfssubmit,spamfschksum,spamfsurl,spamhelodns,spamraddrdns,spamrbl,spamhdrcheck,spamfsphish.
- pop3
ProfilePop3 
- POP3. The structure of pop3block is documented below.
- replacemsgGroup string
- Replacement message group.
- smtp
ProfileSmtp 
- SMTP. The structure of smtpblock is documented below.
- spamBwl numberTable 
- Anti-spam black/white list table ID.
- spamBword numberTable 
- Anti-spam banned word table ID.
- spamBword numberThreshold 
- Spam banned word threshold.
- spamFiltering string
- Enable/disable spam filtering. Valid values: enable,disable.
- spamIptrust numberTable 
- Anti-spam IP trust table ID.
- spamLog string
- Enable/disable spam logging for email filtering. Valid values: disable,enable.
- spamLog stringFortiguard Response 
- Enable/disable logging FortiGuard spam response. Valid values: disable,enable.
- spamMheader numberTable 
- Anti-spam MIME header table ID.
- spamRbl numberTable 
- Anti-spam DNSBL table ID.
- vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- yahooMail ProfileYahoo Mail 
- Yahoo! Mail. The structure of yahoo_mailblock is documented below.
- comment str
- Comment.
- external str
- Enable/disable external Email inspection. Valid values: enable,disable.
- flow_based str
- Enable/disable flow-based spam filtering. Valid values: enable,disable.
- get_all_ strtables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- gmail
ProfileGmail Args 
- Gmail. The structure of gmailblock is documented below.
- imap
ProfileImap Args 
- IMAP. The structure of imapblock is documented below.
- mapi
ProfileMapi Args 
- MAPI. The structure of mapiblock is documented below.
- msn_hotmail ProfileMsn Hotmail Args 
- MSN Hotmail. The structure of msn_hotmailblock is documented below.
- name str
- Profile name.
- options str
- Options. Valid values: bannedword,spambwl,spamfsip,spamfssubmit,spamfschksum,spamfsurl,spamhelodns,spamraddrdns,spamrbl,spamhdrcheck,spamfsphish.
- pop3
ProfilePop3Args 
- POP3. The structure of pop3block is documented below.
- replacemsg_group str
- Replacement message group.
- smtp
ProfileSmtp Args 
- SMTP. The structure of smtpblock is documented below.
- spam_bwl_ inttable 
- Anti-spam black/white list table ID.
- spam_bword_ inttable 
- Anti-spam banned word table ID.
- spam_bword_ intthreshold 
- Spam banned word threshold.
- spam_filtering str
- Enable/disable spam filtering. Valid values: enable,disable.
- spam_iptrust_ inttable 
- Anti-spam IP trust table ID.
- spam_log str
- Enable/disable spam logging for email filtering. Valid values: disable,enable.
- spam_log_ strfortiguard_ response 
- Enable/disable logging FortiGuard spam response. Valid values: disable,enable.
- spam_mheader_ inttable 
- Anti-spam MIME header table ID.
- spam_rbl_ inttable 
- Anti-spam DNSBL table ID.
- vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- yahoo_mail ProfileYahoo Mail Args 
- Yahoo! Mail. The structure of yahoo_mailblock is documented below.
- comment String
- Comment.
- external String
- Enable/disable external Email inspection. Valid values: enable,disable.
- flowBased String
- Enable/disable flow-based spam filtering. Valid values: enable,disable.
- getAll StringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- gmail Property Map
- Gmail. The structure of gmailblock is documented below.
- imap Property Map
- IMAP. The structure of imapblock is documented below.
- mapi Property Map
- MAPI. The structure of mapiblock is documented below.
- msnHotmail Property Map
- MSN Hotmail. The structure of msn_hotmailblock is documented below.
- name String
- Profile name.
- options String
- Options. Valid values: bannedword,spambwl,spamfsip,spamfssubmit,spamfschksum,spamfsurl,spamhelodns,spamraddrdns,spamrbl,spamhdrcheck,spamfsphish.
- pop3 Property Map
- POP3. The structure of pop3block is documented below.
- replacemsgGroup String
- Replacement message group.
- smtp Property Map
- SMTP. The structure of smtpblock is documented below.
- spamBwl NumberTable 
- Anti-spam black/white list table ID.
- spamBword NumberTable 
- Anti-spam banned word table ID.
- spamBword NumberThreshold 
- Spam banned word threshold.
- spamFiltering String
- Enable/disable spam filtering. Valid values: enable,disable.
- spamIptrust NumberTable 
- Anti-spam IP trust table ID.
- spamLog String
- Enable/disable spam logging for email filtering. Valid values: disable,enable.
- spamLog StringFortiguard Response 
- Enable/disable logging FortiGuard spam response. Valid values: disable,enable.
- spamMheader NumberTable 
- Anti-spam MIME header table ID.
- spamRbl NumberTable 
- Anti-spam DNSBL table ID.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- yahooMail Property Map
- Yahoo! Mail. The structure of yahoo_mailblock is documented below.
Supporting Types
ProfileGmail, ProfileGmailArgs    
- Log string
- Enable/disable logging. Valid values: enable,disable.
- Log string
- Enable/disable logging. Valid values: enable,disable.
- log String
- Enable/disable logging. Valid values: enable,disable.
- log string
- Enable/disable logging. Valid values: enable,disable.
- log str
- Enable/disable logging. Valid values: enable,disable.
- log String
- Enable/disable logging. Valid values: enable,disable.
ProfileImap, ProfileImapArgs    
ProfileMapi, ProfileMapiArgs    
ProfileMsnHotmail, ProfileMsnHotmailArgs      
- Log string
- Enable/disable logging. Valid values: enable,disable.
- Log string
- Enable/disable logging. Valid values: enable,disable.
- log String
- Enable/disable logging. Valid values: enable,disable.
- log string
- Enable/disable logging. Valid values: enable,disable.
- log str
- Enable/disable logging. Valid values: enable,disable.
- log String
- Enable/disable logging. Valid values: enable,disable.
ProfilePop3, ProfilePop3Args    
ProfileSmtp, ProfileSmtpArgs    
- Action string
- Action for spam email. Valid values: pass,tag,discard.
- Hdrip string
- Enable/disable SMTP email header IP checks for spamfsip, spamrbl and spambwl filters. Valid values: disable,enable.
- LocalOverride string
- Enable/disable local filter to override SMTP remote check result. Valid values: disable,enable.
- Log string
- Enable/disable logging. Valid values: enable,disable.
- TagMsg string
- Subject text or header added to spam email.
- TagType string
- Tag subject or header for spam email. Valid values: subject,header,spaminfo.
- Action string
- Action for spam email. Valid values: pass,tag,discard.
- Hdrip string
- Enable/disable SMTP email header IP checks for spamfsip, spamrbl and spambwl filters. Valid values: disable,enable.
- LocalOverride string
- Enable/disable local filter to override SMTP remote check result. Valid values: disable,enable.
- Log string
- Enable/disable logging. Valid values: enable,disable.
- TagMsg string
- Subject text or header added to spam email.
- TagType string
- Tag subject or header for spam email. Valid values: subject,header,spaminfo.
- action String
- Action for spam email. Valid values: pass,tag,discard.
- hdrip String
- Enable/disable SMTP email header IP checks for spamfsip, spamrbl and spambwl filters. Valid values: disable,enable.
- localOverride String
- Enable/disable local filter to override SMTP remote check result. Valid values: disable,enable.
- log String
- Enable/disable logging. Valid values: enable,disable.
- tagMsg String
- Subject text or header added to spam email.
- tagType String
- Tag subject or header for spam email. Valid values: subject,header,spaminfo.
- action string
- Action for spam email. Valid values: pass,tag,discard.
- hdrip string
- Enable/disable SMTP email header IP checks for spamfsip, spamrbl and spambwl filters. Valid values: disable,enable.
- localOverride string
- Enable/disable local filter to override SMTP remote check result. Valid values: disable,enable.
- log string
- Enable/disable logging. Valid values: enable,disable.
- tagMsg string
- Subject text or header added to spam email.
- tagType string
- Tag subject or header for spam email. Valid values: subject,header,spaminfo.
- action str
- Action for spam email. Valid values: pass,tag,discard.
- hdrip str
- Enable/disable SMTP email header IP checks for spamfsip, spamrbl and spambwl filters. Valid values: disable,enable.
- local_override str
- Enable/disable local filter to override SMTP remote check result. Valid values: disable,enable.
- log str
- Enable/disable logging. Valid values: enable,disable.
- tag_msg str
- Subject text or header added to spam email.
- tag_type str
- Tag subject or header for spam email. Valid values: subject,header,spaminfo.
- action String
- Action for spam email. Valid values: pass,tag,discard.
- hdrip String
- Enable/disable SMTP email header IP checks for spamfsip, spamrbl and spambwl filters. Valid values: disable,enable.
- localOverride String
- Enable/disable local filter to override SMTP remote check result. Valid values: disable,enable.
- log String
- Enable/disable logging. Valid values: enable,disable.
- tagMsg String
- Subject text or header added to spam email.
- tagType String
- Tag subject or header for spam email. Valid values: subject,header,spaminfo.
ProfileYahooMail, ProfileYahooMailArgs      
- Log string
- Enable/disable logging. Valid values: enable,disable.
- Log string
- Enable/disable logging. Valid values: enable,disable.
- log String
- Enable/disable logging. Valid values: enable,disable.
- log string
- Enable/disable logging. Valid values: enable,disable.
- log str
- Enable/disable logging. Valid values: enable,disable.
- log String
- Enable/disable logging. Valid values: enable,disable.
Import
Spamfilter Profile can be imported using any of these accepted formats:
$ pulumi import fortios:filter/spam/profile:Profile labelname {{name}}
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:filter/spam/profile:Profile labelname {{name}}
$ unset “FORTIOS_IMPORT_TABLE”
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortios pulumiverse/pulumi-fortios
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the fortiosTerraform Provider.
