Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as panos from "@pulumi/panos";
const example = new panos.Template("example", {
location: {
panorama: {},
},
name: "example-template",
});
const exampleSyslogProfile = new panos.SyslogProfile("example", {
location: {
template: {
name: example.name,
},
},
name: "example-syslog-profile",
servers: [
{
name: "server1",
server: "10.0.0.1",
transport: "UDP",
port: 514,
facility: "LOG_USER",
format: "IETF",
},
{
name: "server2",
server: "syslog.example.com",
transport: "SSL",
port: 6514,
facility: "LOG_LOCAL1",
format: "BSD",
},
],
format: {
auth: "auth-format",
traffic: "traffic-format",
escaping: {
escapeCharacter: "\\",
escapedCharacters: "'",
},
},
});
import pulumi
import pulumi_panos as panos
example = panos.Template("example",
location={
"panorama": {},
},
name="example-template")
example_syslog_profile = panos.SyslogProfile("example",
location={
"template": {
"name": example.name,
},
},
name="example-syslog-profile",
servers=[
{
"name": "server1",
"server": "10.0.0.1",
"transport": "UDP",
"port": 514,
"facility": "LOG_USER",
"format": "IETF",
},
{
"name": "server2",
"server": "syslog.example.com",
"transport": "SSL",
"port": 6514,
"facility": "LOG_LOCAL1",
"format": "BSD",
},
],
format={
"auth": "auth-format",
"traffic": "traffic-format",
"escaping": {
"escape_character": "\\",
"escaped_characters": "'",
},
})
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 {
example, err := panos.NewTemplate(ctx, "example", &panos.TemplateArgs{
Location: &panos.TemplateLocationArgs{
Panorama: &panos.TemplateLocationPanoramaArgs{},
},
Name: pulumi.String("example-template"),
})
if err != nil {
return err
}
_, err = panos.NewSyslogProfile(ctx, "example", &panos.SyslogProfileArgs{
Location: &panos.SyslogProfileLocationArgs{
Template: &panos.SyslogProfileLocationTemplateArgs{
Name: example.Name,
},
},
Name: pulumi.String("example-syslog-profile"),
Servers: panos.SyslogProfileServerArray{
&panos.SyslogProfileServerArgs{
Name: pulumi.String("server1"),
Server: pulumi.String("10.0.0.1"),
Transport: pulumi.String("UDP"),
Port: pulumi.Float64(514),
Facility: pulumi.String("LOG_USER"),
Format: pulumi.String("IETF"),
},
&panos.SyslogProfileServerArgs{
Name: pulumi.String("server2"),
Server: pulumi.String("syslog.example.com"),
Transport: pulumi.String("SSL"),
Port: pulumi.Float64(6514),
Facility: pulumi.String("LOG_LOCAL1"),
Format: pulumi.String("BSD"),
},
},
Format: &panos.SyslogProfileFormatArgs{
Auth: pulumi.String("auth-format"),
Traffic: pulumi.String("traffic-format"),
Escaping: &panos.SyslogProfileFormatEscapingArgs{
EscapeCharacter: pulumi.String("\\"),
EscapedCharacters: pulumi.String("'"),
},
},
})
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.Template("example", new()
{
Location = new Panos.Inputs.TemplateLocationArgs
{
Panorama = null,
},
Name = "example-template",
});
var exampleSyslogProfile = new Panos.SyslogProfile("example", new()
{
Location = new Panos.Inputs.SyslogProfileLocationArgs
{
Template = new Panos.Inputs.SyslogProfileLocationTemplateArgs
{
Name = example.Name,
},
},
Name = "example-syslog-profile",
Servers = new[]
{
new Panos.Inputs.SyslogProfileServerArgs
{
Name = "server1",
Server = "10.0.0.1",
Transport = "UDP",
Port = 514,
Facility = "LOG_USER",
Format = "IETF",
},
new Panos.Inputs.SyslogProfileServerArgs
{
Name = "server2",
Server = "syslog.example.com",
Transport = "SSL",
Port = 6514,
Facility = "LOG_LOCAL1",
Format = "BSD",
},
},
Format = new Panos.Inputs.SyslogProfileFormatArgs
{
Auth = "auth-format",
Traffic = "traffic-format",
Escaping = new Panos.Inputs.SyslogProfileFormatEscapingArgs
{
EscapeCharacter = "\\",
EscapedCharacters = "'",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.panos.Template;
import com.pulumi.panos.TemplateArgs;
import com.pulumi.panos.inputs.TemplateLocationArgs;
import com.pulumi.panos.inputs.TemplateLocationPanoramaArgs;
import com.pulumi.panos.SyslogProfile;
import com.pulumi.panos.SyslogProfileArgs;
import com.pulumi.panos.inputs.SyslogProfileLocationArgs;
import com.pulumi.panos.inputs.SyslogProfileLocationTemplateArgs;
import com.pulumi.panos.inputs.SyslogProfileServerArgs;
import com.pulumi.panos.inputs.SyslogProfileFormatArgs;
import com.pulumi.panos.inputs.SyslogProfileFormatEscapingArgs;
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 Template("example", TemplateArgs.builder()
.location(TemplateLocationArgs.builder()
.panorama(TemplateLocationPanoramaArgs.builder()
.build())
.build())
.name("example-template")
.build());
var exampleSyslogProfile = new SyslogProfile("exampleSyslogProfile", SyslogProfileArgs.builder()
.location(SyslogProfileLocationArgs.builder()
.template(SyslogProfileLocationTemplateArgs.builder()
.name(example.name())
.build())
.build())
.name("example-syslog-profile")
.servers(
SyslogProfileServerArgs.builder()
.name("server1")
.server("10.0.0.1")
.transport("UDP")
.port(514.0)
.facility("LOG_USER")
.format("IETF")
.build(),
SyslogProfileServerArgs.builder()
.name("server2")
.server("syslog.example.com")
.transport("SSL")
.port(6514.0)
.facility("LOG_LOCAL1")
.format("BSD")
.build())
.format(SyslogProfileFormatArgs.builder()
.auth("auth-format")
.traffic("traffic-format")
.escaping(SyslogProfileFormatEscapingArgs.builder()
.escapeCharacter("\\")
.escapedCharacters("'")
.build())
.build())
.build());
}
}
resources:
example:
type: panos:Template
properties:
location:
panorama: {}
name: example-template
exampleSyslogProfile:
type: panos:SyslogProfile
name: example
properties:
location:
template:
name: ${example.name}
name: example-syslog-profile
servers:
- name: server1
server: 10.0.0.1
transport: UDP
port: 514
facility: LOG_USER
format: IETF
- name: server2
server: syslog.example.com
transport: SSL
port: 6514
facility: LOG_LOCAL1
format: BSD
format:
auth: auth-format
traffic: traffic-format
escaping:
escapeCharacter: \
escapedCharacters: ''''
Create SyslogProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SyslogProfile(name: string, args: SyslogProfileArgs, opts?: CustomResourceOptions);@overload
def SyslogProfile(resource_name: str,
args: SyslogProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SyslogProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
location: Optional[SyslogProfileLocationArgs] = None,
format: Optional[SyslogProfileFormatArgs] = None,
name: Optional[str] = None,
servers: Optional[Sequence[SyslogProfileServerArgs]] = None)func NewSyslogProfile(ctx *Context, name string, args SyslogProfileArgs, opts ...ResourceOption) (*SyslogProfile, error)public SyslogProfile(string name, SyslogProfileArgs args, CustomResourceOptions? opts = null)
public SyslogProfile(String name, SyslogProfileArgs args)
public SyslogProfile(String name, SyslogProfileArgs args, CustomResourceOptions options)
type: panos:SyslogProfile
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 SyslogProfileArgs
- 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 SyslogProfileArgs
- 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 SyslogProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SyslogProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SyslogProfileArgs
- 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 syslogProfileResource = new Panos.SyslogProfile("syslogProfileResource", new()
{
Location = new Panos.Inputs.SyslogProfileLocationArgs
{
Panorama = null,
Template = new Panos.Inputs.SyslogProfileLocationTemplateArgs
{
Name = "string",
PanoramaDevice = "string",
},
TemplateStack = new Panos.Inputs.SyslogProfileLocationTemplateStackArgs
{
Name = "string",
PanoramaDevice = "string",
},
TemplateStackVsys = new Panos.Inputs.SyslogProfileLocationTemplateStackVsysArgs
{
NgfwDevice = "string",
PanoramaDevice = "string",
TemplateStack = "string",
Vsys = "string",
},
TemplateVsys = new Panos.Inputs.SyslogProfileLocationTemplateVsysArgs
{
NgfwDevice = "string",
PanoramaDevice = "string",
Template = "string",
Vsys = "string",
},
Vsys = new Panos.Inputs.SyslogProfileLocationVsysArgs
{
Name = "string",
NgfwDevice = "string",
},
},
Format = new Panos.Inputs.SyslogProfileFormatArgs
{
Auth = "string",
Config = "string",
Correlation = "string",
Data = "string",
Decryption = "string",
Escaping = new Panos.Inputs.SyslogProfileFormatEscapingArgs
{
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.SyslogProfileServerArgs
{
Name = "string",
Facility = "string",
Format = "string",
Port = 0,
Server = "string",
Transport = "string",
},
},
});
example, err := panos.NewSyslogProfile(ctx, "syslogProfileResource", &panos.SyslogProfileArgs{
Location: &panos.SyslogProfileLocationArgs{
Panorama: &panos.SyslogProfileLocationPanoramaArgs{},
Template: &panos.SyslogProfileLocationTemplateArgs{
Name: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
TemplateStack: &panos.SyslogProfileLocationTemplateStackArgs{
Name: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
TemplateStackVsys: &panos.SyslogProfileLocationTemplateStackVsysArgs{
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
TemplateStack: pulumi.String("string"),
Vsys: pulumi.String("string"),
},
TemplateVsys: &panos.SyslogProfileLocationTemplateVsysArgs{
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
Template: pulumi.String("string"),
Vsys: pulumi.String("string"),
},
Vsys: &panos.SyslogProfileLocationVsysArgs{
Name: pulumi.String("string"),
NgfwDevice: pulumi.String("string"),
},
},
Format: &panos.SyslogProfileFormatArgs{
Auth: pulumi.String("string"),
Config: pulumi.String("string"),
Correlation: pulumi.String("string"),
Data: pulumi.String("string"),
Decryption: pulumi.String("string"),
Escaping: &panos.SyslogProfileFormatEscapingArgs{
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.SyslogProfileServerArray{
&panos.SyslogProfileServerArgs{
Name: pulumi.String("string"),
Facility: pulumi.String("string"),
Format: pulumi.String("string"),
Port: pulumi.Float64(0),
Server: pulumi.String("string"),
Transport: pulumi.String("string"),
},
},
})
var syslogProfileResource = new SyslogProfile("syslogProfileResource", SyslogProfileArgs.builder()
.location(SyslogProfileLocationArgs.builder()
.panorama(SyslogProfileLocationPanoramaArgs.builder()
.build())
.template(SyslogProfileLocationTemplateArgs.builder()
.name("string")
.panoramaDevice("string")
.build())
.templateStack(SyslogProfileLocationTemplateStackArgs.builder()
.name("string")
.panoramaDevice("string")
.build())
.templateStackVsys(SyslogProfileLocationTemplateStackVsysArgs.builder()
.ngfwDevice("string")
.panoramaDevice("string")
.templateStack("string")
.vsys("string")
.build())
.templateVsys(SyslogProfileLocationTemplateVsysArgs.builder()
.ngfwDevice("string")
.panoramaDevice("string")
.template("string")
.vsys("string")
.build())
.vsys(SyslogProfileLocationVsysArgs.builder()
.name("string")
.ngfwDevice("string")
.build())
.build())
.format(SyslogProfileFormatArgs.builder()
.auth("string")
.config("string")
.correlation("string")
.data("string")
.decryption("string")
.escaping(SyslogProfileFormatEscapingArgs.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(SyslogProfileServerArgs.builder()
.name("string")
.facility("string")
.format("string")
.port(0.0)
.server("string")
.transport("string")
.build())
.build());
syslog_profile_resource = panos.SyslogProfile("syslogProfileResource",
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",
"facility": "string",
"format": "string",
"port": 0,
"server": "string",
"transport": "string",
}])
const syslogProfileResource = new panos.SyslogProfile("syslogProfileResource", {
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",
facility: "string",
format: "string",
port: 0,
server: "string",
transport: "string",
}],
});
type: panos:SyslogProfile
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:
- facility: string
format: string
name: string
port: 0
server: string
transport: string
SyslogProfile 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 SyslogProfile resource accepts the following input properties:
- Location
Syslog
Profile Location - The location of this object.
- Format
Syslog
Profile Format - Name string
- Servers
List<Syslog
Profile Server>
- Location
Syslog
Profile Location Args - The location of this object.
- Format
Syslog
Profile Format Args - Name string
- Servers
[]Syslog
Profile Server Args
- location
Syslog
Profile Location - The location of this object.
- format
Syslog
Profile Format - name String
- servers
List<Syslog
Profile Server>
- location
Syslog
Profile Location - The location of this object.
- format
Syslog
Profile Format - name string
- servers
Syslog
Profile Server[]
- location
Syslog
Profile Location Args - The location of this object.
- format
Syslog
Profile Format Args - name str
- servers
Sequence[Syslog
Profile Server Args]
- location Property Map
- The location of this object.
- format Property Map
- name String
- servers List<Property Map>
Outputs
All input properties are implicitly available as output properties. Additionally, the SyslogProfile 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 SyslogProfile Resource
Get an existing SyslogProfile 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?: SyslogProfileState, opts?: CustomResourceOptions): SyslogProfile@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
format: Optional[SyslogProfileFormatArgs] = None,
location: Optional[SyslogProfileLocationArgs] = None,
name: Optional[str] = None,
servers: Optional[Sequence[SyslogProfileServerArgs]] = None) -> SyslogProfilefunc GetSyslogProfile(ctx *Context, name string, id IDInput, state *SyslogProfileState, opts ...ResourceOption) (*SyslogProfile, error)public static SyslogProfile Get(string name, Input<string> id, SyslogProfileState? state, CustomResourceOptions? opts = null)public static SyslogProfile get(String name, Output<String> id, SyslogProfileState state, CustomResourceOptions options)resources: _: type: panos:SyslogProfile 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.
- Format
Syslog
Profile Format - Location
Syslog
Profile Location - The location of this object.
- Name string
- Servers
List<Syslog
Profile Server>
- Format
Syslog
Profile Format Args - Location
Syslog
Profile Location Args - The location of this object.
- Name string
- Servers
[]Syslog
Profile Server Args
- format
Syslog
Profile Format - location
Syslog
Profile Location - The location of this object.
- name String
- servers
List<Syslog
Profile Server>
- format
Syslog
Profile Format - location
Syslog
Profile Location - The location of this object.
- name string
- servers
Syslog
Profile Server[]
- format
Syslog
Profile Format Args - location
Syslog
Profile Location Args - The location of this object.
- name str
- servers
Sequence[Syslog
Profile Server Args]
- format Property Map
- location Property Map
- The location of this object.
- name String
- servers List<Property Map>
Supporting Types
SyslogProfileFormat, SyslogProfileFormatArgs
- Auth string
- Config string
- Correlation string
- Data string
- Decryption string
- Escaping
Syslog
Profile Format Escaping - 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
- Auth string
- Config string
- Correlation string
- Data string
- Decryption string
- Escaping
Syslog
Profile Format Escaping - 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
- auth String
- config String
- correlation String
- data String
- decryption String
- escaping
Syslog
Profile Format Escaping - 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
- auth string
- config string
- correlation string
- data string
- decryption string
- escaping
Syslog
Profile Format Escaping - 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
- auth str
- config str
- correlation str
- data str
- decryption str
- escaping
Syslog
Profile Format Escaping - globalprotect str
- gtp str
- hip_
match str - iptag str
- sctp str
- system str
- threat str
- traffic str
- tunnel str
- url str
- userid str
- wildfire str
- auth String
- config String
- correlation String
- data String
- decryption String
- escaping Property Map
- 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
SyslogProfileFormatEscaping, SyslogProfileFormatEscapingArgs
- 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
SyslogProfileLocation, SyslogProfileLocationArgs
- Panorama
Syslog
Profile Location Panorama - Located in a panorama.
- Template
Syslog
Profile Location Template - A shared resource located within a specific template
- Template
Stack SyslogProfile Location Template Stack - Located in a specific template
- Template
Stack SyslogVsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- Template
Vsys SyslogProfile Location Template Vsys - Located in a specific template, device and vsys.
- Vsys
Syslog
Profile Location Vsys - Located in a specific Virtual System
- Panorama
Syslog
Profile Location Panorama - Located in a panorama.
- Template
Syslog
Profile Location Template - A shared resource located within a specific template
- Template
Stack SyslogProfile Location Template Stack - Located in a specific template
- Template
Stack SyslogVsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- Template
Vsys SyslogProfile Location Template Vsys - Located in a specific template, device and vsys.
- Vsys
Syslog
Profile Location Vsys - Located in a specific Virtual System
- panorama
Syslog
Profile Location Panorama - Located in a panorama.
- template
Syslog
Profile Location Template - A shared resource located within a specific template
- template
Stack SyslogProfile Location Template Stack - Located in a specific template
- template
Stack SyslogVsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template
Vsys SyslogProfile Location Template Vsys - Located in a specific template, device and vsys.
- vsys
Syslog
Profile Location Vsys - Located in a specific Virtual System
- panorama
Syslog
Profile Location Panorama - Located in a panorama.
- template
Syslog
Profile Location Template - A shared resource located within a specific template
- template
Stack SyslogProfile Location Template Stack - Located in a specific template
- template
Stack SyslogVsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template
Vsys SyslogProfile Location Template Vsys - Located in a specific template, device and vsys.
- vsys
Syslog
Profile Location Vsys - Located in a specific Virtual System
- panorama
Syslog
Profile Location Panorama - Located in a panorama.
- template
Syslog
Profile Location Template - A shared resource located within a specific template
- template_
stack SyslogProfile Location Template Stack - Located in a specific template
- template_
stack_ Syslogvsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template_
vsys SyslogProfile Location Template Vsys - Located in a specific template, device and vsys.
- vsys
Syslog
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
SyslogProfileLocationTemplate, SyslogProfileLocationTemplateArgs
- 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
SyslogProfileLocationTemplateStack, SyslogProfileLocationTemplateStackArgs
- 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
SyslogProfileLocationTemplateStackVsys, SyslogProfileLocationTemplateStackVsysArgs
- 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.
SyslogProfileLocationTemplateVsys, SyslogProfileLocationTemplateVsysArgs
- 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.
SyslogProfileLocationVsys, SyslogProfileLocationVsysArgs
- 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
SyslogProfileServer, SyslogProfileServerArgs
Import
The pulumi import command can be used, for example:
A syslog profile can be imported by providing the following base64 encoded object as the ID
{
location = {
template = {
name = "example-template"
panorama_device = "localhost.localdomain"
}
}
name = “example-syslog-profile”
}
$ pulumi import panos:index/syslogProfile:SyslogProfile example $(echo '{"location":{"template":{"name":"example-template","panorama_device":"localhost.localdomain"}},"name":"example-syslog-profile"}' | 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.
