fortimanager.ObjectSystemReplacemsggroup
Explore with Pulumi AI
Configure replacement message groups.
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
admin
:fortimanager.ObjectSystemReplacemsggroupAdmin
alertmail
:fortimanager.ObjectSystemReplacemsggroupAlertmail
auth
:fortimanager.ObjectSystemReplacemsggroupAuth
automation
:fortimanager.ObjectSystemReplacemsggroupAutomation
custom_message
:fortimanager.ObjectSystemReplacemsggroupCustommessage
device_detection_portal
:fortimanager.ObjectSystemReplacemsggroupDevicedetectionportal
ec
:fortimanager_object_system_replacemsggroup_ec
fortiguard_wf
:fortimanager.ObjectSystemReplacemsggroupFortiguardwf
ftp
:fortimanager.ObjectSystemReplacemsggroupFtp
http
:fortimanager.ObjectSystemReplacemsggroupHttp
icap
:fortimanager.ObjectSystemReplacemsggroupIcap
fortimanager.ObjectSystemReplacemsggroupMail
mm1
:fortimanager_object_system_replacemsggroup_mm1
mm3
:fortimanager_object_system_replacemsggroup_mm3
mm4
:fortimanager_object_system_replacemsggroup_mm4
mm7
:fortimanager_object_system_replacemsggroup_mm7
mms
:fortimanager_object_system_replacemsggroup_mms
nac_quar
:fortimanager.ObjectSystemReplacemsggroupNacquar
nntp
:fortimanager.ObjectSystemReplacemsggroupNntp
spam
:fortimanager.ObjectSystemReplacemsggroupSpam
sslvpn
:fortimanager.ObjectSystemReplacemsggroupSslvpn
traffic_quota
:fortimanager.ObjectSystemReplacemsggroupTrafficquota
utm
:fortimanager.ObjectSystemReplacemsggroupUtm
webproxy
:fortimanager.ObjectSystemReplacemsggroupWebproxy
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectSystemReplacemsggroup("trname", {comment: "terraform-comment"});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectSystemReplacemsggroup("trname", comment="terraform-comment")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fortimanager.NewObjectSystemReplacemsggroup(ctx, "trname", &fortimanager.ObjectSystemReplacemsggroupArgs{
Comment: pulumi.String("terraform-comment"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trname = new Fortimanager.ObjectSystemReplacemsggroup("trname", new()
{
Comment = "terraform-comment",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectSystemReplacemsggroup;
import com.pulumi.fortimanager.ObjectSystemReplacemsggroupArgs;
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 ObjectSystemReplacemsggroup("trname", ObjectSystemReplacemsggroupArgs.builder()
.comment("terraform-comment")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectSystemReplacemsggroup
properties:
comment: terraform-comment
Create ObjectSystemReplacemsggroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectSystemReplacemsggroup(name: string, args?: ObjectSystemReplacemsggroupArgs, opts?: CustomResourceOptions);
@overload
def ObjectSystemReplacemsggroup(resource_name: str,
args: Optional[ObjectSystemReplacemsggroupArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectSystemReplacemsggroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
admins: Optional[Sequence[ObjectSystemReplacemsggroupAdminArgs]] = None,
adom: Optional[str] = None,
alertmails: Optional[Sequence[ObjectSystemReplacemsggroupAlertmailArgs]] = None,
auths: Optional[Sequence[ObjectSystemReplacemsggroupAuthArgs]] = None,
automations: Optional[Sequence[ObjectSystemReplacemsggroupAutomationArgs]] = None,
comment: Optional[str] = None,
custom_messages: Optional[Sequence[ObjectSystemReplacemsggroupCustomMessageArgs]] = None,
device_detection_portals: Optional[Sequence[ObjectSystemReplacemsggroupDeviceDetectionPortalArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
ecs: Optional[Sequence[ObjectSystemReplacemsggroupEcArgs]] = None,
fortiguard_wfs: Optional[Sequence[ObjectSystemReplacemsggroupFortiguardWfArgs]] = None,
ftps: Optional[Sequence[ObjectSystemReplacemsggroupFtpArgs]] = None,
group_type: Optional[str] = None,
https: Optional[Sequence[ObjectSystemReplacemsggroupHttpArgs]] = None,
icaps: Optional[Sequence[ObjectSystemReplacemsggroupIcapArgs]] = None,
mails: Optional[Sequence[ObjectSystemReplacemsggroupMailArgs]] = None,
mm1s: Optional[Sequence[ObjectSystemReplacemsggroupMm1Args]] = None,
mm3s: Optional[Sequence[ObjectSystemReplacemsggroupMm3Args]] = None,
mm4s: Optional[Sequence[ObjectSystemReplacemsggroupMm4Args]] = None,
mm7s: Optional[Sequence[ObjectSystemReplacemsggroupMm7Args]] = None,
mms: Optional[Sequence[ObjectSystemReplacemsggroupMmArgs]] = None,
nac_quars: Optional[Sequence[ObjectSystemReplacemsggroupNacQuarArgs]] = None,
name: Optional[str] = None,
nntps: Optional[Sequence[ObjectSystemReplacemsggroupNntpArgs]] = None,
object_system_replacemsggroup_id: Optional[str] = None,
scopetype: Optional[str] = None,
spams: Optional[Sequence[ObjectSystemReplacemsggroupSpamArgs]] = None,
sslvpns: Optional[Sequence[ObjectSystemReplacemsggroupSslvpnArgs]] = None,
traffic_quotas: Optional[Sequence[ObjectSystemReplacemsggroupTrafficQuotaArgs]] = None,
utms: Optional[Sequence[ObjectSystemReplacemsggroupUtmArgs]] = None,
webproxies: Optional[Sequence[ObjectSystemReplacemsggroupWebproxyArgs]] = None)
func NewObjectSystemReplacemsggroup(ctx *Context, name string, args *ObjectSystemReplacemsggroupArgs, opts ...ResourceOption) (*ObjectSystemReplacemsggroup, error)
public ObjectSystemReplacemsggroup(string name, ObjectSystemReplacemsggroupArgs? args = null, CustomResourceOptions? opts = null)
public ObjectSystemReplacemsggroup(String name, ObjectSystemReplacemsggroupArgs args)
public ObjectSystemReplacemsggroup(String name, ObjectSystemReplacemsggroupArgs args, CustomResourceOptions options)
type: fortimanager:ObjectSystemReplacemsggroup
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 ObjectSystemReplacemsggroupArgs
- 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 ObjectSystemReplacemsggroupArgs
- 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 ObjectSystemReplacemsggroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectSystemReplacemsggroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectSystemReplacemsggroupArgs
- 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 objectSystemReplacemsggroupResource = new Fortimanager.ObjectSystemReplacemsggroup("objectSystemReplacemsggroupResource", new()
{
Admins = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupAdminArgs
{
Buffer = "string",
Format = "string",
Header = "string",
MsgType = "string",
},
},
Adom = "string",
Alertmails = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupAlertmailArgs
{
Buffer = "string",
Format = "string",
Header = "string",
Id = 0,
MsgType = "string",
},
},
Auths = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupAuthArgs
{
Buffer = "string",
Format = "string",
Header = "string",
MsgType = "string",
},
},
Automations = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupAutomationArgs
{
Buffer = "string",
Format = "string",
Header = "string",
MsgType = "string",
},
},
Comment = "string",
CustomMessages = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupCustomMessageArgs
{
Buffer = "string",
Format = "string",
Header = "string",
MsgType = "string",
},
},
DeviceDetectionPortals = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupDeviceDetectionPortalArgs
{
Buffer = "string",
Format = "string",
Header = "string",
MsgType = "string",
},
},
DynamicSortSubtable = "string",
Ecs = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupEcArgs
{
Buffer = "string",
Format = "string",
Header = "string",
MsgType = "string",
},
},
FortiguardWfs = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupFortiguardWfArgs
{
Buffer = "string",
Format = "string",
Header = "string",
MsgType = "string",
},
},
Ftps = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupFtpArgs
{
Buffer = "string",
Format = "string",
Header = "string",
MsgType = "string",
},
},
GroupType = "string",
Https = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupHttpArgs
{
Buffer = "string",
Format = "string",
Header = "string",
MsgType = "string",
},
},
Icaps = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupIcapArgs
{
Buffer = "string",
Format = "string",
Header = "string",
MsgType = "string",
},
},
Mails = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupMailArgs
{
Buffer = "string",
Format = "string",
Header = "string",
MsgType = "string",
},
},
Mm1s = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupMm1Args
{
AddSmil = "string",
Charset = "string",
Class = "string",
Format = "string",
From = "string",
FromSender = "string",
Header = "string",
Image = "string",
Message = "string",
MsgType = "string",
Priority = "string",
RspStatus = "string",
RspText = "string",
SenderVisibility = "string",
SmilPart = "string",
Subject = "string",
},
},
Mm3s = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupMm3Args
{
AddHtml = "string",
Charset = "string",
Format = "string",
From = "string",
FromSender = "string",
Header = "string",
HtmlPart = "string",
Image = "string",
Message = "string",
MsgType = "string",
Priority = "string",
Subject = "string",
},
},
Mm4s = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupMm4Args
{
AddSmil = "string",
Charset = "string",
Class = "string",
Domain = "string",
Format = "string",
From = "string",
FromSender = "string",
Header = "string",
Image = "string",
Message = "string",
MsgType = "string",
Priority = "string",
RspStatus = "string",
SmilPart = "string",
Subject = "string",
},
},
Mm7s = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupMm7Args
{
AddSmil = "string",
AddrType = "string",
AllowContentAdaptation = "string",
Charset = "string",
Class = "string",
Format = "string",
From = "string",
FromSender = "string",
Header = "string",
Image = "string",
Message = "string",
MsgType = "string",
Priority = "string",
RspStatus = "string",
SmilPart = "string",
Subject = "string",
},
},
Mms = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupMmArgs
{
Buffer = "string",
Charset = "string",
Format = "string",
Header = "string",
Image = "string",
MsgType = "string",
},
},
NacQuars = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupNacQuarArgs
{
Buffer = "string",
Format = "string",
Header = "string",
Id = 0,
MsgType = "string",
},
},
Name = "string",
Nntps = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupNntpArgs
{
Buffer = "string",
Format = "string",
Header = "string",
MsgType = "string",
},
},
ObjectSystemReplacemsggroupId = "string",
Scopetype = "string",
Spams = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupSpamArgs
{
Buffer = "string",
Format = "string",
Header = "string",
MsgType = "string",
},
},
Sslvpns = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupSslvpnArgs
{
Buffer = "string",
Format = "string",
Header = "string",
MsgType = "string",
},
},
TrafficQuotas = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupTrafficQuotaArgs
{
Buffer = "string",
Format = "string",
Header = "string",
MsgType = "string",
},
},
Utms = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupUtmArgs
{
Buffer = "string",
Format = "string",
Header = "string",
MsgType = "string",
},
},
Webproxies = new[]
{
new Fortimanager.Inputs.ObjectSystemReplacemsggroupWebproxyArgs
{
Buffer = "string",
Format = "string",
Header = "string",
MsgType = "string",
},
},
});
example, err := fortimanager.NewObjectSystemReplacemsggroup(ctx, "objectSystemReplacemsggroupResource", &fortimanager.ObjectSystemReplacemsggroupArgs{
Admins: .ObjectSystemReplacemsggroupAdminTypeArray{
&.ObjectSystemReplacemsggroupAdminTypeArgs{
Buffer: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
MsgType: pulumi.String("string"),
},
},
Adom: pulumi.String("string"),
Alertmails: .ObjectSystemReplacemsggroupAlertmailTypeArray{
&.ObjectSystemReplacemsggroupAlertmailTypeArgs{
Buffer: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
Id: pulumi.Float64(0),
MsgType: pulumi.String("string"),
},
},
Auths: .ObjectSystemReplacemsggroupAuthTypeArray{
&.ObjectSystemReplacemsggroupAuthTypeArgs{
Buffer: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
MsgType: pulumi.String("string"),
},
},
Automations: .ObjectSystemReplacemsggroupAutomationTypeArray{
&.ObjectSystemReplacemsggroupAutomationTypeArgs{
Buffer: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
MsgType: pulumi.String("string"),
},
},
Comment: pulumi.String("string"),
CustomMessages: .ObjectSystemReplacemsggroupCustomMessageTypeArray{
&.ObjectSystemReplacemsggroupCustomMessageTypeArgs{
Buffer: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
MsgType: pulumi.String("string"),
},
},
DeviceDetectionPortals: .ObjectSystemReplacemsggroupDeviceDetectionPortalTypeArray{
&.ObjectSystemReplacemsggroupDeviceDetectionPortalTypeArgs{
Buffer: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
MsgType: pulumi.String("string"),
},
},
DynamicSortSubtable: pulumi.String("string"),
Ecs: .ObjectSystemReplacemsggroupEcArray{
&.ObjectSystemReplacemsggroupEcArgs{
Buffer: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
MsgType: pulumi.String("string"),
},
},
FortiguardWfs: .ObjectSystemReplacemsggroupFortiguardWfTypeArray{
&.ObjectSystemReplacemsggroupFortiguardWfTypeArgs{
Buffer: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
MsgType: pulumi.String("string"),
},
},
Ftps: .ObjectSystemReplacemsggroupFtpTypeArray{
&.ObjectSystemReplacemsggroupFtpTypeArgs{
Buffer: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
MsgType: pulumi.String("string"),
},
},
GroupType: pulumi.String("string"),
Https: .ObjectSystemReplacemsggroupHttpTypeArray{
&.ObjectSystemReplacemsggroupHttpTypeArgs{
Buffer: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
MsgType: pulumi.String("string"),
},
},
Icaps: .ObjectSystemReplacemsggroupIcapTypeArray{
&.ObjectSystemReplacemsggroupIcapTypeArgs{
Buffer: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
MsgType: pulumi.String("string"),
},
},
Mails: .ObjectSystemReplacemsggroupMailTypeArray{
&.ObjectSystemReplacemsggroupMailTypeArgs{
Buffer: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
MsgType: pulumi.String("string"),
},
},
Mm1s: .ObjectSystemReplacemsggroupMm1Array{
&.ObjectSystemReplacemsggroupMm1Args{
AddSmil: pulumi.String("string"),
Charset: pulumi.String("string"),
Class: pulumi.String("string"),
Format: pulumi.String("string"),
From: pulumi.String("string"),
FromSender: pulumi.String("string"),
Header: pulumi.String("string"),
Image: pulumi.String("string"),
Message: pulumi.String("string"),
MsgType: pulumi.String("string"),
Priority: pulumi.String("string"),
RspStatus: pulumi.String("string"),
RspText: pulumi.String("string"),
SenderVisibility: pulumi.String("string"),
SmilPart: pulumi.String("string"),
Subject: pulumi.String("string"),
},
},
Mm3s: .ObjectSystemReplacemsggroupMm3Array{
&.ObjectSystemReplacemsggroupMm3Args{
AddHtml: pulumi.String("string"),
Charset: pulumi.String("string"),
Format: pulumi.String("string"),
From: pulumi.String("string"),
FromSender: pulumi.String("string"),
Header: pulumi.String("string"),
HtmlPart: pulumi.String("string"),
Image: pulumi.String("string"),
Message: pulumi.String("string"),
MsgType: pulumi.String("string"),
Priority: pulumi.String("string"),
Subject: pulumi.String("string"),
},
},
Mm4s: .ObjectSystemReplacemsggroupMm4Array{
&.ObjectSystemReplacemsggroupMm4Args{
AddSmil: pulumi.String("string"),
Charset: pulumi.String("string"),
Class: pulumi.String("string"),
Domain: pulumi.String("string"),
Format: pulumi.String("string"),
From: pulumi.String("string"),
FromSender: pulumi.String("string"),
Header: pulumi.String("string"),
Image: pulumi.String("string"),
Message: pulumi.String("string"),
MsgType: pulumi.String("string"),
Priority: pulumi.String("string"),
RspStatus: pulumi.String("string"),
SmilPart: pulumi.String("string"),
Subject: pulumi.String("string"),
},
},
Mm7s: .ObjectSystemReplacemsggroupMm7Array{
&.ObjectSystemReplacemsggroupMm7Args{
AddSmil: pulumi.String("string"),
AddrType: pulumi.String("string"),
AllowContentAdaptation: pulumi.String("string"),
Charset: pulumi.String("string"),
Class: pulumi.String("string"),
Format: pulumi.String("string"),
From: pulumi.String("string"),
FromSender: pulumi.String("string"),
Header: pulumi.String("string"),
Image: pulumi.String("string"),
Message: pulumi.String("string"),
MsgType: pulumi.String("string"),
Priority: pulumi.String("string"),
RspStatus: pulumi.String("string"),
SmilPart: pulumi.String("string"),
Subject: pulumi.String("string"),
},
},
Mms: .ObjectSystemReplacemsggroupMmArray{
&.ObjectSystemReplacemsggroupMmArgs{
Buffer: pulumi.String("string"),
Charset: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
Image: pulumi.String("string"),
MsgType: pulumi.String("string"),
},
},
NacQuars: .ObjectSystemReplacemsggroupNacQuarTypeArray{
&.ObjectSystemReplacemsggroupNacQuarTypeArgs{
Buffer: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
Id: pulumi.Float64(0),
MsgType: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
Nntps: .ObjectSystemReplacemsggroupNntpTypeArray{
&.ObjectSystemReplacemsggroupNntpTypeArgs{
Buffer: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
MsgType: pulumi.String("string"),
},
},
ObjectSystemReplacemsggroupId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Spams: .ObjectSystemReplacemsggroupSpamTypeArray{
&.ObjectSystemReplacemsggroupSpamTypeArgs{
Buffer: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
MsgType: pulumi.String("string"),
},
},
Sslvpns: .ObjectSystemReplacemsggroupSslvpnTypeArray{
&.ObjectSystemReplacemsggroupSslvpnTypeArgs{
Buffer: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
MsgType: pulumi.String("string"),
},
},
TrafficQuotas: .ObjectSystemReplacemsggroupTrafficQuotaTypeArray{
&.ObjectSystemReplacemsggroupTrafficQuotaTypeArgs{
Buffer: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
MsgType: pulumi.String("string"),
},
},
Utms: .ObjectSystemReplacemsggroupUtmTypeArray{
&.ObjectSystemReplacemsggroupUtmTypeArgs{
Buffer: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
MsgType: pulumi.String("string"),
},
},
Webproxies: .ObjectSystemReplacemsggroupWebproxyTypeArray{
&.ObjectSystemReplacemsggroupWebproxyTypeArgs{
Buffer: pulumi.String("string"),
Format: pulumi.String("string"),
Header: pulumi.String("string"),
MsgType: pulumi.String("string"),
},
},
})
var objectSystemReplacemsggroupResource = new ObjectSystemReplacemsggroup("objectSystemReplacemsggroupResource", ObjectSystemReplacemsggroupArgs.builder()
.admins(ObjectSystemReplacemsggroupAdminArgs.builder()
.buffer("string")
.format("string")
.header("string")
.msgType("string")
.build())
.adom("string")
.alertmails(ObjectSystemReplacemsggroupAlertmailArgs.builder()
.buffer("string")
.format("string")
.header("string")
.id(0)
.msgType("string")
.build())
.auths(ObjectSystemReplacemsggroupAuthArgs.builder()
.buffer("string")
.format("string")
.header("string")
.msgType("string")
.build())
.automations(ObjectSystemReplacemsggroupAutomationArgs.builder()
.buffer("string")
.format("string")
.header("string")
.msgType("string")
.build())
.comment("string")
.customMessages(ObjectSystemReplacemsggroupCustomMessageArgs.builder()
.buffer("string")
.format("string")
.header("string")
.msgType("string")
.build())
.deviceDetectionPortals(ObjectSystemReplacemsggroupDeviceDetectionPortalArgs.builder()
.buffer("string")
.format("string")
.header("string")
.msgType("string")
.build())
.dynamicSortSubtable("string")
.ecs(ObjectSystemReplacemsggroupEcArgs.builder()
.buffer("string")
.format("string")
.header("string")
.msgType("string")
.build())
.fortiguardWfs(ObjectSystemReplacemsggroupFortiguardWfArgs.builder()
.buffer("string")
.format("string")
.header("string")
.msgType("string")
.build())
.ftps(ObjectSystemReplacemsggroupFtpArgs.builder()
.buffer("string")
.format("string")
.header("string")
.msgType("string")
.build())
.groupType("string")
.https(ObjectSystemReplacemsggroupHttpArgs.builder()
.buffer("string")
.format("string")
.header("string")
.msgType("string")
.build())
.icaps(ObjectSystemReplacemsggroupIcapArgs.builder()
.buffer("string")
.format("string")
.header("string")
.msgType("string")
.build())
.mails(ObjectSystemReplacemsggroupMailArgs.builder()
.buffer("string")
.format("string")
.header("string")
.msgType("string")
.build())
.mm1s(ObjectSystemReplacemsggroupMm1Args.builder()
.addSmil("string")
.charset("string")
.class_("string")
.format("string")
.from("string")
.fromSender("string")
.header("string")
.image("string")
.message("string")
.msgType("string")
.priority("string")
.rspStatus("string")
.rspText("string")
.senderVisibility("string")
.smilPart("string")
.subject("string")
.build())
.mm3s(ObjectSystemReplacemsggroupMm3Args.builder()
.addHtml("string")
.charset("string")
.format("string")
.from("string")
.fromSender("string")
.header("string")
.htmlPart("string")
.image("string")
.message("string")
.msgType("string")
.priority("string")
.subject("string")
.build())
.mm4s(ObjectSystemReplacemsggroupMm4Args.builder()
.addSmil("string")
.charset("string")
.class_("string")
.domain("string")
.format("string")
.from("string")
.fromSender("string")
.header("string")
.image("string")
.message("string")
.msgType("string")
.priority("string")
.rspStatus("string")
.smilPart("string")
.subject("string")
.build())
.mm7s(ObjectSystemReplacemsggroupMm7Args.builder()
.addSmil("string")
.addrType("string")
.allowContentAdaptation("string")
.charset("string")
.class_("string")
.format("string")
.from("string")
.fromSender("string")
.header("string")
.image("string")
.message("string")
.msgType("string")
.priority("string")
.rspStatus("string")
.smilPart("string")
.subject("string")
.build())
.mms(ObjectSystemReplacemsggroupMmArgs.builder()
.buffer("string")
.charset("string")
.format("string")
.header("string")
.image("string")
.msgType("string")
.build())
.nacQuars(ObjectSystemReplacemsggroupNacQuarArgs.builder()
.buffer("string")
.format("string")
.header("string")
.id(0)
.msgType("string")
.build())
.name("string")
.nntps(ObjectSystemReplacemsggroupNntpArgs.builder()
.buffer("string")
.format("string")
.header("string")
.msgType("string")
.build())
.objectSystemReplacemsggroupId("string")
.scopetype("string")
.spams(ObjectSystemReplacemsggroupSpamArgs.builder()
.buffer("string")
.format("string")
.header("string")
.msgType("string")
.build())
.sslvpns(ObjectSystemReplacemsggroupSslvpnArgs.builder()
.buffer("string")
.format("string")
.header("string")
.msgType("string")
.build())
.trafficQuotas(ObjectSystemReplacemsggroupTrafficQuotaArgs.builder()
.buffer("string")
.format("string")
.header("string")
.msgType("string")
.build())
.utms(ObjectSystemReplacemsggroupUtmArgs.builder()
.buffer("string")
.format("string")
.header("string")
.msgType("string")
.build())
.webproxies(ObjectSystemReplacemsggroupWebproxyArgs.builder()
.buffer("string")
.format("string")
.header("string")
.msgType("string")
.build())
.build());
object_system_replacemsggroup_resource = fortimanager.ObjectSystemReplacemsggroup("objectSystemReplacemsggroupResource",
admins=[{
"buffer": "string",
"format": "string",
"header": "string",
"msg_type": "string",
}],
adom="string",
alertmails=[{
"buffer": "string",
"format": "string",
"header": "string",
"id": 0,
"msg_type": "string",
}],
auths=[{
"buffer": "string",
"format": "string",
"header": "string",
"msg_type": "string",
}],
automations=[{
"buffer": "string",
"format": "string",
"header": "string",
"msg_type": "string",
}],
comment="string",
custom_messages=[{
"buffer": "string",
"format": "string",
"header": "string",
"msg_type": "string",
}],
device_detection_portals=[{
"buffer": "string",
"format": "string",
"header": "string",
"msg_type": "string",
}],
dynamic_sort_subtable="string",
ecs=[{
"buffer": "string",
"format": "string",
"header": "string",
"msg_type": "string",
}],
fortiguard_wfs=[{
"buffer": "string",
"format": "string",
"header": "string",
"msg_type": "string",
}],
ftps=[{
"buffer": "string",
"format": "string",
"header": "string",
"msg_type": "string",
}],
group_type="string",
https=[{
"buffer": "string",
"format": "string",
"header": "string",
"msg_type": "string",
}],
icaps=[{
"buffer": "string",
"format": "string",
"header": "string",
"msg_type": "string",
}],
mails=[{
"buffer": "string",
"format": "string",
"header": "string",
"msg_type": "string",
}],
mm1s=[{
"add_smil": "string",
"charset": "string",
"class_": "string",
"format": "string",
"from_": "string",
"from_sender": "string",
"header": "string",
"image": "string",
"message": "string",
"msg_type": "string",
"priority": "string",
"rsp_status": "string",
"rsp_text": "string",
"sender_visibility": "string",
"smil_part": "string",
"subject": "string",
}],
mm3s=[{
"add_html": "string",
"charset": "string",
"format": "string",
"from_": "string",
"from_sender": "string",
"header": "string",
"html_part": "string",
"image": "string",
"message": "string",
"msg_type": "string",
"priority": "string",
"subject": "string",
}],
mm4s=[{
"add_smil": "string",
"charset": "string",
"class_": "string",
"domain": "string",
"format": "string",
"from_": "string",
"from_sender": "string",
"header": "string",
"image": "string",
"message": "string",
"msg_type": "string",
"priority": "string",
"rsp_status": "string",
"smil_part": "string",
"subject": "string",
}],
mm7s=[{
"add_smil": "string",
"addr_type": "string",
"allow_content_adaptation": "string",
"charset": "string",
"class_": "string",
"format": "string",
"from_": "string",
"from_sender": "string",
"header": "string",
"image": "string",
"message": "string",
"msg_type": "string",
"priority": "string",
"rsp_status": "string",
"smil_part": "string",
"subject": "string",
}],
mms=[{
"buffer": "string",
"charset": "string",
"format": "string",
"header": "string",
"image": "string",
"msg_type": "string",
}],
nac_quars=[{
"buffer": "string",
"format": "string",
"header": "string",
"id": 0,
"msg_type": "string",
}],
name="string",
nntps=[{
"buffer": "string",
"format": "string",
"header": "string",
"msg_type": "string",
}],
object_system_replacemsggroup_id="string",
scopetype="string",
spams=[{
"buffer": "string",
"format": "string",
"header": "string",
"msg_type": "string",
}],
sslvpns=[{
"buffer": "string",
"format": "string",
"header": "string",
"msg_type": "string",
}],
traffic_quotas=[{
"buffer": "string",
"format": "string",
"header": "string",
"msg_type": "string",
}],
utms=[{
"buffer": "string",
"format": "string",
"header": "string",
"msg_type": "string",
}],
webproxies=[{
"buffer": "string",
"format": "string",
"header": "string",
"msg_type": "string",
}])
const objectSystemReplacemsggroupResource = new fortimanager.ObjectSystemReplacemsggroup("objectSystemReplacemsggroupResource", {
admins: [{
buffer: "string",
format: "string",
header: "string",
msgType: "string",
}],
adom: "string",
alertmails: [{
buffer: "string",
format: "string",
header: "string",
id: 0,
msgType: "string",
}],
auths: [{
buffer: "string",
format: "string",
header: "string",
msgType: "string",
}],
automations: [{
buffer: "string",
format: "string",
header: "string",
msgType: "string",
}],
comment: "string",
customMessages: [{
buffer: "string",
format: "string",
header: "string",
msgType: "string",
}],
deviceDetectionPortals: [{
buffer: "string",
format: "string",
header: "string",
msgType: "string",
}],
dynamicSortSubtable: "string",
ecs: [{
buffer: "string",
format: "string",
header: "string",
msgType: "string",
}],
fortiguardWfs: [{
buffer: "string",
format: "string",
header: "string",
msgType: "string",
}],
ftps: [{
buffer: "string",
format: "string",
header: "string",
msgType: "string",
}],
groupType: "string",
https: [{
buffer: "string",
format: "string",
header: "string",
msgType: "string",
}],
icaps: [{
buffer: "string",
format: "string",
header: "string",
msgType: "string",
}],
mails: [{
buffer: "string",
format: "string",
header: "string",
msgType: "string",
}],
mm1s: [{
addSmil: "string",
charset: "string",
"class": "string",
format: "string",
from: "string",
fromSender: "string",
header: "string",
image: "string",
message: "string",
msgType: "string",
priority: "string",
rspStatus: "string",
rspText: "string",
senderVisibility: "string",
smilPart: "string",
subject: "string",
}],
mm3s: [{
addHtml: "string",
charset: "string",
format: "string",
from: "string",
fromSender: "string",
header: "string",
htmlPart: "string",
image: "string",
message: "string",
msgType: "string",
priority: "string",
subject: "string",
}],
mm4s: [{
addSmil: "string",
charset: "string",
"class": "string",
domain: "string",
format: "string",
from: "string",
fromSender: "string",
header: "string",
image: "string",
message: "string",
msgType: "string",
priority: "string",
rspStatus: "string",
smilPart: "string",
subject: "string",
}],
mm7s: [{
addSmil: "string",
addrType: "string",
allowContentAdaptation: "string",
charset: "string",
"class": "string",
format: "string",
from: "string",
fromSender: "string",
header: "string",
image: "string",
message: "string",
msgType: "string",
priority: "string",
rspStatus: "string",
smilPart: "string",
subject: "string",
}],
mms: [{
buffer: "string",
charset: "string",
format: "string",
header: "string",
image: "string",
msgType: "string",
}],
nacQuars: [{
buffer: "string",
format: "string",
header: "string",
id: 0,
msgType: "string",
}],
name: "string",
nntps: [{
buffer: "string",
format: "string",
header: "string",
msgType: "string",
}],
objectSystemReplacemsggroupId: "string",
scopetype: "string",
spams: [{
buffer: "string",
format: "string",
header: "string",
msgType: "string",
}],
sslvpns: [{
buffer: "string",
format: "string",
header: "string",
msgType: "string",
}],
trafficQuotas: [{
buffer: "string",
format: "string",
header: "string",
msgType: "string",
}],
utms: [{
buffer: "string",
format: "string",
header: "string",
msgType: "string",
}],
webproxies: [{
buffer: "string",
format: "string",
header: "string",
msgType: "string",
}],
});
type: fortimanager:ObjectSystemReplacemsggroup
properties:
admins:
- buffer: string
format: string
header: string
msgType: string
adom: string
alertmails:
- buffer: string
format: string
header: string
id: 0
msgType: string
auths:
- buffer: string
format: string
header: string
msgType: string
automations:
- buffer: string
format: string
header: string
msgType: string
comment: string
customMessages:
- buffer: string
format: string
header: string
msgType: string
deviceDetectionPortals:
- buffer: string
format: string
header: string
msgType: string
dynamicSortSubtable: string
ecs:
- buffer: string
format: string
header: string
msgType: string
fortiguardWfs:
- buffer: string
format: string
header: string
msgType: string
ftps:
- buffer: string
format: string
header: string
msgType: string
groupType: string
https:
- buffer: string
format: string
header: string
msgType: string
icaps:
- buffer: string
format: string
header: string
msgType: string
mails:
- buffer: string
format: string
header: string
msgType: string
mm1s:
- addSmil: string
charset: string
class: string
format: string
from: string
fromSender: string
header: string
image: string
message: string
msgType: string
priority: string
rspStatus: string
rspText: string
senderVisibility: string
smilPart: string
subject: string
mm3s:
- addHtml: string
charset: string
format: string
from: string
fromSender: string
header: string
htmlPart: string
image: string
message: string
msgType: string
priority: string
subject: string
mm4s:
- addSmil: string
charset: string
class: string
domain: string
format: string
from: string
fromSender: string
header: string
image: string
message: string
msgType: string
priority: string
rspStatus: string
smilPart: string
subject: string
mm7s:
- addSmil: string
addrType: string
allowContentAdaptation: string
charset: string
class: string
format: string
from: string
fromSender: string
header: string
image: string
message: string
msgType: string
priority: string
rspStatus: string
smilPart: string
subject: string
mms:
- buffer: string
charset: string
format: string
header: string
image: string
msgType: string
nacQuars:
- buffer: string
format: string
header: string
id: 0
msgType: string
name: string
nntps:
- buffer: string
format: string
header: string
msgType: string
objectSystemReplacemsggroupId: string
scopetype: string
spams:
- buffer: string
format: string
header: string
msgType: string
sslvpns:
- buffer: string
format: string
header: string
msgType: string
trafficQuotas:
- buffer: string
format: string
header: string
msgType: string
utms:
- buffer: string
format: string
header: string
msgType: string
webproxies:
- buffer: string
format: string
header: string
msgType: string
ObjectSystemReplacemsggroup 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 ObjectSystemReplacemsggroup resource accepts the following input properties:
- Admins
List<Object
System Replacemsggroup Admin> - Admin. The structure of
admin
block is documented below. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Alertmails
List<Object
System Replacemsggroup Alertmail> - Alertmail. The structure of
alertmail
block is documented below. - Auths
List<Object
System Replacemsggroup Auth> - Auth. The structure of
auth
block is documented below. - Automations
List<Object
System Replacemsggroup Automation> - Automation. The structure of
automation
block is documented below. - Comment string
- Comment.
- Custom
Messages List<ObjectSystem Replacemsggroup Custom Message> - Custom-Message. The structure of
custom_message
block is documented below. - Device
Detection List<ObjectPortals System Replacemsggroup Device Detection Portal> - Device-Detection-Portal. The structure of
device_detection_portal
block is documented below. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Ecs
List<Object
System Replacemsggroup Ec> - Ec. The structure of
ec
block is documented below. - Fortiguard
Wfs List<ObjectSystem Replacemsggroup Fortiguard Wf> - Fortiguard-Wf. The structure of
fortiguard_wf
block is documented below. - Ftps
List<Object
System Replacemsggroup Ftp> - Ftp. The structure of
ftp
block is documented below. - Group
Type string - Group type. Valid values:
default
,utm
,auth
,ec
,captive-portal
. - Https
List<Object
System Replacemsggroup Http> - Http. The structure of
http
block is documented below. - Icaps
List<Object
System Replacemsggroup Icap> - Icap. The structure of
icap
block is documented below. - Mails
List<Object
System Replacemsggroup Mail> - Mail. The structure of
mail
block is documented below. - Mm1s
List<Object
System Replacemsggroup Mm1> - Mm1. The structure of
mm1
block is documented below. - Mm3s
List<Object
System Replacemsggroup Mm3> - Mm3. The structure of
mm3
block is documented below. - Mm4s
List<Object
System Replacemsggroup Mm4> - Mm4. The structure of
mm4
block is documented below. - Mm7s
List<Object
System Replacemsggroup Mm7> - Mm7. The structure of
mm7
block is documented below. - Mms
List<Object
System Replacemsggroup Mm> - Mms. The structure of
mms
block is documented below. - Nac
Quars List<ObjectSystem Replacemsggroup Nac Quar> - Nac-Quar. The structure of
nac_quar
block is documented below. - Name string
- Group name.
- Nntps
List<Object
System Replacemsggroup Nntp> - Nntp. The structure of
nntp
block is documented below. - Object
System stringReplacemsggroup Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Spams
List<Object
System Replacemsggroup Spam> - Spam. The structure of
spam
block is documented below. - Sslvpns
List<Object
System Replacemsggroup Sslvpn> - Sslvpn. The structure of
sslvpn
block is documented below. - Traffic
Quotas List<ObjectSystem Replacemsggroup Traffic Quota> - Traffic-Quota. The structure of
traffic_quota
block is documented below. - Utms
List<Object
System Replacemsggroup Utm> - Utm. The structure of
utm
block is documented below. - Webproxies
List<Object
System Replacemsggroup Webproxy> - Webproxy. The structure of
webproxy
block is documented below.
- Admins
[]Object
System Replacemsggroup Admin Type Args - Admin. The structure of
admin
block is documented below. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Alertmails
[]Object
System Replacemsggroup Alertmail Type Args - Alertmail. The structure of
alertmail
block is documented below. - Auths
[]Object
System Replacemsggroup Auth Type Args - Auth. The structure of
auth
block is documented below. - Automations
[]Object
System Replacemsggroup Automation Type Args - Automation. The structure of
automation
block is documented below. - Comment string
- Comment.
- Custom
Messages []ObjectSystem Replacemsggroup Custom Message Type Args - Custom-Message. The structure of
custom_message
block is documented below. - Device
Detection []ObjectPortals System Replacemsggroup Device Detection Portal Type Args - Device-Detection-Portal. The structure of
device_detection_portal
block is documented below. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Ecs
[]Object
System Replacemsggroup Ec Args - Ec. The structure of
ec
block is documented below. - Fortiguard
Wfs []ObjectSystem Replacemsggroup Fortiguard Wf Type Args - Fortiguard-Wf. The structure of
fortiguard_wf
block is documented below. - Ftps
[]Object
System Replacemsggroup Ftp Type Args - Ftp. The structure of
ftp
block is documented below. - Group
Type string - Group type. Valid values:
default
,utm
,auth
,ec
,captive-portal
. - Https
[]Object
System Replacemsggroup Http Type Args - Http. The structure of
http
block is documented below. - Icaps
[]Object
System Replacemsggroup Icap Type Args - Icap. The structure of
icap
block is documented below. - Mails
[]Object
System Replacemsggroup Mail Type Args - Mail. The structure of
mail
block is documented below. - Mm1s
[]Object
System Replacemsggroup Mm1Args - Mm1. The structure of
mm1
block is documented below. - Mm3s
[]Object
System Replacemsggroup Mm3Args - Mm3. The structure of
mm3
block is documented below. - Mm4s
[]Object
System Replacemsggroup Mm4Args - Mm4. The structure of
mm4
block is documented below. - Mm7s
[]Object
System Replacemsggroup Mm7Args - Mm7. The structure of
mm7
block is documented below. - Mms
[]Object
System Replacemsggroup Mm Args - Mms. The structure of
mms
block is documented below. - Nac
Quars []ObjectSystem Replacemsggroup Nac Quar Type Args - Nac-Quar. The structure of
nac_quar
block is documented below. - Name string
- Group name.
- Nntps
[]Object
System Replacemsggroup Nntp Type Args - Nntp. The structure of
nntp
block is documented below. - Object
System stringReplacemsggroup Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Spams
[]Object
System Replacemsggroup Spam Type Args - Spam. The structure of
spam
block is documented below. - Sslvpns
[]Object
System Replacemsggroup Sslvpn Type Args - Sslvpn. The structure of
sslvpn
block is documented below. - Traffic
Quotas []ObjectSystem Replacemsggroup Traffic Quota Type Args - Traffic-Quota. The structure of
traffic_quota
block is documented below. - Utms
[]Object
System Replacemsggroup Utm Type Args - Utm. The structure of
utm
block is documented below. - Webproxies
[]Object
System Replacemsggroup Webproxy Type Args - Webproxy. The structure of
webproxy
block is documented below.
- admins
List<Object
System Replacemsggroup Admin> - Admin. The structure of
admin
block is documented below. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - alertmails
List<Object
System Replacemsggroup Alertmail> - Alertmail. The structure of
alertmail
block is documented below. - auths
List<Object
System Replacemsggroup Auth> - Auth. The structure of
auth
block is documented below. - automations
List<Object
System Replacemsggroup Automation> - Automation. The structure of
automation
block is documented below. - comment String
- Comment.
- custom
Messages List<ObjectSystem Replacemsggroup Custom Message> - Custom-Message. The structure of
custom_message
block is documented below. - device
Detection List<ObjectPortals System Replacemsggroup Device Detection Portal> - Device-Detection-Portal. The structure of
device_detection_portal
block is documented below. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- ecs
List<Object
System Replacemsggroup Ec> - Ec. The structure of
ec
block is documented below. - fortiguard
Wfs List<ObjectSystem Replacemsggroup Fortiguard Wf> - Fortiguard-Wf. The structure of
fortiguard_wf
block is documented below. - ftps
List<Object
System Replacemsggroup Ftp> - Ftp. The structure of
ftp
block is documented below. - group
Type String - Group type. Valid values:
default
,utm
,auth
,ec
,captive-portal
. - https
List<Object
System Replacemsggroup Http> - Http. The structure of
http
block is documented below. - icaps
List<Object
System Replacemsggroup Icap> - Icap. The structure of
icap
block is documented below. - mails
List<Object
System Replacemsggroup Mail> - Mail. The structure of
mail
block is documented below. - mm1s
List<Object
System Replacemsggroup Mm1> - Mm1. The structure of
mm1
block is documented below. - mm3s
List<Object
System Replacemsggroup Mm3> - Mm3. The structure of
mm3
block is documented below. - mm4s
List<Object
System Replacemsggroup Mm4> - Mm4. The structure of
mm4
block is documented below. - mm7s
List<Object
System Replacemsggroup Mm7> - Mm7. The structure of
mm7
block is documented below. - mms
List<Object
System Replacemsggroup Mm> - Mms. The structure of
mms
block is documented below. - nac
Quars List<ObjectSystem Replacemsggroup Nac Quar> - Nac-Quar. The structure of
nac_quar
block is documented below. - name String
- Group name.
- nntps
List<Object
System Replacemsggroup Nntp> - Nntp. The structure of
nntp
block is documented below. - object
System StringReplacemsggroup Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - spams
List<Object
System Replacemsggroup Spam> - Spam. The structure of
spam
block is documented below. - sslvpns
List<Object
System Replacemsggroup Sslvpn> - Sslvpn. The structure of
sslvpn
block is documented below. - traffic
Quotas List<ObjectSystem Replacemsggroup Traffic Quota> - Traffic-Quota. The structure of
traffic_quota
block is documented below. - utms
List<Object
System Replacemsggroup Utm> - Utm. The structure of
utm
block is documented below. - webproxies
List<Object
System Replacemsggroup Webproxy> - Webproxy. The structure of
webproxy
block is documented below.
- admins
Object
System Replacemsggroup Admin[] - Admin. The structure of
admin
block is documented below. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - alertmails
Object
System Replacemsggroup Alertmail[] - Alertmail. The structure of
alertmail
block is documented below. - auths
Object
System Replacemsggroup Auth[] - Auth. The structure of
auth
block is documented below. - automations
Object
System Replacemsggroup Automation[] - Automation. The structure of
automation
block is documented below. - comment string
- Comment.
- custom
Messages ObjectSystem Replacemsggroup Custom Message[] - Custom-Message. The structure of
custom_message
block is documented below. - device
Detection ObjectPortals System Replacemsggroup Device Detection Portal[] - Device-Detection-Portal. The structure of
device_detection_portal
block is documented below. - dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- ecs
Object
System Replacemsggroup Ec[] - Ec. The structure of
ec
block is documented below. - fortiguard
Wfs ObjectSystem Replacemsggroup Fortiguard Wf[] - Fortiguard-Wf. The structure of
fortiguard_wf
block is documented below. - ftps
Object
System Replacemsggroup Ftp[] - Ftp. The structure of
ftp
block is documented below. - group
Type string - Group type. Valid values:
default
,utm
,auth
,ec
,captive-portal
. - https
Object
System Replacemsggroup Http[] - Http. The structure of
http
block is documented below. - icaps
Object
System Replacemsggroup Icap[] - Icap. The structure of
icap
block is documented below. - mails
Object
System Replacemsggroup Mail[] - Mail. The structure of
mail
block is documented below. - mm1s
Object
System Replacemsggroup Mm1[] - Mm1. The structure of
mm1
block is documented below. - mm3s
Object
System Replacemsggroup Mm3[] - Mm3. The structure of
mm3
block is documented below. - mm4s
Object
System Replacemsggroup Mm4[] - Mm4. The structure of
mm4
block is documented below. - mm7s
Object
System Replacemsggroup Mm7[] - Mm7. The structure of
mm7
block is documented below. - mms
Object
System Replacemsggroup Mm[] - Mms. The structure of
mms
block is documented below. - nac
Quars ObjectSystem Replacemsggroup Nac Quar[] - Nac-Quar. The structure of
nac_quar
block is documented below. - name string
- Group name.
- nntps
Object
System Replacemsggroup Nntp[] - Nntp. The structure of
nntp
block is documented below. - object
System stringReplacemsggroup Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - spams
Object
System Replacemsggroup Spam[] - Spam. The structure of
spam
block is documented below. - sslvpns
Object
System Replacemsggroup Sslvpn[] - Sslvpn. The structure of
sslvpn
block is documented below. - traffic
Quotas ObjectSystem Replacemsggroup Traffic Quota[] - Traffic-Quota. The structure of
traffic_quota
block is documented below. - utms
Object
System Replacemsggroup Utm[] - Utm. The structure of
utm
block is documented below. - webproxies
Object
System Replacemsggroup Webproxy[] - Webproxy. The structure of
webproxy
block is documented below.
- admins
Sequence[Object
System Replacemsggroup Admin Args] - Admin. The structure of
admin
block is documented below. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - alertmails
Sequence[Object
System Replacemsggroup Alertmail Args] - Alertmail. The structure of
alertmail
block is documented below. - auths
Sequence[Object
System Replacemsggroup Auth Args] - Auth. The structure of
auth
block is documented below. - automations
Sequence[Object
System Replacemsggroup Automation Args] - Automation. The structure of
automation
block is documented below. - comment str
- Comment.
- custom_
messages Sequence[ObjectSystem Replacemsggroup Custom Message Args] - Custom-Message. The structure of
custom_message
block is documented below. - device_
detection_ Sequence[Objectportals System Replacemsggroup Device Detection Portal Args] - Device-Detection-Portal. The structure of
device_detection_portal
block is documented below. - dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- ecs
Sequence[Object
System Replacemsggroup Ec Args] - Ec. The structure of
ec
block is documented below. - fortiguard_
wfs Sequence[ObjectSystem Replacemsggroup Fortiguard Wf Args] - Fortiguard-Wf. The structure of
fortiguard_wf
block is documented below. - ftps
Sequence[Object
System Replacemsggroup Ftp Args] - Ftp. The structure of
ftp
block is documented below. - group_
type str - Group type. Valid values:
default
,utm
,auth
,ec
,captive-portal
. - https
Sequence[Object
System Replacemsggroup Http Args] - Http. The structure of
http
block is documented below. - icaps
Sequence[Object
System Replacemsggroup Icap Args] - Icap. The structure of
icap
block is documented below. - mails
Sequence[Object
System Replacemsggroup Mail Args] - Mail. The structure of
mail
block is documented below. - mm1s
Sequence[Object
System Replacemsggroup Mm1Args] - Mm1. The structure of
mm1
block is documented below. - mm3s
Sequence[Object
System Replacemsggroup Mm3Args] - Mm3. The structure of
mm3
block is documented below. - mm4s
Sequence[Object
System Replacemsggroup Mm4Args] - Mm4. The structure of
mm4
block is documented below. - mm7s
Sequence[Object
System Replacemsggroup Mm7Args] - Mm7. The structure of
mm7
block is documented below. - mms
Sequence[Object
System Replacemsggroup Mm Args] - Mms. The structure of
mms
block is documented below. - nac_
quars Sequence[ObjectSystem Replacemsggroup Nac Quar Args] - Nac-Quar. The structure of
nac_quar
block is documented below. - name str
- Group name.
- nntps
Sequence[Object
System Replacemsggroup Nntp Args] - Nntp. The structure of
nntp
block is documented below. - object_
system_ strreplacemsggroup_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - spams
Sequence[Object
System Replacemsggroup Spam Args] - Spam. The structure of
spam
block is documented below. - sslvpns
Sequence[Object
System Replacemsggroup Sslvpn Args] - Sslvpn. The structure of
sslvpn
block is documented below. - traffic_
quotas Sequence[ObjectSystem Replacemsggroup Traffic Quota Args] - Traffic-Quota. The structure of
traffic_quota
block is documented below. - utms
Sequence[Object
System Replacemsggroup Utm Args] - Utm. The structure of
utm
block is documented below. - webproxies
Sequence[Object
System Replacemsggroup Webproxy Args] - Webproxy. The structure of
webproxy
block is documented below.
- admins List<Property Map>
- Admin. The structure of
admin
block is documented below. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - alertmails List<Property Map>
- Alertmail. The structure of
alertmail
block is documented below. - auths List<Property Map>
- Auth. The structure of
auth
block is documented below. - automations List<Property Map>
- Automation. The structure of
automation
block is documented below. - comment String
- Comment.
- custom
Messages List<Property Map> - Custom-Message. The structure of
custom_message
block is documented below. - device
Detection List<Property Map>Portals - Device-Detection-Portal. The structure of
device_detection_portal
block is documented below. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- ecs List<Property Map>
- Ec. The structure of
ec
block is documented below. - fortiguard
Wfs List<Property Map> - Fortiguard-Wf. The structure of
fortiguard_wf
block is documented below. - ftps List<Property Map>
- Ftp. The structure of
ftp
block is documented below. - group
Type String - Group type. Valid values:
default
,utm
,auth
,ec
,captive-portal
. - https List<Property Map>
- Http. The structure of
http
block is documented below. - icaps List<Property Map>
- Icap. The structure of
icap
block is documented below. - mails List<Property Map>
- Mail. The structure of
mail
block is documented below. - mm1s List<Property Map>
- Mm1. The structure of
mm1
block is documented below. - mm3s List<Property Map>
- Mm3. The structure of
mm3
block is documented below. - mm4s List<Property Map>
- Mm4. The structure of
mm4
block is documented below. - mm7s List<Property Map>
- Mm7. The structure of
mm7
block is documented below. - mms List<Property Map>
- Mms. The structure of
mms
block is documented below. - nac
Quars List<Property Map> - Nac-Quar. The structure of
nac_quar
block is documented below. - name String
- Group name.
- nntps List<Property Map>
- Nntp. The structure of
nntp
block is documented below. - object
System StringReplacemsggroup Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - spams List<Property Map>
- Spam. The structure of
spam
block is documented below. - sslvpns List<Property Map>
- Sslvpn. The structure of
sslvpn
block is documented below. - traffic
Quotas List<Property Map> - Traffic-Quota. The structure of
traffic_quota
block is documented below. - utms List<Property Map>
- Utm. The structure of
utm
block is documented below. - webproxies List<Property Map>
- Webproxy. The structure of
webproxy
block is documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectSystemReplacemsggroup 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 ObjectSystemReplacemsggroup Resource
Get an existing ObjectSystemReplacemsggroup 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?: ObjectSystemReplacemsggroupState, opts?: CustomResourceOptions): ObjectSystemReplacemsggroup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
admins: Optional[Sequence[ObjectSystemReplacemsggroupAdminArgs]] = None,
adom: Optional[str] = None,
alertmails: Optional[Sequence[ObjectSystemReplacemsggroupAlertmailArgs]] = None,
auths: Optional[Sequence[ObjectSystemReplacemsggroupAuthArgs]] = None,
automations: Optional[Sequence[ObjectSystemReplacemsggroupAutomationArgs]] = None,
comment: Optional[str] = None,
custom_messages: Optional[Sequence[ObjectSystemReplacemsggroupCustomMessageArgs]] = None,
device_detection_portals: Optional[Sequence[ObjectSystemReplacemsggroupDeviceDetectionPortalArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
ecs: Optional[Sequence[ObjectSystemReplacemsggroupEcArgs]] = None,
fortiguard_wfs: Optional[Sequence[ObjectSystemReplacemsggroupFortiguardWfArgs]] = None,
ftps: Optional[Sequence[ObjectSystemReplacemsggroupFtpArgs]] = None,
group_type: Optional[str] = None,
https: Optional[Sequence[ObjectSystemReplacemsggroupHttpArgs]] = None,
icaps: Optional[Sequence[ObjectSystemReplacemsggroupIcapArgs]] = None,
mails: Optional[Sequence[ObjectSystemReplacemsggroupMailArgs]] = None,
mm1s: Optional[Sequence[ObjectSystemReplacemsggroupMm1Args]] = None,
mm3s: Optional[Sequence[ObjectSystemReplacemsggroupMm3Args]] = None,
mm4s: Optional[Sequence[ObjectSystemReplacemsggroupMm4Args]] = None,
mm7s: Optional[Sequence[ObjectSystemReplacemsggroupMm7Args]] = None,
mms: Optional[Sequence[ObjectSystemReplacemsggroupMmArgs]] = None,
nac_quars: Optional[Sequence[ObjectSystemReplacemsggroupNacQuarArgs]] = None,
name: Optional[str] = None,
nntps: Optional[Sequence[ObjectSystemReplacemsggroupNntpArgs]] = None,
object_system_replacemsggroup_id: Optional[str] = None,
scopetype: Optional[str] = None,
spams: Optional[Sequence[ObjectSystemReplacemsggroupSpamArgs]] = None,
sslvpns: Optional[Sequence[ObjectSystemReplacemsggroupSslvpnArgs]] = None,
traffic_quotas: Optional[Sequence[ObjectSystemReplacemsggroupTrafficQuotaArgs]] = None,
utms: Optional[Sequence[ObjectSystemReplacemsggroupUtmArgs]] = None,
webproxies: Optional[Sequence[ObjectSystemReplacemsggroupWebproxyArgs]] = None) -> ObjectSystemReplacemsggroup
func GetObjectSystemReplacemsggroup(ctx *Context, name string, id IDInput, state *ObjectSystemReplacemsggroupState, opts ...ResourceOption) (*ObjectSystemReplacemsggroup, error)
public static ObjectSystemReplacemsggroup Get(string name, Input<string> id, ObjectSystemReplacemsggroupState? state, CustomResourceOptions? opts = null)
public static ObjectSystemReplacemsggroup get(String name, Output<String> id, ObjectSystemReplacemsggroupState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectSystemReplacemsggroup 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.
- Admins
List<Object
System Replacemsggroup Admin> - Admin. The structure of
admin
block is documented below. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Alertmails
List<Object
System Replacemsggroup Alertmail> - Alertmail. The structure of
alertmail
block is documented below. - Auths
List<Object
System Replacemsggroup Auth> - Auth. The structure of
auth
block is documented below. - Automations
List<Object
System Replacemsggroup Automation> - Automation. The structure of
automation
block is documented below. - Comment string
- Comment.
- Custom
Messages List<ObjectSystem Replacemsggroup Custom Message> - Custom-Message. The structure of
custom_message
block is documented below. - Device
Detection List<ObjectPortals System Replacemsggroup Device Detection Portal> - Device-Detection-Portal. The structure of
device_detection_portal
block is documented below. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Ecs
List<Object
System Replacemsggroup Ec> - Ec. The structure of
ec
block is documented below. - Fortiguard
Wfs List<ObjectSystem Replacemsggroup Fortiguard Wf> - Fortiguard-Wf. The structure of
fortiguard_wf
block is documented below. - Ftps
List<Object
System Replacemsggroup Ftp> - Ftp. The structure of
ftp
block is documented below. - Group
Type string - Group type. Valid values:
default
,utm
,auth
,ec
,captive-portal
. - Https
List<Object
System Replacemsggroup Http> - Http. The structure of
http
block is documented below. - Icaps
List<Object
System Replacemsggroup Icap> - Icap. The structure of
icap
block is documented below. - Mails
List<Object
System Replacemsggroup Mail> - Mail. The structure of
mail
block is documented below. - Mm1s
List<Object
System Replacemsggroup Mm1> - Mm1. The structure of
mm1
block is documented below. - Mm3s
List<Object
System Replacemsggroup Mm3> - Mm3. The structure of
mm3
block is documented below. - Mm4s
List<Object
System Replacemsggroup Mm4> - Mm4. The structure of
mm4
block is documented below. - Mm7s
List<Object
System Replacemsggroup Mm7> - Mm7. The structure of
mm7
block is documented below. - Mms
List<Object
System Replacemsggroup Mm> - Mms. The structure of
mms
block is documented below. - Nac
Quars List<ObjectSystem Replacemsggroup Nac Quar> - Nac-Quar. The structure of
nac_quar
block is documented below. - Name string
- Group name.
- Nntps
List<Object
System Replacemsggroup Nntp> - Nntp. The structure of
nntp
block is documented below. - Object
System stringReplacemsggroup Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Spams
List<Object
System Replacemsggroup Spam> - Spam. The structure of
spam
block is documented below. - Sslvpns
List<Object
System Replacemsggroup Sslvpn> - Sslvpn. The structure of
sslvpn
block is documented below. - Traffic
Quotas List<ObjectSystem Replacemsggroup Traffic Quota> - Traffic-Quota. The structure of
traffic_quota
block is documented below. - Utms
List<Object
System Replacemsggroup Utm> - Utm. The structure of
utm
block is documented below. - Webproxies
List<Object
System Replacemsggroup Webproxy> - Webproxy. The structure of
webproxy
block is documented below.
- Admins
[]Object
System Replacemsggroup Admin Type Args - Admin. The structure of
admin
block is documented below. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Alertmails
[]Object
System Replacemsggroup Alertmail Type Args - Alertmail. The structure of
alertmail
block is documented below. - Auths
[]Object
System Replacemsggroup Auth Type Args - Auth. The structure of
auth
block is documented below. - Automations
[]Object
System Replacemsggroup Automation Type Args - Automation. The structure of
automation
block is documented below. - Comment string
- Comment.
- Custom
Messages []ObjectSystem Replacemsggroup Custom Message Type Args - Custom-Message. The structure of
custom_message
block is documented below. - Device
Detection []ObjectPortals System Replacemsggroup Device Detection Portal Type Args - Device-Detection-Portal. The structure of
device_detection_portal
block is documented below. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Ecs
[]Object
System Replacemsggroup Ec Args - Ec. The structure of
ec
block is documented below. - Fortiguard
Wfs []ObjectSystem Replacemsggroup Fortiguard Wf Type Args - Fortiguard-Wf. The structure of
fortiguard_wf
block is documented below. - Ftps
[]Object
System Replacemsggroup Ftp Type Args - Ftp. The structure of
ftp
block is documented below. - Group
Type string - Group type. Valid values:
default
,utm
,auth
,ec
,captive-portal
. - Https
[]Object
System Replacemsggroup Http Type Args - Http. The structure of
http
block is documented below. - Icaps
[]Object
System Replacemsggroup Icap Type Args - Icap. The structure of
icap
block is documented below. - Mails
[]Object
System Replacemsggroup Mail Type Args - Mail. The structure of
mail
block is documented below. - Mm1s
[]Object
System Replacemsggroup Mm1Args - Mm1. The structure of
mm1
block is documented below. - Mm3s
[]Object
System Replacemsggroup Mm3Args - Mm3. The structure of
mm3
block is documented below. - Mm4s
[]Object
System Replacemsggroup Mm4Args - Mm4. The structure of
mm4
block is documented below. - Mm7s
[]Object
System Replacemsggroup Mm7Args - Mm7. The structure of
mm7
block is documented below. - Mms
[]Object
System Replacemsggroup Mm Args - Mms. The structure of
mms
block is documented below. - Nac
Quars []ObjectSystem Replacemsggroup Nac Quar Type Args - Nac-Quar. The structure of
nac_quar
block is documented below. - Name string
- Group name.
- Nntps
[]Object
System Replacemsggroup Nntp Type Args - Nntp. The structure of
nntp
block is documented below. - Object
System stringReplacemsggroup Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Spams
[]Object
System Replacemsggroup Spam Type Args - Spam. The structure of
spam
block is documented below. - Sslvpns
[]Object
System Replacemsggroup Sslvpn Type Args - Sslvpn. The structure of
sslvpn
block is documented below. - Traffic
Quotas []ObjectSystem Replacemsggroup Traffic Quota Type Args - Traffic-Quota. The structure of
traffic_quota
block is documented below. - Utms
[]Object
System Replacemsggroup Utm Type Args - Utm. The structure of
utm
block is documented below. - Webproxies
[]Object
System Replacemsggroup Webproxy Type Args - Webproxy. The structure of
webproxy
block is documented below.
- admins
List<Object
System Replacemsggroup Admin> - Admin. The structure of
admin
block is documented below. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - alertmails
List<Object
System Replacemsggroup Alertmail> - Alertmail. The structure of
alertmail
block is documented below. - auths
List<Object
System Replacemsggroup Auth> - Auth. The structure of
auth
block is documented below. - automations
List<Object
System Replacemsggroup Automation> - Automation. The structure of
automation
block is documented below. - comment String
- Comment.
- custom
Messages List<ObjectSystem Replacemsggroup Custom Message> - Custom-Message. The structure of
custom_message
block is documented below. - device
Detection List<ObjectPortals System Replacemsggroup Device Detection Portal> - Device-Detection-Portal. The structure of
device_detection_portal
block is documented below. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- ecs
List<Object
System Replacemsggroup Ec> - Ec. The structure of
ec
block is documented below. - fortiguard
Wfs List<ObjectSystem Replacemsggroup Fortiguard Wf> - Fortiguard-Wf. The structure of
fortiguard_wf
block is documented below. - ftps
List<Object
System Replacemsggroup Ftp> - Ftp. The structure of
ftp
block is documented below. - group
Type String - Group type. Valid values:
default
,utm
,auth
,ec
,captive-portal
. - https
List<Object
System Replacemsggroup Http> - Http. The structure of
http
block is documented below. - icaps
List<Object
System Replacemsggroup Icap> - Icap. The structure of
icap
block is documented below. - mails
List<Object
System Replacemsggroup Mail> - Mail. The structure of
mail
block is documented below. - mm1s
List<Object
System Replacemsggroup Mm1> - Mm1. The structure of
mm1
block is documented below. - mm3s
List<Object
System Replacemsggroup Mm3> - Mm3. The structure of
mm3
block is documented below. - mm4s
List<Object
System Replacemsggroup Mm4> - Mm4. The structure of
mm4
block is documented below. - mm7s
List<Object
System Replacemsggroup Mm7> - Mm7. The structure of
mm7
block is documented below. - mms
List<Object
System Replacemsggroup Mm> - Mms. The structure of
mms
block is documented below. - nac
Quars List<ObjectSystem Replacemsggroup Nac Quar> - Nac-Quar. The structure of
nac_quar
block is documented below. - name String
- Group name.
- nntps
List<Object
System Replacemsggroup Nntp> - Nntp. The structure of
nntp
block is documented below. - object
System StringReplacemsggroup Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - spams
List<Object
System Replacemsggroup Spam> - Spam. The structure of
spam
block is documented below. - sslvpns
List<Object
System Replacemsggroup Sslvpn> - Sslvpn. The structure of
sslvpn
block is documented below. - traffic
Quotas List<ObjectSystem Replacemsggroup Traffic Quota> - Traffic-Quota. The structure of
traffic_quota
block is documented below. - utms
List<Object
System Replacemsggroup Utm> - Utm. The structure of
utm
block is documented below. - webproxies
List<Object
System Replacemsggroup Webproxy> - Webproxy. The structure of
webproxy
block is documented below.
- admins
Object
System Replacemsggroup Admin[] - Admin. The structure of
admin
block is documented below. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - alertmails
Object
System Replacemsggroup Alertmail[] - Alertmail. The structure of
alertmail
block is documented below. - auths
Object
System Replacemsggroup Auth[] - Auth. The structure of
auth
block is documented below. - automations
Object
System Replacemsggroup Automation[] - Automation. The structure of
automation
block is documented below. - comment string
- Comment.
- custom
Messages ObjectSystem Replacemsggroup Custom Message[] - Custom-Message. The structure of
custom_message
block is documented below. - device
Detection ObjectPortals System Replacemsggroup Device Detection Portal[] - Device-Detection-Portal. The structure of
device_detection_portal
block is documented below. - dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- ecs
Object
System Replacemsggroup Ec[] - Ec. The structure of
ec
block is documented below. - fortiguard
Wfs ObjectSystem Replacemsggroup Fortiguard Wf[] - Fortiguard-Wf. The structure of
fortiguard_wf
block is documented below. - ftps
Object
System Replacemsggroup Ftp[] - Ftp. The structure of
ftp
block is documented below. - group
Type string - Group type. Valid values:
default
,utm
,auth
,ec
,captive-portal
. - https
Object
System Replacemsggroup Http[] - Http. The structure of
http
block is documented below. - icaps
Object
System Replacemsggroup Icap[] - Icap. The structure of
icap
block is documented below. - mails
Object
System Replacemsggroup Mail[] - Mail. The structure of
mail
block is documented below. - mm1s
Object
System Replacemsggroup Mm1[] - Mm1. The structure of
mm1
block is documented below. - mm3s
Object
System Replacemsggroup Mm3[] - Mm3. The structure of
mm3
block is documented below. - mm4s
Object
System Replacemsggroup Mm4[] - Mm4. The structure of
mm4
block is documented below. - mm7s
Object
System Replacemsggroup Mm7[] - Mm7. The structure of
mm7
block is documented below. - mms
Object
System Replacemsggroup Mm[] - Mms. The structure of
mms
block is documented below. - nac
Quars ObjectSystem Replacemsggroup Nac Quar[] - Nac-Quar. The structure of
nac_quar
block is documented below. - name string
- Group name.
- nntps
Object
System Replacemsggroup Nntp[] - Nntp. The structure of
nntp
block is documented below. - object
System stringReplacemsggroup Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - spams
Object
System Replacemsggroup Spam[] - Spam. The structure of
spam
block is documented below. - sslvpns
Object
System Replacemsggroup Sslvpn[] - Sslvpn. The structure of
sslvpn
block is documented below. - traffic
Quotas ObjectSystem Replacemsggroup Traffic Quota[] - Traffic-Quota. The structure of
traffic_quota
block is documented below. - utms
Object
System Replacemsggroup Utm[] - Utm. The structure of
utm
block is documented below. - webproxies
Object
System Replacemsggroup Webproxy[] - Webproxy. The structure of
webproxy
block is documented below.
- admins
Sequence[Object
System Replacemsggroup Admin Args] - Admin. The structure of
admin
block is documented below. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - alertmails
Sequence[Object
System Replacemsggroup Alertmail Args] - Alertmail. The structure of
alertmail
block is documented below. - auths
Sequence[Object
System Replacemsggroup Auth Args] - Auth. The structure of
auth
block is documented below. - automations
Sequence[Object
System Replacemsggroup Automation Args] - Automation. The structure of
automation
block is documented below. - comment str
- Comment.
- custom_
messages Sequence[ObjectSystem Replacemsggroup Custom Message Args] - Custom-Message. The structure of
custom_message
block is documented below. - device_
detection_ Sequence[Objectportals System Replacemsggroup Device Detection Portal Args] - Device-Detection-Portal. The structure of
device_detection_portal
block is documented below. - dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- ecs
Sequence[Object
System Replacemsggroup Ec Args] - Ec. The structure of
ec
block is documented below. - fortiguard_
wfs Sequence[ObjectSystem Replacemsggroup Fortiguard Wf Args] - Fortiguard-Wf. The structure of
fortiguard_wf
block is documented below. - ftps
Sequence[Object
System Replacemsggroup Ftp Args] - Ftp. The structure of
ftp
block is documented below. - group_
type str - Group type. Valid values:
default
,utm
,auth
,ec
,captive-portal
. - https
Sequence[Object
System Replacemsggroup Http Args] - Http. The structure of
http
block is documented below. - icaps
Sequence[Object
System Replacemsggroup Icap Args] - Icap. The structure of
icap
block is documented below. - mails
Sequence[Object
System Replacemsggroup Mail Args] - Mail. The structure of
mail
block is documented below. - mm1s
Sequence[Object
System Replacemsggroup Mm1Args] - Mm1. The structure of
mm1
block is documented below. - mm3s
Sequence[Object
System Replacemsggroup Mm3Args] - Mm3. The structure of
mm3
block is documented below. - mm4s
Sequence[Object
System Replacemsggroup Mm4Args] - Mm4. The structure of
mm4
block is documented below. - mm7s
Sequence[Object
System Replacemsggroup Mm7Args] - Mm7. The structure of
mm7
block is documented below. - mms
Sequence[Object
System Replacemsggroup Mm Args] - Mms. The structure of
mms
block is documented below. - nac_
quars Sequence[ObjectSystem Replacemsggroup Nac Quar Args] - Nac-Quar. The structure of
nac_quar
block is documented below. - name str
- Group name.
- nntps
Sequence[Object
System Replacemsggroup Nntp Args] - Nntp. The structure of
nntp
block is documented below. - object_
system_ strreplacemsggroup_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - spams
Sequence[Object
System Replacemsggroup Spam Args] - Spam. The structure of
spam
block is documented below. - sslvpns
Sequence[Object
System Replacemsggroup Sslvpn Args] - Sslvpn. The structure of
sslvpn
block is documented below. - traffic_
quotas Sequence[ObjectSystem Replacemsggroup Traffic Quota Args] - Traffic-Quota. The structure of
traffic_quota
block is documented below. - utms
Sequence[Object
System Replacemsggroup Utm Args] - Utm. The structure of
utm
block is documented below. - webproxies
Sequence[Object
System Replacemsggroup Webproxy Args] - Webproxy. The structure of
webproxy
block is documented below.
- admins List<Property Map>
- Admin. The structure of
admin
block is documented below. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - alertmails List<Property Map>
- Alertmail. The structure of
alertmail
block is documented below. - auths List<Property Map>
- Auth. The structure of
auth
block is documented below. - automations List<Property Map>
- Automation. The structure of
automation
block is documented below. - comment String
- Comment.
- custom
Messages List<Property Map> - Custom-Message. The structure of
custom_message
block is documented below. - device
Detection List<Property Map>Portals - Device-Detection-Portal. The structure of
device_detection_portal
block is documented below. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- ecs List<Property Map>
- Ec. The structure of
ec
block is documented below. - fortiguard
Wfs List<Property Map> - Fortiguard-Wf. The structure of
fortiguard_wf
block is documented below. - ftps List<Property Map>
- Ftp. The structure of
ftp
block is documented below. - group
Type String - Group type. Valid values:
default
,utm
,auth
,ec
,captive-portal
. - https List<Property Map>
- Http. The structure of
http
block is documented below. - icaps List<Property Map>
- Icap. The structure of
icap
block is documented below. - mails List<Property Map>
- Mail. The structure of
mail
block is documented below. - mm1s List<Property Map>
- Mm1. The structure of
mm1
block is documented below. - mm3s List<Property Map>
- Mm3. The structure of
mm3
block is documented below. - mm4s List<Property Map>
- Mm4. The structure of
mm4
block is documented below. - mm7s List<Property Map>
- Mm7. The structure of
mm7
block is documented below. - mms List<Property Map>
- Mms. The structure of
mms
block is documented below. - nac
Quars List<Property Map> - Nac-Quar. The structure of
nac_quar
block is documented below. - name String
- Group name.
- nntps List<Property Map>
- Nntp. The structure of
nntp
block is documented below. - object
System StringReplacemsggroup Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - spams List<Property Map>
- Spam. The structure of
spam
block is documented below. - sslvpns List<Property Map>
- Sslvpn. The structure of
sslvpn
block is documented below. - traffic
Quotas List<Property Map> - Traffic-Quota. The structure of
traffic_quota
block is documented below. - utms List<Property Map>
- Utm. The structure of
utm
block is documented below. - webproxies List<Property Map>
- Webproxy. The structure of
webproxy
block is documented below.
Supporting Types
ObjectSystemReplacemsggroupAdmin, ObjectSystemReplacemsggroupAdminArgs
ObjectSystemReplacemsggroupAlertmail, ObjectSystemReplacemsggroupAlertmailArgs
ObjectSystemReplacemsggroupAuth, ObjectSystemReplacemsggroupAuthArgs
ObjectSystemReplacemsggroupAutomation, ObjectSystemReplacemsggroupAutomationArgs
ObjectSystemReplacemsggroupCustomMessage, ObjectSystemReplacemsggroupCustomMessageArgs
ObjectSystemReplacemsggroupDeviceDetectionPortal, ObjectSystemReplacemsggroupDeviceDetectionPortalArgs
ObjectSystemReplacemsggroupEc, ObjectSystemReplacemsggroupEcArgs
ObjectSystemReplacemsggroupFortiguardWf, ObjectSystemReplacemsggroupFortiguardWfArgs
ObjectSystemReplacemsggroupFtp, ObjectSystemReplacemsggroupFtpArgs
ObjectSystemReplacemsggroupHttp, ObjectSystemReplacemsggroupHttpArgs
ObjectSystemReplacemsggroupIcap, ObjectSystemReplacemsggroupIcapArgs
ObjectSystemReplacemsggroupMail, ObjectSystemReplacemsggroupMailArgs
ObjectSystemReplacemsggroupMm, ObjectSystemReplacemsggroupMmArgs
ObjectSystemReplacemsggroupMm1, ObjectSystemReplacemsggroupMm1Args
- Add
Smil string - add message encapsulation Valid values:
disable
,enable
. - Charset string
- Class string
- message class Valid values:
personal
,advertisement
,informational
,auto
,not-included
. - Format string
- From string
- from address
- From
Sender string - notification message sent from recipient Valid values:
disable
,enable
. - Header string
- Image string
- Message string
- message text
- Msg
Type string - Priority string
- message priority Valid values:
low
,normal
,high
,not-included
. - Rsp
Status string - response status Valid values:
success
,partial-success
,client-err
,oper-restrict
,addr-err
,addr-not-found
,content-refused
,msg-id-not-found
,link-id-not-found
,msg-fmt-corrupt
,app-id-not-found
,repl-app-id-not-found
,srv-err
,not-possible
,msg-rejected
,multiple-addr-not-supp
,app-addr-not-supp
,gen-service-err
,improper-ident
,unsupp-ver
,unsupp-oper
,validation-err
,service-err
,service-unavail
,service-denied
,app-denied
. - Rsp
Text string - response text
- Sender
Visibility string - sender visibility Valid values:
hide
,show
,not-specified
. - Smil
Part string - message encapsulation text
- Subject string
- subject text string
- Add
Smil string - add message encapsulation Valid values:
disable
,enable
. - Charset string
- Class string
- message class Valid values:
personal
,advertisement
,informational
,auto
,not-included
. - Format string
- From string
- from address
- From
Sender string - notification message sent from recipient Valid values:
disable
,enable
. - Header string
- Image string
- Message string
- message text
- Msg
Type string - Priority string
- message priority Valid values:
low
,normal
,high
,not-included
. - Rsp
Status string - response status Valid values:
success
,partial-success
,client-err
,oper-restrict
,addr-err
,addr-not-found
,content-refused
,msg-id-not-found
,link-id-not-found
,msg-fmt-corrupt
,app-id-not-found
,repl-app-id-not-found
,srv-err
,not-possible
,msg-rejected
,multiple-addr-not-supp
,app-addr-not-supp
,gen-service-err
,improper-ident
,unsupp-ver
,unsupp-oper
,validation-err
,service-err
,service-unavail
,service-denied
,app-denied
. - Rsp
Text string - response text
- Sender
Visibility string - sender visibility Valid values:
hide
,show
,not-specified
. - Smil
Part string - message encapsulation text
- Subject string
- subject text string
- add
Smil String - add message encapsulation Valid values:
disable
,enable
. - charset String
- class_ String
- message class Valid values:
personal
,advertisement
,informational
,auto
,not-included
. - format String
- from String
- from address
- from
Sender String - notification message sent from recipient Valid values:
disable
,enable
. - header String
- image String
- message String
- message text
- msg
Type String - priority String
- message priority Valid values:
low
,normal
,high
,not-included
. - rsp
Status String - response status Valid values:
success
,partial-success
,client-err
,oper-restrict
,addr-err
,addr-not-found
,content-refused
,msg-id-not-found
,link-id-not-found
,msg-fmt-corrupt
,app-id-not-found
,repl-app-id-not-found
,srv-err
,not-possible
,msg-rejected
,multiple-addr-not-supp
,app-addr-not-supp
,gen-service-err
,improper-ident
,unsupp-ver
,unsupp-oper
,validation-err
,service-err
,service-unavail
,service-denied
,app-denied
. - rsp
Text String - response text
- sender
Visibility String - sender visibility Valid values:
hide
,show
,not-specified
. - smil
Part String - message encapsulation text
- subject String
- subject text string
- add
Smil string - add message encapsulation Valid values:
disable
,enable
. - charset string
- class string
- message class Valid values:
personal
,advertisement
,informational
,auto
,not-included
. - format string
- from string
- from address
- from
Sender string - notification message sent from recipient Valid values:
disable
,enable
. - header string
- image string
- message string
- message text
- msg
Type string - priority string
- message priority Valid values:
low
,normal
,high
,not-included
. - rsp
Status string - response status Valid values:
success
,partial-success
,client-err
,oper-restrict
,addr-err
,addr-not-found
,content-refused
,msg-id-not-found
,link-id-not-found
,msg-fmt-corrupt
,app-id-not-found
,repl-app-id-not-found
,srv-err
,not-possible
,msg-rejected
,multiple-addr-not-supp
,app-addr-not-supp
,gen-service-err
,improper-ident
,unsupp-ver
,unsupp-oper
,validation-err
,service-err
,service-unavail
,service-denied
,app-denied
. - rsp
Text string - response text
- sender
Visibility string - sender visibility Valid values:
hide
,show
,not-specified
. - smil
Part string - message encapsulation text
- subject string
- subject text string
- add_
smil str - add message encapsulation Valid values:
disable
,enable
. - charset str
- class_ str
- message class Valid values:
personal
,advertisement
,informational
,auto
,not-included
. - format str
- from_ str
- from address
- from_
sender str - notification message sent from recipient Valid values:
disable
,enable
. - header str
- image str
- message str
- message text
- msg_
type str - priority str
- message priority Valid values:
low
,normal
,high
,not-included
. - rsp_
status str - response status Valid values:
success
,partial-success
,client-err
,oper-restrict
,addr-err
,addr-not-found
,content-refused
,msg-id-not-found
,link-id-not-found
,msg-fmt-corrupt
,app-id-not-found
,repl-app-id-not-found
,srv-err
,not-possible
,msg-rejected
,multiple-addr-not-supp
,app-addr-not-supp
,gen-service-err
,improper-ident
,unsupp-ver
,unsupp-oper
,validation-err
,service-err
,service-unavail
,service-denied
,app-denied
. - rsp_
text str - response text
- sender_
visibility str - sender visibility Valid values:
hide
,show
,not-specified
. - smil_
part str - message encapsulation text
- subject str
- subject text string
- add
Smil String - add message encapsulation Valid values:
disable
,enable
. - charset String
- class String
- message class Valid values:
personal
,advertisement
,informational
,auto
,not-included
. - format String
- from String
- from address
- from
Sender String - notification message sent from recipient Valid values:
disable
,enable
. - header String
- image String
- message String
- message text
- msg
Type String - priority String
- message priority Valid values:
low
,normal
,high
,not-included
. - rsp
Status String - response status Valid values:
success
,partial-success
,client-err
,oper-restrict
,addr-err
,addr-not-found
,content-refused
,msg-id-not-found
,link-id-not-found
,msg-fmt-corrupt
,app-id-not-found
,repl-app-id-not-found
,srv-err
,not-possible
,msg-rejected
,multiple-addr-not-supp
,app-addr-not-supp
,gen-service-err
,improper-ident
,unsupp-ver
,unsupp-oper
,validation-err
,service-err
,service-unavail
,service-denied
,app-denied
. - rsp
Text String - response text
- sender
Visibility String - sender visibility Valid values:
hide
,show
,not-specified
. - smil
Part String - message encapsulation text
- subject String
- subject text string
ObjectSystemReplacemsggroupMm3, ObjectSystemReplacemsggroupMm3Args
- Add
Html string - add message encapsulation Valid values:
disable
,enable
. - Charset string
- Format string
- From string
- from address
- From
Sender string - notification message sent from recipient Valid values:
disable
,enable
. - Header string
- Html
Part string - message encapsulation text
- Image string
- Message string
- message text
- Msg
Type string - Priority string
- message priority Valid values:
low
,normal
,high
,not-included
. - Subject string
- subject text string
- Add
Html string - add message encapsulation Valid values:
disable
,enable
. - Charset string
- Format string
- From string
- from address
- From
Sender string - notification message sent from recipient Valid values:
disable
,enable
. - Header string
- Html
Part string - message encapsulation text
- Image string
- Message string
- message text
- Msg
Type string - Priority string
- message priority Valid values:
low
,normal
,high
,not-included
. - Subject string
- subject text string
- add
Html String - add message encapsulation Valid values:
disable
,enable
. - charset String
- format String
- from String
- from address
- from
Sender String - notification message sent from recipient Valid values:
disable
,enable
. - header String
- html
Part String - message encapsulation text
- image String
- message String
- message text
- msg
Type String - priority String
- message priority Valid values:
low
,normal
,high
,not-included
. - subject String
- subject text string
- add
Html string - add message encapsulation Valid values:
disable
,enable
. - charset string
- format string
- from string
- from address
- from
Sender string - notification message sent from recipient Valid values:
disable
,enable
. - header string
- html
Part string - message encapsulation text
- image string
- message string
- message text
- msg
Type string - priority string
- message priority Valid values:
low
,normal
,high
,not-included
. - subject string
- subject text string
- add_
html str - add message encapsulation Valid values:
disable
,enable
. - charset str
- format str
- from_ str
- from address
- from_
sender str - notification message sent from recipient Valid values:
disable
,enable
. - header str
- html_
part str - message encapsulation text
- image str
- message str
- message text
- msg_
type str - priority str
- message priority Valid values:
low
,normal
,high
,not-included
. - subject str
- subject text string
- add
Html String - add message encapsulation Valid values:
disable
,enable
. - charset String
- format String
- from String
- from address
- from
Sender String - notification message sent from recipient Valid values:
disable
,enable
. - header String
- html
Part String - message encapsulation text
- image String
- message String
- message text
- msg
Type String - priority String
- message priority Valid values:
low
,normal
,high
,not-included
. - subject String
- subject text string
ObjectSystemReplacemsggroupMm4, ObjectSystemReplacemsggroupMm4Args
- Add
Smil string - add message encapsulation Valid values:
disable
,enable
. - Charset string
- Class string
- message class Valid values:
personal
,advertisement
,informational
,auto
,not-included
. - Domain string
- from address domain
- Format string
- From string
- from address
- From
Sender string - notification message sent from recipient Valid values:
disable
,enable
. - Header string
- Image string
- Message string
- message text
- Msg
Type string - Priority string
- message priority Valid values:
low
,normal
,high
,not-included
. - Rsp
Status string - response status Valid values:
success
,partial-success
,client-err
,oper-restrict
,addr-err
,addr-not-found
,content-refused
,msg-id-not-found
,link-id-not-found
,msg-fmt-corrupt
,app-id-not-found
,repl-app-id-not-found
,srv-err
,not-possible
,msg-rejected
,multiple-addr-not-supp
,app-addr-not-supp
,gen-service-err
,improper-ident
,unsupp-ver
,unsupp-oper
,validation-err
,service-err
,service-unavail
,service-denied
,app-denied
. - Smil
Part string - message encapsulation text
- Subject string
- subject text string
- Add
Smil string - add message encapsulation Valid values:
disable
,enable
. - Charset string
- Class string
- message class Valid values:
personal
,advertisement
,informational
,auto
,not-included
. - Domain string
- from address domain
- Format string
- From string
- from address
- From
Sender string - notification message sent from recipient Valid values:
disable
,enable
. - Header string
- Image string
- Message string
- message text
- Msg
Type string - Priority string
- message priority Valid values:
low
,normal
,high
,not-included
. - Rsp
Status string - response status Valid values:
success
,partial-success
,client-err
,oper-restrict
,addr-err
,addr-not-found
,content-refused
,msg-id-not-found
,link-id-not-found
,msg-fmt-corrupt
,app-id-not-found
,repl-app-id-not-found
,srv-err
,not-possible
,msg-rejected
,multiple-addr-not-supp
,app-addr-not-supp
,gen-service-err
,improper-ident
,unsupp-ver
,unsupp-oper
,validation-err
,service-err
,service-unavail
,service-denied
,app-denied
. - Smil
Part string - message encapsulation text
- Subject string
- subject text string
- add
Smil String - add message encapsulation Valid values:
disable
,enable
. - charset String
- class_ String
- message class Valid values:
personal
,advertisement
,informational
,auto
,not-included
. - domain String
- from address domain
- format String
- from String
- from address
- from
Sender String - notification message sent from recipient Valid values:
disable
,enable
. - header String
- image String
- message String
- message text
- msg
Type String - priority String
- message priority Valid values:
low
,normal
,high
,not-included
. - rsp
Status String - response status Valid values:
success
,partial-success
,client-err
,oper-restrict
,addr-err
,addr-not-found
,content-refused
,msg-id-not-found
,link-id-not-found
,msg-fmt-corrupt
,app-id-not-found
,repl-app-id-not-found
,srv-err
,not-possible
,msg-rejected
,multiple-addr-not-supp
,app-addr-not-supp
,gen-service-err
,improper-ident
,unsupp-ver
,unsupp-oper
,validation-err
,service-err
,service-unavail
,service-denied
,app-denied
. - smil
Part String - message encapsulation text
- subject String
- subject text string
- add
Smil string - add message encapsulation Valid values:
disable
,enable
. - charset string
- class string
- message class Valid values:
personal
,advertisement
,informational
,auto
,not-included
. - domain string
- from address domain
- format string
- from string
- from address
- from
Sender string - notification message sent from recipient Valid values:
disable
,enable
. - header string
- image string
- message string
- message text
- msg
Type string - priority string
- message priority Valid values:
low
,normal
,high
,not-included
. - rsp
Status string - response status Valid values:
success
,partial-success
,client-err
,oper-restrict
,addr-err
,addr-not-found
,content-refused
,msg-id-not-found
,link-id-not-found
,msg-fmt-corrupt
,app-id-not-found
,repl-app-id-not-found
,srv-err
,not-possible
,msg-rejected
,multiple-addr-not-supp
,app-addr-not-supp
,gen-service-err
,improper-ident
,unsupp-ver
,unsupp-oper
,validation-err
,service-err
,service-unavail
,service-denied
,app-denied
. - smil
Part string - message encapsulation text
- subject string
- subject text string
- add_
smil str - add message encapsulation Valid values:
disable
,enable
. - charset str
- class_ str
- message class Valid values:
personal
,advertisement
,informational
,auto
,not-included
. - domain str
- from address domain
- format str
- from_ str
- from address
- from_
sender str - notification message sent from recipient Valid values:
disable
,enable
. - header str
- image str
- message str
- message text
- msg_
type str - priority str
- message priority Valid values:
low
,normal
,high
,not-included
. - rsp_
status str - response status Valid values:
success
,partial-success
,client-err
,oper-restrict
,addr-err
,addr-not-found
,content-refused
,msg-id-not-found
,link-id-not-found
,msg-fmt-corrupt
,app-id-not-found
,repl-app-id-not-found
,srv-err
,not-possible
,msg-rejected
,multiple-addr-not-supp
,app-addr-not-supp
,gen-service-err
,improper-ident
,unsupp-ver
,unsupp-oper
,validation-err
,service-err
,service-unavail
,service-denied
,app-denied
. - smil_
part str - message encapsulation text
- subject str
- subject text string
- add
Smil String - add message encapsulation Valid values:
disable
,enable
. - charset String
- class String
- message class Valid values:
personal
,advertisement
,informational
,auto
,not-included
. - domain String
- from address domain
- format String
- from String
- from address
- from
Sender String - notification message sent from recipient Valid values:
disable
,enable
. - header String
- image String
- message String
- message text
- msg
Type String - priority String
- message priority Valid values:
low
,normal
,high
,not-included
. - rsp
Status String - response status Valid values:
success
,partial-success
,client-err
,oper-restrict
,addr-err
,addr-not-found
,content-refused
,msg-id-not-found
,link-id-not-found
,msg-fmt-corrupt
,app-id-not-found
,repl-app-id-not-found
,srv-err
,not-possible
,msg-rejected
,multiple-addr-not-supp
,app-addr-not-supp
,gen-service-err
,improper-ident
,unsupp-ver
,unsupp-oper
,validation-err
,service-err
,service-unavail
,service-denied
,app-denied
. - smil
Part String - message encapsulation text
- subject String
- subject text string
ObjectSystemReplacemsggroupMm7, ObjectSystemReplacemsggroupMm7Args
- Add
Smil string - add message encapsulation Valid values:
disable
,enable
. - Addr
Type string - from address type Valid values:
rfc2822-addr
,number
,short-code
. - Allow
Content stringAdaptation - allow content adaptations Valid values:
disable
,enable
. - Charset string
- Class string
- message class Valid values:
personal
,advertisement
,informational
,auto
,not-included
. - Format string
- From string
- from address
- From
Sender string - notification message sent from recipient Valid values:
disable
,enable
. - Header string
- Image string
- Message string
- message text
- Msg
Type string - Priority string
- message priority Valid values:
low
,normal
,high
,not-included
. - Rsp
Status string - response status Valid values:
success
,partial-success
,client-err
,oper-restrict
,addr-err
,addr-not-found
,content-refused
,msg-id-not-found
,link-id-not-found
,msg-fmt-corrupt
,app-id-not-found
,repl-app-id-not-found
,srv-err
,not-possible
,msg-rejected
,multiple-addr-not-supp
,app-addr-not-supp
,gen-service-err
,improper-ident
,unsupp-ver
,unsupp-oper
,validation-err
,service-err
,service-unavail
,service-denied
,app-denied
. - Smil
Part string - message encapsulation text
- Subject string
- subject text string
- Add
Smil string - add message encapsulation Valid values:
disable
,enable
. - Addr
Type string - from address type Valid values:
rfc2822-addr
,number
,short-code
. - Allow
Content stringAdaptation - allow content adaptations Valid values:
disable
,enable
. - Charset string
- Class string
- message class Valid values:
personal
,advertisement
,informational
,auto
,not-included
. - Format string
- From string
- from address
- From
Sender string - notification message sent from recipient Valid values:
disable
,enable
. - Header string
- Image string
- Message string
- message text
- Msg
Type string - Priority string
- message priority Valid values:
low
,normal
,high
,not-included
. - Rsp
Status string - response status Valid values:
success
,partial-success
,client-err
,oper-restrict
,addr-err
,addr-not-found
,content-refused
,msg-id-not-found
,link-id-not-found
,msg-fmt-corrupt
,app-id-not-found
,repl-app-id-not-found
,srv-err
,not-possible
,msg-rejected
,multiple-addr-not-supp
,app-addr-not-supp
,gen-service-err
,improper-ident
,unsupp-ver
,unsupp-oper
,validation-err
,service-err
,service-unavail
,service-denied
,app-denied
. - Smil
Part string - message encapsulation text
- Subject string
- subject text string
- add
Smil String - add message encapsulation Valid values:
disable
,enable
. - addr
Type String - from address type Valid values:
rfc2822-addr
,number
,short-code
. - allow
Content StringAdaptation - allow content adaptations Valid values:
disable
,enable
. - charset String
- class_ String
- message class Valid values:
personal
,advertisement
,informational
,auto
,not-included
. - format String
- from String
- from address
- from
Sender String - notification message sent from recipient Valid values:
disable
,enable
. - header String
- image String
- message String
- message text
- msg
Type String - priority String
- message priority Valid values:
low
,normal
,high
,not-included
. - rsp
Status String - response status Valid values:
success
,partial-success
,client-err
,oper-restrict
,addr-err
,addr-not-found
,content-refused
,msg-id-not-found
,link-id-not-found
,msg-fmt-corrupt
,app-id-not-found
,repl-app-id-not-found
,srv-err
,not-possible
,msg-rejected
,multiple-addr-not-supp
,app-addr-not-supp
,gen-service-err
,improper-ident
,unsupp-ver
,unsupp-oper
,validation-err
,service-err
,service-unavail
,service-denied
,app-denied
. - smil
Part String - message encapsulation text
- subject String
- subject text string
- add
Smil string - add message encapsulation Valid values:
disable
,enable
. - addr
Type string - from address type Valid values:
rfc2822-addr
,number
,short-code
. - allow
Content stringAdaptation - allow content adaptations Valid values:
disable
,enable
. - charset string
- class string
- message class Valid values:
personal
,advertisement
,informational
,auto
,not-included
. - format string
- from string
- from address
- from
Sender string - notification message sent from recipient Valid values:
disable
,enable
. - header string
- image string
- message string
- message text
- msg
Type string - priority string
- message priority Valid values:
low
,normal
,high
,not-included
. - rsp
Status string - response status Valid values:
success
,partial-success
,client-err
,oper-restrict
,addr-err
,addr-not-found
,content-refused
,msg-id-not-found
,link-id-not-found
,msg-fmt-corrupt
,app-id-not-found
,repl-app-id-not-found
,srv-err
,not-possible
,msg-rejected
,multiple-addr-not-supp
,app-addr-not-supp
,gen-service-err
,improper-ident
,unsupp-ver
,unsupp-oper
,validation-err
,service-err
,service-unavail
,service-denied
,app-denied
. - smil
Part string - message encapsulation text
- subject string
- subject text string
- add_
smil str - add message encapsulation Valid values:
disable
,enable
. - addr_
type str - from address type Valid values:
rfc2822-addr
,number
,short-code
. - allow_
content_ stradaptation - allow content adaptations Valid values:
disable
,enable
. - charset str
- class_ str
- message class Valid values:
personal
,advertisement
,informational
,auto
,not-included
. - format str
- from_ str
- from address
- from_
sender str - notification message sent from recipient Valid values:
disable
,enable
. - header str
- image str
- message str
- message text
- msg_
type str - priority str
- message priority Valid values:
low
,normal
,high
,not-included
. - rsp_
status str - response status Valid values:
success
,partial-success
,client-err
,oper-restrict
,addr-err
,addr-not-found
,content-refused
,msg-id-not-found
,link-id-not-found
,msg-fmt-corrupt
,app-id-not-found
,repl-app-id-not-found
,srv-err
,not-possible
,msg-rejected
,multiple-addr-not-supp
,app-addr-not-supp
,gen-service-err
,improper-ident
,unsupp-ver
,unsupp-oper
,validation-err
,service-err
,service-unavail
,service-denied
,app-denied
. - smil_
part str - message encapsulation text
- subject str
- subject text string
- add
Smil String - add message encapsulation Valid values:
disable
,enable
. - addr
Type String - from address type Valid values:
rfc2822-addr
,number
,short-code
. - allow
Content StringAdaptation - allow content adaptations Valid values:
disable
,enable
. - charset String
- class String
- message class Valid values:
personal
,advertisement
,informational
,auto
,not-included
. - format String
- from String
- from address
- from
Sender String - notification message sent from recipient Valid values:
disable
,enable
. - header String
- image String
- message String
- message text
- msg
Type String - priority String
- message priority Valid values:
low
,normal
,high
,not-included
. - rsp
Status String - response status Valid values:
success
,partial-success
,client-err
,oper-restrict
,addr-err
,addr-not-found
,content-refused
,msg-id-not-found
,link-id-not-found
,msg-fmt-corrupt
,app-id-not-found
,repl-app-id-not-found
,srv-err
,not-possible
,msg-rejected
,multiple-addr-not-supp
,app-addr-not-supp
,gen-service-err
,improper-ident
,unsupp-ver
,unsupp-oper
,validation-err
,service-err
,service-unavail
,service-denied
,app-denied
. - smil
Part String - message encapsulation text
- subject String
- subject text string
ObjectSystemReplacemsggroupNacQuar, ObjectSystemReplacemsggroupNacQuarArgs
ObjectSystemReplacemsggroupNntp, ObjectSystemReplacemsggroupNntpArgs
ObjectSystemReplacemsggroupSpam, ObjectSystemReplacemsggroupSpamArgs
ObjectSystemReplacemsggroupSslvpn, ObjectSystemReplacemsggroupSslvpnArgs
ObjectSystemReplacemsggroupTrafficQuota, ObjectSystemReplacemsggroupTrafficQuotaArgs
ObjectSystemReplacemsggroupUtm, ObjectSystemReplacemsggroupUtmArgs
ObjectSystemReplacemsggroupWebproxy, ObjectSystemReplacemsggroupWebproxyArgs
Import
ObjectSystem ReplacemsgGroup can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectSystemReplacemsggroup:ObjectSystemReplacemsggroup labelname {{name}}
$ 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.