published on Wednesday, Jun 17, 2026 by paloaltonetworks
published on Wednesday, Jun 17, 2026 by paloaltonetworks
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as panos from "@pulumi/panos";
const example = new panos.EmailServerProfile("example", {
location: {
vsys: {
name: "vsys1",
},
},
name: "my-email-server-profile",
servers: [{
name: "email-server-1",
from: "panos@example.com",
to: "alerts@example.com",
gateway: "smtp.example.com",
port: 25,
}],
});
import pulumi
import pulumi_panos as panos
example = panos.EmailServerProfile("example",
location={
"vsys": {
"name": "vsys1",
},
},
name="my-email-server-profile",
servers=[{
"name": "email-server-1",
"from_": "panos@example.com",
"to": "alerts@example.com",
"gateway": "smtp.example.com",
"port": 25,
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/panos/v2/panos"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := panos.NewEmailServerProfile(ctx, "example", &panos.EmailServerProfileArgs{
Location: &panos.EmailServerProfileLocationArgs{
Vsys: &panos.EmailServerProfileLocationVsysArgs{
Name: pulumi.String("vsys1"),
},
},
Name: pulumi.String("my-email-server-profile"),
Servers: panos.EmailServerProfileServerArray{
&panos.EmailServerProfileServerArgs{
Name: pulumi.String("email-server-1"),
From: pulumi.String("panos@example.com"),
To: pulumi.String("alerts@example.com"),
Gateway: pulumi.String("smtp.example.com"),
Port: pulumi.Float64(25),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Panos = Pulumi.Panos;
return await Deployment.RunAsync(() =>
{
var example = new Panos.EmailServerProfile("example", new()
{
Location = new Panos.Inputs.EmailServerProfileLocationArgs
{
Vsys = new Panos.Inputs.EmailServerProfileLocationVsysArgs
{
Name = "vsys1",
},
},
Name = "my-email-server-profile",
Servers = new[]
{
new Panos.Inputs.EmailServerProfileServerArgs
{
Name = "email-server-1",
From = "panos@example.com",
To = "alerts@example.com",
Gateway = "smtp.example.com",
Port = 25,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.panos.EmailServerProfile;
import com.pulumi.panos.EmailServerProfileArgs;
import com.pulumi.panos.inputs.EmailServerProfileLocationArgs;
import com.pulumi.panos.inputs.EmailServerProfileLocationVsysArgs;
import com.pulumi.panos.inputs.EmailServerProfileServerArgs;
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 example = new EmailServerProfile("example", EmailServerProfileArgs.builder()
.location(EmailServerProfileLocationArgs.builder()
.vsys(EmailServerProfileLocationVsysArgs.builder()
.name("vsys1")
.build())
.build())
.name("my-email-server-profile")
.servers(EmailServerProfileServerArgs.builder()
.name("email-server-1")
.from("panos@example.com")
.to("alerts@example.com")
.gateway("smtp.example.com")
.port(25.0)
.build())
.build());
}
}
resources:
example:
type: panos:EmailServerProfile
properties:
location:
vsys:
name: vsys1
name: my-email-server-profile
servers:
- name: email-server-1
from: panos@example.com
to: alerts@example.com
gateway: smtp.example.com
port: 25
Example coming soon!
Create EmailServerProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EmailServerProfile(name: string, args: EmailServerProfileArgs, opts?: CustomResourceOptions);@overload
def EmailServerProfile(resource_name: str,
args: EmailServerProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def EmailServerProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
location: Optional[EmailServerProfileLocationArgs] = None,
format: Optional[EmailServerProfileFormatArgs] = None,
name: Optional[str] = None,
servers: Optional[Sequence[EmailServerProfileServerArgs]] = None)func NewEmailServerProfile(ctx *Context, name string, args EmailServerProfileArgs, opts ...ResourceOption) (*EmailServerProfile, error)public EmailServerProfile(string name, EmailServerProfileArgs args, CustomResourceOptions? opts = null)
public EmailServerProfile(String name, EmailServerProfileArgs args)
public EmailServerProfile(String name, EmailServerProfileArgs args, CustomResourceOptions options)
type: panos:EmailServerProfile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "panos_emailserverprofile" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args EmailServerProfileArgs
- 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 EmailServerProfileArgs
- 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 EmailServerProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EmailServerProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EmailServerProfileArgs
- 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 emailServerProfileResource = new Panos.EmailServerProfile("emailServerProfileResource", new()
{
Location = new Panos.Inputs.EmailServerProfileLocationArgs
{
Panorama = null,
Template = new Panos.Inputs.EmailServerProfileLocationTemplateArgs
{
Name = "string",
PanoramaDevice = "string",
},
TemplateStack = new Panos.Inputs.EmailServerProfileLocationTemplateStackArgs
{
Name = "string",
PanoramaDevice = "string",
},
TemplateStackVsys = new Panos.Inputs.EmailServerProfileLocationTemplateStackVsysArgs
{
NgfwDevice = "string",
PanoramaDevice = "string",
TemplateStack = "string",
Vsys = "string",
},
TemplateVsys = new Panos.Inputs.EmailServerProfileLocationTemplateVsysArgs
{
NgfwDevice = "string",
PanoramaDevice = "string",
Template = "string",
Vsys = "string",
},
Vsys = new Panos.Inputs.EmailServerProfileLocationVsysArgs
{
Name = "string",
NgfwDevice = "string",
},
},
Format = new Panos.Inputs.EmailServerProfileFormatArgs
{
Auth = "string",
Config = "string",
Correlation = "string",
Data = "string",
Decryption = "string",
Escaping = new Panos.Inputs.EmailServerProfileFormatEscapingArgs
{
EscapeCharacter = "string",
EscapedCharacters = "string",
},
Globalprotect = "string",
Gtp = "string",
HipMatch = "string",
Iptag = "string",
Sctp = "string",
System = "string",
Threat = "string",
Traffic = "string",
Tunnel = "string",
Url = "string",
Userid = "string",
Wildfire = "string",
},
Name = "string",
Servers = new[]
{
new Panos.Inputs.EmailServerProfileServerArgs
{
Name = "string",
DisplayName = "string",
CertificateProfile = "string",
AndAlsoTo = "string",
From = "string",
Gateway = "string",
AuthenticationType = "string",
Password = "string",
Port = 0,
Protocol = "string",
TlsVersion = "string",
To = "string",
Username = "string",
},
},
});
example, err := panos.NewEmailServerProfile(ctx, "emailServerProfileResource", &panos.EmailServerProfileArgs{
Location: &panos.EmailServerProfileLocationArgs{
Panorama: &panos.EmailServerProfileLocationPanoramaArgs{},
Template: &panos.EmailServerProfileLocationTemplateArgs{
Name: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
TemplateStack: &panos.EmailServerProfileLocationTemplateStackArgs{
Name: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
TemplateStackVsys: &panos.EmailServerProfileLocationTemplateStackVsysArgs{
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
TemplateStack: pulumi.String("string"),
Vsys: pulumi.String("string"),
},
TemplateVsys: &panos.EmailServerProfileLocationTemplateVsysArgs{
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
Template: pulumi.String("string"),
Vsys: pulumi.String("string"),
},
Vsys: &panos.EmailServerProfileLocationVsysArgs{
Name: pulumi.String("string"),
NgfwDevice: pulumi.String("string"),
},
},
Format: &panos.EmailServerProfileFormatArgs{
Auth: pulumi.String("string"),
Config: pulumi.String("string"),
Correlation: pulumi.String("string"),
Data: pulumi.String("string"),
Decryption: pulumi.String("string"),
Escaping: &panos.EmailServerProfileFormatEscapingArgs{
EscapeCharacter: pulumi.String("string"),
EscapedCharacters: pulumi.String("string"),
},
Globalprotect: pulumi.String("string"),
Gtp: pulumi.String("string"),
HipMatch: pulumi.String("string"),
Iptag: pulumi.String("string"),
Sctp: pulumi.String("string"),
System: pulumi.String("string"),
Threat: pulumi.String("string"),
Traffic: pulumi.String("string"),
Tunnel: pulumi.String("string"),
Url: pulumi.String("string"),
Userid: pulumi.String("string"),
Wildfire: pulumi.String("string"),
},
Name: pulumi.String("string"),
Servers: panos.EmailServerProfileServerArray{
&panos.EmailServerProfileServerArgs{
Name: pulumi.String("string"),
DisplayName: pulumi.String("string"),
CertificateProfile: pulumi.String("string"),
AndAlsoTo: pulumi.String("string"),
From: pulumi.String("string"),
Gateway: pulumi.String("string"),
AuthenticationType: pulumi.String("string"),
Password: pulumi.String("string"),
Port: pulumi.Float64(0),
Protocol: pulumi.String("string"),
TlsVersion: pulumi.String("string"),
To: pulumi.String("string"),
Username: pulumi.String("string"),
},
},
})
resource "panos_emailserverprofile" "emailServerProfileResource" {
location = {
panorama = {}
template = {
name = "string"
panorama_device = "string"
}
template_stack = {
name = "string"
panorama_device = "string"
}
template_stack_vsys = {
ngfw_device = "string"
panorama_device = "string"
template_stack = "string"
vsys = "string"
}
template_vsys = {
ngfw_device = "string"
panorama_device = "string"
template = "string"
vsys = "string"
}
vsys = {
name = "string"
ngfw_device = "string"
}
}
format = {
auth = "string"
config = "string"
correlation = "string"
data = "string"
decryption = "string"
escaping = {
escape_character = "string"
escaped_characters = "string"
}
globalprotect = "string"
gtp = "string"
hip_match = "string"
iptag = "string"
sctp = "string"
system = "string"
threat = "string"
traffic = "string"
tunnel = "string"
url = "string"
userid = "string"
wildfire = "string"
}
name = "string"
servers {
name = "string"
display_name = "string"
certificate_profile = "string"
and_also_to = "string"
from = "string"
gateway = "string"
authentication_type = "string"
password = "string"
port = 0
protocol = "string"
tls_version = "string"
to = "string"
username = "string"
}
}
var emailServerProfileResource = new EmailServerProfile("emailServerProfileResource", EmailServerProfileArgs.builder()
.location(EmailServerProfileLocationArgs.builder()
.panorama(EmailServerProfileLocationPanoramaArgs.builder()
.build())
.template(EmailServerProfileLocationTemplateArgs.builder()
.name("string")
.panoramaDevice("string")
.build())
.templateStack(EmailServerProfileLocationTemplateStackArgs.builder()
.name("string")
.panoramaDevice("string")
.build())
.templateStackVsys(EmailServerProfileLocationTemplateStackVsysArgs.builder()
.ngfwDevice("string")
.panoramaDevice("string")
.templateStack("string")
.vsys("string")
.build())
.templateVsys(EmailServerProfileLocationTemplateVsysArgs.builder()
.ngfwDevice("string")
.panoramaDevice("string")
.template("string")
.vsys("string")
.build())
.vsys(EmailServerProfileLocationVsysArgs.builder()
.name("string")
.ngfwDevice("string")
.build())
.build())
.format(EmailServerProfileFormatArgs.builder()
.auth("string")
.config("string")
.correlation("string")
.data("string")
.decryption("string")
.escaping(EmailServerProfileFormatEscapingArgs.builder()
.escapeCharacter("string")
.escapedCharacters("string")
.build())
.globalprotect("string")
.gtp("string")
.hipMatch("string")
.iptag("string")
.sctp("string")
.system("string")
.threat("string")
.traffic("string")
.tunnel("string")
.url("string")
.userid("string")
.wildfire("string")
.build())
.name("string")
.servers(EmailServerProfileServerArgs.builder()
.name("string")
.displayName("string")
.certificateProfile("string")
.andAlsoTo("string")
.from("string")
.gateway("string")
.authenticationType("string")
.password("string")
.port(0.0)
.protocol("string")
.tlsVersion("string")
.to("string")
.username("string")
.build())
.build());
email_server_profile_resource = panos.EmailServerProfile("emailServerProfileResource",
location={
"panorama": {},
"template": {
"name": "string",
"panorama_device": "string",
},
"template_stack": {
"name": "string",
"panorama_device": "string",
},
"template_stack_vsys": {
"ngfw_device": "string",
"panorama_device": "string",
"template_stack": "string",
"vsys": "string",
},
"template_vsys": {
"ngfw_device": "string",
"panorama_device": "string",
"template": "string",
"vsys": "string",
},
"vsys": {
"name": "string",
"ngfw_device": "string",
},
},
format={
"auth": "string",
"config": "string",
"correlation": "string",
"data": "string",
"decryption": "string",
"escaping": {
"escape_character": "string",
"escaped_characters": "string",
},
"globalprotect": "string",
"gtp": "string",
"hip_match": "string",
"iptag": "string",
"sctp": "string",
"system": "string",
"threat": "string",
"traffic": "string",
"tunnel": "string",
"url": "string",
"userid": "string",
"wildfire": "string",
},
name="string",
servers=[{
"name": "string",
"display_name": "string",
"certificate_profile": "string",
"and_also_to": "string",
"from_": "string",
"gateway": "string",
"authentication_type": "string",
"password": "string",
"port": float(0),
"protocol": "string",
"tls_version": "string",
"to": "string",
"username": "string",
}])
const emailServerProfileResource = new panos.EmailServerProfile("emailServerProfileResource", {
location: {
panorama: {},
template: {
name: "string",
panoramaDevice: "string",
},
templateStack: {
name: "string",
panoramaDevice: "string",
},
templateStackVsys: {
ngfwDevice: "string",
panoramaDevice: "string",
templateStack: "string",
vsys: "string",
},
templateVsys: {
ngfwDevice: "string",
panoramaDevice: "string",
template: "string",
vsys: "string",
},
vsys: {
name: "string",
ngfwDevice: "string",
},
},
format: {
auth: "string",
config: "string",
correlation: "string",
data: "string",
decryption: "string",
escaping: {
escapeCharacter: "string",
escapedCharacters: "string",
},
globalprotect: "string",
gtp: "string",
hipMatch: "string",
iptag: "string",
sctp: "string",
system: "string",
threat: "string",
traffic: "string",
tunnel: "string",
url: "string",
userid: "string",
wildfire: "string",
},
name: "string",
servers: [{
name: "string",
displayName: "string",
certificateProfile: "string",
andAlsoTo: "string",
from: "string",
gateway: "string",
authenticationType: "string",
password: "string",
port: 0,
protocol: "string",
tlsVersion: "string",
to: "string",
username: "string",
}],
});
type: panos:EmailServerProfile
properties:
format:
auth: string
config: string
correlation: string
data: string
decryption: string
escaping:
escapeCharacter: string
escapedCharacters: string
globalprotect: string
gtp: string
hipMatch: string
iptag: string
sctp: string
system: string
threat: string
traffic: string
tunnel: string
url: string
userid: string
wildfire: string
location:
panorama: {}
template:
name: string
panoramaDevice: string
templateStack:
name: string
panoramaDevice: string
templateStackVsys:
ngfwDevice: string
panoramaDevice: string
templateStack: string
vsys: string
templateVsys:
ngfwDevice: string
panoramaDevice: string
template: string
vsys: string
vsys:
name: string
ngfwDevice: string
name: string
servers:
- andAlsoTo: string
authenticationType: string
certificateProfile: string
displayName: string
from: string
gateway: string
name: string
password: string
port: 0
protocol: string
tlsVersion: string
to: string
username: string
EmailServerProfile 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 EmailServerProfile resource accepts the following input properties:
- Location
Email
Server Profile Location - The location of this object.
- Format
Email
Server Profile Format - Name string
- Servers
List<Email
Server Profile Server> - List of email servers
- Location
Email
Server Profile Location Args - The location of this object.
- Format
Email
Server Profile Format Args - Name string
- Servers
[]Email
Server Profile Server Args - List of email servers
- location
Email
Server Profile Location - The location of this object.
- format
Email
Server Profile Format - name String
- servers
List<Email
Server Profile Server> - List of email servers
- location
Email
Server Profile Location - The location of this object.
- format
Email
Server Profile Format - name string
- servers
Email
Server Profile Server[] - List of email servers
- location
Email
Server Profile Location Args - The location of this object.
- format
Email
Server Profile Format Args - name str
- servers
Sequence[Email
Server Profile Server Args] - List of email servers
- location Property Map
- The location of this object.
- format Property Map
- name String
- servers List<Property Map>
- List of email servers
Outputs
All input properties are implicitly available as output properties. Additionally, the EmailServerProfile 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 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 EmailServerProfile Resource
Get an existing EmailServerProfile 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?: EmailServerProfileState, opts?: CustomResourceOptions): EmailServerProfile@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
format: Optional[EmailServerProfileFormatArgs] = None,
location: Optional[EmailServerProfileLocationArgs] = None,
name: Optional[str] = None,
servers: Optional[Sequence[EmailServerProfileServerArgs]] = None) -> EmailServerProfilefunc GetEmailServerProfile(ctx *Context, name string, id IDInput, state *EmailServerProfileState, opts ...ResourceOption) (*EmailServerProfile, error)public static EmailServerProfile Get(string name, Input<string> id, EmailServerProfileState? state, CustomResourceOptions? opts = null)public static EmailServerProfile get(String name, Output<String> id, EmailServerProfileState state, CustomResourceOptions options)resources: _: type: panos:EmailServerProfile get: id: ${id}import {
to = panos_emailserverprofile.example
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.
- Format
Email
Server Profile Format - Location
Email
Server Profile Location - The location of this object.
- Name string
- Servers
List<Email
Server Profile Server> - List of email servers
- Format
Email
Server Profile Format Args - Location
Email
Server Profile Location Args - The location of this object.
- Name string
- Servers
[]Email
Server Profile Server Args - List of email servers
- format
Email
Server Profile Format - location
Email
Server Profile Location - The location of this object.
- name String
- servers
List<Email
Server Profile Server> - List of email servers
- format
Email
Server Profile Format - location
Email
Server Profile Location - The location of this object.
- name string
- servers
Email
Server Profile Server[] - List of email servers
- format
Email
Server Profile Format Args - location
Email
Server Profile Location Args - The location of this object.
- name str
- servers
Sequence[Email
Server Profile Server Args] - List of email servers
- format Property Map
- location Property Map
- The location of this object.
- name String
- servers List<Property Map>
- List of email servers
Supporting Types
EmailServerProfileFormat, EmailServerProfileFormatArgs
- Auth string
- Custom format for auth log
- Config string
- Custom format for config log
- Correlation string
- Custom format for correlation log
- Data string
- Custom format for data log
- Decryption string
- Custom format for decryption log
- Escaping
Email
Server Profile Format Escaping - Globalprotect string
- Custom format for globalprotect log
- Gtp string
- Custom format for gtp log
- Hip
Match string - Custom format for hip-match log
- Iptag string
- Custom format for iptag log
- Sctp string
- Custom format for sctp log
- System string
- Custom format for system log
- Threat string
- Custom format for threat log
- Traffic string
- Custom format for traffic log
- Tunnel string
- Custom format for tunnel log
- Url string
- Custom format for url log
- Userid string
- Custom format for userid log
- Wildfire string
- Custom format for wildfire log
- Auth string
- Custom format for auth log
- Config string
- Custom format for config log
- Correlation string
- Custom format for correlation log
- Data string
- Custom format for data log
- Decryption string
- Custom format for decryption log
- Escaping
Email
Server Profile Format Escaping - Globalprotect string
- Custom format for globalprotect log
- Gtp string
- Custom format for gtp log
- Hip
Match string - Custom format for hip-match log
- Iptag string
- Custom format for iptag log
- Sctp string
- Custom format for sctp log
- System string
- Custom format for system log
- Threat string
- Custom format for threat log
- Traffic string
- Custom format for traffic log
- Tunnel string
- Custom format for tunnel log
- Url string
- Custom format for url log
- Userid string
- Custom format for userid log
- Wildfire string
- Custom format for wildfire log
- auth string
- Custom format for auth log
- config string
- Custom format for config log
- correlation string
- Custom format for correlation log
- data string
- Custom format for data log
- decryption string
- Custom format for decryption log
- escaping object
- globalprotect string
- Custom format for globalprotect log
- gtp string
- Custom format for gtp log
- hip_
match string - Custom format for hip-match log
- iptag string
- Custom format for iptag log
- sctp string
- Custom format for sctp log
- system string
- Custom format for system log
- threat string
- Custom format for threat log
- traffic string
- Custom format for traffic log
- tunnel string
- Custom format for tunnel log
- url string
- Custom format for url log
- userid string
- Custom format for userid log
- wildfire string
- Custom format for wildfire log
- auth String
- Custom format for auth log
- config String
- Custom format for config log
- correlation String
- Custom format for correlation log
- data String
- Custom format for data log
- decryption String
- Custom format for decryption log
- escaping
Email
Server Profile Format Escaping - globalprotect String
- Custom format for globalprotect log
- gtp String
- Custom format for gtp log
- hip
Match String - Custom format for hip-match log
- iptag String
- Custom format for iptag log
- sctp String
- Custom format for sctp log
- system String
- Custom format for system log
- threat String
- Custom format for threat log
- traffic String
- Custom format for traffic log
- tunnel String
- Custom format for tunnel log
- url String
- Custom format for url log
- userid String
- Custom format for userid log
- wildfire String
- Custom format for wildfire log
- auth string
- Custom format for auth log
- config string
- Custom format for config log
- correlation string
- Custom format for correlation log
- data string
- Custom format for data log
- decryption string
- Custom format for decryption log
- escaping
Email
Server Profile Format Escaping - globalprotect string
- Custom format for globalprotect log
- gtp string
- Custom format for gtp log
- hip
Match string - Custom format for hip-match log
- iptag string
- Custom format for iptag log
- sctp string
- Custom format for sctp log
- system string
- Custom format for system log
- threat string
- Custom format for threat log
- traffic string
- Custom format for traffic log
- tunnel string
- Custom format for tunnel log
- url string
- Custom format for url log
- userid string
- Custom format for userid log
- wildfire string
- Custom format for wildfire log
- auth str
- Custom format for auth log
- config str
- Custom format for config log
- correlation str
- Custom format for correlation log
- data str
- Custom format for data log
- decryption str
- Custom format for decryption log
- escaping
Email
Server Profile Format Escaping - globalprotect str
- Custom format for globalprotect log
- gtp str
- Custom format for gtp log
- hip_
match str - Custom format for hip-match log
- iptag str
- Custom format for iptag log
- sctp str
- Custom format for sctp log
- system str
- Custom format for system log
- threat str
- Custom format for threat log
- traffic str
- Custom format for traffic log
- tunnel str
- Custom format for tunnel log
- url str
- Custom format for url log
- userid str
- Custom format for userid log
- wildfire str
- Custom format for wildfire log
- auth String
- Custom format for auth log
- config String
- Custom format for config log
- correlation String
- Custom format for correlation log
- data String
- Custom format for data log
- decryption String
- Custom format for decryption log
- escaping Property Map
- globalprotect String
- Custom format for globalprotect log
- gtp String
- Custom format for gtp log
- hip
Match String - Custom format for hip-match log
- iptag String
- Custom format for iptag log
- sctp String
- Custom format for sctp log
- system String
- Custom format for system log
- threat String
- Custom format for threat log
- traffic String
- Custom format for traffic log
- tunnel String
- Custom format for tunnel log
- url String
- Custom format for url log
- userid String
- Custom format for userid log
- wildfire String
- Custom format for wildfire log
EmailServerProfileFormatEscaping, EmailServerProfileFormatEscapingArgs
- Escape
Character string - Escape character
- Escaped
Characters string - List of characters to be escaped
- Escape
Character string - Escape character
- Escaped
Characters string - List of characters to be escaped
- escape_
character string - Escape character
- escaped_
characters string - List of characters to be escaped
- escape
Character String - Escape character
- escaped
Characters String - List of characters to be escaped
- escape
Character string - Escape character
- escaped
Characters string - List of characters to be escaped
- escape_
character str - Escape character
- escaped_
characters str - List of characters to be escaped
- escape
Character String - Escape character
- escaped
Characters String - List of characters to be escaped
EmailServerProfileLocation, EmailServerProfileLocationArgs
- Panorama
Email
Server Profile Location Panorama - Located in a panorama.
- Template
Email
Server Profile Location Template - A shared resource located within a specific template
- Template
Stack EmailServer Profile Location Template Stack - Located in a specific template
- Template
Stack EmailVsys Server Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- Template
Vsys EmailServer Profile Location Template Vsys - Located in a specific template, device and vsys.
- Vsys
Email
Server Profile Location Vsys - Located in a specific Virtual System
- Panorama
Email
Server Profile Location Panorama - Located in a panorama.
- Template
Email
Server Profile Location Template - A shared resource located within a specific template
- Template
Stack EmailServer Profile Location Template Stack - Located in a specific template
- Template
Stack EmailVsys Server Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- Template
Vsys EmailServer Profile Location Template Vsys - Located in a specific template, device and vsys.
- Vsys
Email
Server Profile Location Vsys - Located in a specific Virtual System
- panorama object
- Located in a panorama.
- template object
- A shared resource located within a specific template
- template_
stack object - Located in a specific template
- template_
stack_ objectvsys - Located in a specific template, device and vsys.
- template_
vsys object - Located in a specific template, device and vsys.
- vsys object
- Located in a specific Virtual System
- panorama
Email
Server Profile Location Panorama - Located in a panorama.
- template
Email
Server Profile Location Template - A shared resource located within a specific template
- template
Stack EmailServer Profile Location Template Stack - Located in a specific template
- template
Stack EmailVsys Server Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template
Vsys EmailServer Profile Location Template Vsys - Located in a specific template, device and vsys.
- vsys
Email
Server Profile Location Vsys - Located in a specific Virtual System
- panorama
Email
Server Profile Location Panorama - Located in a panorama.
- template
Email
Server Profile Location Template - A shared resource located within a specific template
- template
Stack EmailServer Profile Location Template Stack - Located in a specific template
- template
Stack EmailVsys Server Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template
Vsys EmailServer Profile Location Template Vsys - Located in a specific template, device and vsys.
- vsys
Email
Server Profile Location Vsys - Located in a specific Virtual System
- panorama
Email
Server Profile Location Panorama - Located in a panorama.
- template
Email
Server Profile Location Template - A shared resource located within a specific template
- template_
stack EmailServer Profile Location Template Stack - Located in a specific template
- template_
stack_ Emailvsys Server Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template_
vsys EmailServer Profile Location Template Vsys - Located in a specific template, device and vsys.
- vsys
Email
Server Profile Location Vsys - Located in a specific Virtual System
- panorama Property Map
- Located in a panorama.
- template Property Map
- A shared resource located within a specific template
- template
Stack Property Map - Located in a specific template
- template
Stack Property MapVsys - Located in a specific template, device and vsys.
- template
Vsys Property Map - Located in a specific template, device and vsys.
- vsys Property Map
- Located in a specific Virtual System
EmailServerProfileLocationTemplate, EmailServerProfileLocationTemplateArgs
- Name string
- Specific Panorama template
- Panorama
Device string - Specific Panorama device
- Name string
- Specific Panorama template
- Panorama
Device string - Specific Panorama device
- name string
- Specific Panorama template
- panorama_
device string - Specific Panorama device
- name String
- Specific Panorama template
- panorama
Device String - Specific Panorama device
- name string
- Specific Panorama template
- panorama
Device string - Specific Panorama device
- name str
- Specific Panorama template
- panorama_
device str - Specific Panorama device
- name String
- Specific Panorama template
- panorama
Device String - Specific Panorama device
EmailServerProfileLocationTemplateStack, EmailServerProfileLocationTemplateStackArgs
- Name string
- The template stack
- Panorama
Device string - Specific Panorama device
- Name string
- The template stack
- Panorama
Device string - Specific Panorama device
- name string
- The template stack
- panorama_
device string - Specific Panorama device
- name String
- The template stack
- panorama
Device String - Specific Panorama device
- name string
- The template stack
- panorama
Device string - Specific Panorama device
- name str
- The template stack
- panorama_
device str - Specific Panorama device
- name String
- The template stack
- panorama
Device String - Specific Panorama device
EmailServerProfileLocationTemplateStackVsys, EmailServerProfileLocationTemplateStackVsysArgs
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template
Stack string - The template stack
- Vsys string
- The vsys.
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template
Stack string - The template stack
- Vsys string
- The vsys.
- ngfw_
device string - The NGFW device
- panorama_
device string - Specific Panorama device
- template_
stack string - The template stack
- vsys string
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template
Stack String - The template stack
- vsys String
- The vsys.
- ngfw
Device string - The NGFW device
- panorama
Device string - Specific Panorama device
- template
Stack string - The template stack
- vsys string
- The vsys.
- ngfw_
device str - The NGFW device
- panorama_
device str - Specific Panorama device
- template_
stack str - The template stack
- vsys str
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template
Stack String - The template stack
- vsys String
- The vsys.
EmailServerProfileLocationTemplateVsys, EmailServerProfileLocationTemplateVsysArgs
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template string
- Specific Panorama template
- Vsys string
- The vsys.
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template string
- Specific Panorama template
- Vsys string
- The vsys.
- ngfw_
device string - The NGFW device
- panorama_
device string - Specific Panorama device
- template string
- Specific Panorama template
- vsys string
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template String
- Specific Panorama template
- vsys String
- The vsys.
- ngfw
Device string - The NGFW device
- panorama
Device string - Specific Panorama device
- template string
- Specific Panorama template
- vsys string
- The vsys.
- ngfw_
device str - The NGFW device
- panorama_
device str - Specific Panorama device
- template str
- Specific Panorama template
- vsys str
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template String
- Specific Panorama template
- vsys String
- The vsys.
EmailServerProfileLocationVsys, EmailServerProfileLocationVsysArgs
- Name string
- The Virtual System name
- Ngfw
Device string - The NGFW device name
- Name string
- The Virtual System name
- Ngfw
Device string - The NGFW device name
- name string
- The Virtual System name
- ngfw_
device string - The NGFW device name
- name String
- The Virtual System name
- ngfw
Device String - The NGFW device name
- name string
- The Virtual System name
- ngfw
Device string - The NGFW device name
- name str
- The Virtual System name
- ngfw_
device str - The NGFW device name
- name String
- The Virtual System name
- ngfw
Device String - The NGFW device name
EmailServerProfileServer, EmailServerProfileServerArgs
- Name string
- And
Also stringTo - Additional CC email address
- Authentication
Type string - Authentication method for SMTP
- Certificate
Profile string - Certificate profile for TLS verification
- Display
Name string - From string
- From email address
- Gateway string
- IP address or FQDN of SMTP gateway
- Password string
- Port double
- SMTP port number
- Protocol string
- Tls
Version string - TLS handshake protocol version
- To string
- To email address
- Username string
- username for authentication
- Name string
- And
Also stringTo - Additional CC email address
- Authentication
Type string - Authentication method for SMTP
- Certificate
Profile string - Certificate profile for TLS verification
- Display
Name string - From string
- From email address
- Gateway string
- IP address or FQDN of SMTP gateway
- Password string
- Port float64
- SMTP port number
- Protocol string
- Tls
Version string - TLS handshake protocol version
- To string
- To email address
- Username string
- username for authentication
- name string
- and_
also_ stringto - Additional CC email address
- authentication_
type string - Authentication method for SMTP
- certificate_
profile string - Certificate profile for TLS verification
- display_
name string - from string
- From email address
- gateway string
- IP address or FQDN of SMTP gateway
- password string
- port number
- SMTP port number
- protocol string
- tls_
version string - TLS handshake protocol version
- to string
- To email address
- username string
- username for authentication
- name String
- and
Also StringTo - Additional CC email address
- authentication
Type String - Authentication method for SMTP
- certificate
Profile String - Certificate profile for TLS verification
- display
Name String - from String
- From email address
- gateway String
- IP address or FQDN of SMTP gateway
- password String
- port Double
- SMTP port number
- protocol String
- tls
Version String - TLS handshake protocol version
- to String
- To email address
- username String
- username for authentication
- name string
- and
Also stringTo - Additional CC email address
- authentication
Type string - Authentication method for SMTP
- certificate
Profile string - Certificate profile for TLS verification
- display
Name string - from string
- From email address
- gateway string
- IP address or FQDN of SMTP gateway
- password string
- port number
- SMTP port number
- protocol string
- tls
Version string - TLS handshake protocol version
- to string
- To email address
- username string
- username for authentication
- name str
- and_
also_ strto - Additional CC email address
- authentication_
type str - Authentication method for SMTP
- certificate_
profile str - Certificate profile for TLS verification
- display_
name str - from_ str
- From email address
- gateway str
- IP address or FQDN of SMTP gateway
- password str
- port float
- SMTP port number
- protocol str
- tls_
version str - TLS handshake protocol version
- to str
- To email address
- username str
- username for authentication
- name String
- and
Also StringTo - Additional CC email address
- authentication
Type String - Authentication method for SMTP
- certificate
Profile String - Certificate profile for TLS verification
- display
Name String - from String
- From email address
- gateway String
- IP address or FQDN of SMTP gateway
- password String
- port Number
- SMTP port number
- protocol String
- tls
Version String - TLS handshake protocol version
- to String
- To email address
- username String
- username for authentication
Import
An email server profile can be imported by providing the following base64 encoded object as the ID
{
location = {
template = {
name = "example-template"
panorama_device = "localhost.localdomain"
}
}
name = “security-alerts-email”
}
$ pulumi import panos:index/emailServerProfile:EmailServerProfile example $(echo '{"location":{"template":{"name":"example-template","panorama_device":"localhost.localdomain"}},"name":"security-alerts-email"}' | base64)
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- panos paloaltonetworks/terraform-provider-panos
- License
- Notes
- This Pulumi package is based on the
panosTerraform Provider.
published on Wednesday, Jun 17, 2026 by paloaltonetworks