1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. SyslogServerProfile
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
scm logo
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi

    SyslogServerProfile resource

    Create SyslogServerProfile Resource

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

    Constructor syntax

    new SyslogServerProfile(name: string, args?: SyslogServerProfileArgs, opts?: CustomResourceOptions);
    @overload
    def SyslogServerProfile(resource_name: str,
                            args: Optional[SyslogServerProfileArgs] = None,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def SyslogServerProfile(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            device: Optional[str] = None,
                            folder: Optional[str] = None,
                            format: Optional[SyslogServerProfileFormatArgs] = None,
                            name: Optional[str] = None,
                            servers: Optional[SyslogServerProfileServersArgs] = None,
                            snippet: Optional[str] = None)
    func NewSyslogServerProfile(ctx *Context, name string, args *SyslogServerProfileArgs, opts ...ResourceOption) (*SyslogServerProfile, error)
    public SyslogServerProfile(string name, SyslogServerProfileArgs? args = null, CustomResourceOptions? opts = null)
    public SyslogServerProfile(String name, SyslogServerProfileArgs args)
    public SyslogServerProfile(String name, SyslogServerProfileArgs args, CustomResourceOptions options)
    
    type: scm:SyslogServerProfile
    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 SyslogServerProfileArgs
    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 SyslogServerProfileArgs
    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 SyslogServerProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SyslogServerProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SyslogServerProfileArgs
    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 syslogServerProfileResource = new Scm.SyslogServerProfile("syslogServerProfileResource", new()
    {
        Device = "string",
        Folder = "string",
        Format = new Scm.Inputs.SyslogServerProfileFormatArgs
        {
            Auth = "string",
            Config = "string",
            Correlation = "string",
            Data = "string",
            Decryption = "string",
            Escaping = new Scm.Inputs.SyslogServerProfileFormatEscapingArgs
            {
                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 Scm.Inputs.SyslogServerProfileServersArgs
        {
            Facility = "string",
            Format = "string",
            Name = "string",
            Port = 0,
            Server = "string",
            Transport = "string",
        },
        Snippet = "string",
    });
    
    example, err := scm.NewSyslogServerProfile(ctx, "syslogServerProfileResource", &scm.SyslogServerProfileArgs{
    	Device: pulumi.String("string"),
    	Folder: pulumi.String("string"),
    	Format: &scm.SyslogServerProfileFormatArgs{
    		Auth:        pulumi.String("string"),
    		Config:      pulumi.String("string"),
    		Correlation: pulumi.String("string"),
    		Data:        pulumi.String("string"),
    		Decryption:  pulumi.String("string"),
    		Escaping: &scm.SyslogServerProfileFormatEscapingArgs{
    			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: &scm.SyslogServerProfileServersArgs{
    		Facility:  pulumi.String("string"),
    		Format:    pulumi.String("string"),
    		Name:      pulumi.String("string"),
    		Port:      pulumi.Int(0),
    		Server:    pulumi.String("string"),
    		Transport: pulumi.String("string"),
    	},
    	Snippet: pulumi.String("string"),
    })
    
    var syslogServerProfileResource = new SyslogServerProfile("syslogServerProfileResource", SyslogServerProfileArgs.builder()
        .device("string")
        .folder("string")
        .format(SyslogServerProfileFormatArgs.builder()
            .auth("string")
            .config("string")
            .correlation("string")
            .data("string")
            .decryption("string")
            .escaping(SyslogServerProfileFormatEscapingArgs.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(SyslogServerProfileServersArgs.builder()
            .facility("string")
            .format("string")
            .name("string")
            .port(0)
            .server("string")
            .transport("string")
            .build())
        .snippet("string")
        .build());
    
    syslog_server_profile_resource = scm.SyslogServerProfile("syslogServerProfileResource",
        device="string",
        folder="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={
            "facility": "string",
            "format": "string",
            "name": "string",
            "port": 0,
            "server": "string",
            "transport": "string",
        },
        snippet="string")
    
    const syslogServerProfileResource = new scm.SyslogServerProfile("syslogServerProfileResource", {
        device: "string",
        folder: "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: {
            facility: "string",
            format: "string",
            name: "string",
            port: 0,
            server: "string",
            transport: "string",
        },
        snippet: "string",
    });
    
    type: scm:SyslogServerProfile
    properties:
        device: string
        folder: 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:
            facility: string
            format: string
            name: string
            port: 0
            server: string
            transport: string
        snippet: string
    

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

    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Format SyslogServerProfileFormat
    Format
    Name string
    The name of the syslog server profile
    Servers SyslogServerProfileServers
    Servers
    Snippet string
    The snippet in which the resource is defined
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Format SyslogServerProfileFormatArgs
    Format
    Name string
    The name of the syslog server profile
    Servers SyslogServerProfileServersArgs
    Servers
    Snippet string
    The snippet in which the resource is defined
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    format SyslogServerProfileFormat
    Format
    name String
    The name of the syslog server profile
    servers SyslogServerProfileServers
    Servers
    snippet String
    The snippet in which the resource is defined
    device string
    The device in which the resource is defined
    folder string
    The folder in which the resource is defined
    format SyslogServerProfileFormat
    Format
    name string
    The name of the syslog server profile
    servers SyslogServerProfileServers
    Servers
    snippet string
    The snippet in which the resource is defined
    device str
    The device in which the resource is defined
    folder str
    The folder in which the resource is defined
    format SyslogServerProfileFormatArgs
    Format
    name str
    The name of the syslog server profile
    servers SyslogServerProfileServersArgs
    Servers
    snippet str
    The snippet in which the resource is defined
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    format Property Map
    Format
    name String
    The name of the syslog server profile
    servers Property Map
    Servers
    snippet String
    The snippet in which the resource is defined

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SyslogServerProfile resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String

    Look up Existing SyslogServerProfile Resource

    Get an existing SyslogServerProfile 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?: SyslogServerProfileState, opts?: CustomResourceOptions): SyslogServerProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            device: Optional[str] = None,
            folder: Optional[str] = None,
            format: Optional[SyslogServerProfileFormatArgs] = None,
            name: Optional[str] = None,
            servers: Optional[SyslogServerProfileServersArgs] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None) -> SyslogServerProfile
    func GetSyslogServerProfile(ctx *Context, name string, id IDInput, state *SyslogServerProfileState, opts ...ResourceOption) (*SyslogServerProfile, error)
    public static SyslogServerProfile Get(string name, Input<string> id, SyslogServerProfileState? state, CustomResourceOptions? opts = null)
    public static SyslogServerProfile get(String name, Output<String> id, SyslogServerProfileState state, CustomResourceOptions options)
    resources:  _:    type: scm:SyslogServerProfile    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Format SyslogServerProfileFormat
    Format
    Name string
    The name of the syslog server profile
    Servers SyslogServerProfileServers
    Servers
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Format SyslogServerProfileFormatArgs
    Format
    Name string
    The name of the syslog server profile
    Servers SyslogServerProfileServersArgs
    Servers
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    format SyslogServerProfileFormat
    Format
    name String
    The name of the syslog server profile
    servers SyslogServerProfileServers
    Servers
    snippet String
    The snippet in which the resource is defined
    tfid String
    device string
    The device in which the resource is defined
    folder string
    The folder in which the resource is defined
    format SyslogServerProfileFormat
    Format
    name string
    The name of the syslog server profile
    servers SyslogServerProfileServers
    Servers
    snippet string
    The snippet in which the resource is defined
    tfid string
    device str
    The device in which the resource is defined
    folder str
    The folder in which the resource is defined
    format SyslogServerProfileFormatArgs
    Format
    name str
    The name of the syslog server profile
    servers SyslogServerProfileServersArgs
    Servers
    snippet str
    The snippet in which the resource is defined
    tfid str
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    format Property Map
    Format
    name String
    The name of the syslog server profile
    servers Property Map
    Servers
    snippet String
    The snippet in which the resource is defined
    tfid String

    Supporting Types

    SyslogServerProfileFormat, SyslogServerProfileFormatArgs

    Auth string
    Auth
    Config string
    Config
    Correlation string
    Correlation
    Data string
    Data
    Decryption string
    Decryption
    Escaping SyslogServerProfileFormatEscaping
    Escaping
    Globalprotect string
    Globalprotect
    Gtp string
    Gtp
    HipMatch string
    Hip match
    Iptag string
    Iptag
    Sctp string
    Sctp
    System string
    System
    Threat string
    Threat
    Traffic string
    Traffic
    Tunnel string
    Tunnel
    Url string
    Url
    Userid string
    Userid
    Wildfire string
    Wildfire
    Auth string
    Auth
    Config string
    Config
    Correlation string
    Correlation
    Data string
    Data
    Decryption string
    Decryption
    Escaping SyslogServerProfileFormatEscaping
    Escaping
    Globalprotect string
    Globalprotect
    Gtp string
    Gtp
    HipMatch string
    Hip match
    Iptag string
    Iptag
    Sctp string
    Sctp
    System string
    System
    Threat string
    Threat
    Traffic string
    Traffic
    Tunnel string
    Tunnel
    Url string
    Url
    Userid string
    Userid
    Wildfire string
    Wildfire
    auth String
    Auth
    config String
    Config
    correlation String
    Correlation
    data String
    Data
    decryption String
    Decryption
    escaping SyslogServerProfileFormatEscaping
    Escaping
    globalprotect String
    Globalprotect
    gtp String
    Gtp
    hipMatch String
    Hip match
    iptag String
    Iptag
    sctp String
    Sctp
    system String
    System
    threat String
    Threat
    traffic String
    Traffic
    tunnel String
    Tunnel
    url String
    Url
    userid String
    Userid
    wildfire String
    Wildfire
    auth string
    Auth
    config string
    Config
    correlation string
    Correlation
    data string
    Data
    decryption string
    Decryption
    escaping SyslogServerProfileFormatEscaping
    Escaping
    globalprotect string
    Globalprotect
    gtp string
    Gtp
    hipMatch string
    Hip match
    iptag string
    Iptag
    sctp string
    Sctp
    system string
    System
    threat string
    Threat
    traffic string
    Traffic
    tunnel string
    Tunnel
    url string
    Url
    userid string
    Userid
    wildfire string
    Wildfire
    auth str
    Auth
    config str
    Config
    correlation str
    Correlation
    data str
    Data
    decryption str
    Decryption
    escaping SyslogServerProfileFormatEscaping
    Escaping
    globalprotect str
    Globalprotect
    gtp str
    Gtp
    hip_match str
    Hip match
    iptag str
    Iptag
    sctp str
    Sctp
    system str
    System
    threat str
    Threat
    traffic str
    Traffic
    tunnel str
    Tunnel
    url str
    Url
    userid str
    Userid
    wildfire str
    Wildfire
    auth String
    Auth
    config String
    Config
    correlation String
    Correlation
    data String
    Data
    decryption String
    Decryption
    escaping Property Map
    Escaping
    globalprotect String
    Globalprotect
    gtp String
    Gtp
    hipMatch String
    Hip match
    iptag String
    Iptag
    sctp String
    Sctp
    system String
    System
    threat String
    Threat
    traffic String
    Traffic
    tunnel String
    Tunnel
    url String
    Url
    userid String
    Userid
    wildfire String
    Wildfire

    SyslogServerProfileFormatEscaping, SyslogServerProfileFormatEscapingArgs

    EscapeCharacter string
    Escape sequence delimiter
    EscapedCharacters string
    A list of all the characters to be escaped (without spaces).
    EscapeCharacter string
    Escape sequence delimiter
    EscapedCharacters string
    A list of all the characters to be escaped (without spaces).
    escapeCharacter String
    Escape sequence delimiter
    escapedCharacters String
    A list of all the characters to be escaped (without spaces).
    escapeCharacter string
    Escape sequence delimiter
    escapedCharacters string
    A list of all the characters to be escaped (without spaces).
    escape_character str
    Escape sequence delimiter
    escaped_characters str
    A list of all the characters to be escaped (without spaces).
    escapeCharacter String
    Escape sequence delimiter
    escapedCharacters String
    A list of all the characters to be escaped (without spaces).

    SyslogServerProfileServers, SyslogServerProfileServersArgs

    Facility string
    Syslog facility
    Format string
    Syslog format
    Name string
    Syslog server name
    Port int
    Syslog server port
    Server string
    Syslog server address
    Transport string
    Transport protocol
    Facility string
    Syslog facility
    Format string
    Syslog format
    Name string
    Syslog server name
    Port int
    Syslog server port
    Server string
    Syslog server address
    Transport string
    Transport protocol
    facility String
    Syslog facility
    format String
    Syslog format
    name String
    Syslog server name
    port Integer
    Syslog server port
    server String
    Syslog server address
    transport String
    Transport protocol
    facility string
    Syslog facility
    format string
    Syslog format
    name string
    Syslog server name
    port number
    Syslog server port
    server string
    Syslog server address
    transport string
    Transport protocol
    facility str
    Syslog facility
    format str
    Syslog format
    name str
    Syslog server name
    port int
    Syslog server port
    server str
    Syslog server address
    transport str
    Transport protocol
    facility String
    Syslog facility
    format String
    Syslog format
    name String
    Syslog server name
    port Number
    Syslog server port
    server String
    Syslog server address
    transport String
    Transport protocol

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate