Strata Cloud Manager v1.0.3 published on Thursday, Jan 22, 2026 by Pulumi
Strata Cloud Manager v1.0.3 published on Thursday, Jan 22, 2026 by Pulumi
SyslogServerProfile data source
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
//
// Data source to retrieve a single SCM Syslog Server Profile object by its ID.
//
// Replace the ID with the UUID of the SCM Syslog Server Profile you want to find.
const scmSyslogServerProf = scm.getSyslogServerProfile({
id: "69f7ee97-7c0a-416d-a28d-d45929851f6e",
});
export const scmSyslogServerProfileDetails = {
profileId: scmSyslogServerProf.then(scmSyslogServerProf => scmSyslogServerProf.id),
folder: scmSyslogServerProf.then(scmSyslogServerProf => scmSyslogServerProf.folder),
name: scmSyslogServerProf.then(scmSyslogServerProf => scmSyslogServerProf.name),
};
import pulumi
import pulumi_scm as scm
#
# Data source to retrieve a single SCM Syslog Server Profile object by its ID.
#
# Replace the ID with the UUID of the SCM Syslog Server Profile you want to find.
scm_syslog_server_prof = scm.get_syslog_server_profile(id="69f7ee97-7c0a-416d-a28d-d45929851f6e")
pulumi.export("scmSyslogServerProfileDetails", {
"profileId": scm_syslog_server_prof.id,
"folder": scm_syslog_server_prof.folder,
"name": scm_syslog_server_prof.name,
})
package main
import (
"github.com/pulumi/pulumi-scm/sdk/go/scm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Data source to retrieve a single SCM Syslog Server Profile object by its ID.
//
// Replace the ID with the UUID of the SCM Syslog Server Profile you want to find.
scmSyslogServerProf, err := scm.LookupSyslogServerProfile(ctx, &scm.LookupSyslogServerProfileArgs{
Id: "69f7ee97-7c0a-416d-a28d-d45929851f6e",
}, nil)
if err != nil {
return err
}
ctx.Export("scmSyslogServerProfileDetails", pulumi.StringMap{
"profileId": scmSyslogServerProf.Id,
"folder": scmSyslogServerProf.Folder,
"name": scmSyslogServerProf.Name,
})
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
//
// Data source to retrieve a single SCM Syslog Server Profile object by its ID.
//
// Replace the ID with the UUID of the SCM Syslog Server Profile you want to find.
var scmSyslogServerProf = Scm.GetSyslogServerProfile.Invoke(new()
{
Id = "69f7ee97-7c0a-416d-a28d-d45929851f6e",
});
return new Dictionary<string, object?>
{
["scmSyslogServerProfileDetails"] =
{
{ "profileId", scmSyslogServerProf.Apply(getSyslogServerProfileResult => getSyslogServerProfileResult.Id) },
{ "folder", scmSyslogServerProf.Apply(getSyslogServerProfileResult => getSyslogServerProfileResult.Folder) },
{ "name", scmSyslogServerProf.Apply(getSyslogServerProfileResult => getSyslogServerProfileResult.Name) },
},
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.ScmFunctions;
import com.pulumi.scm.inputs.GetSyslogServerProfileArgs;
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) {
//
// Data source to retrieve a single SCM Syslog Server Profile object by its ID.
//
// Replace the ID with the UUID of the SCM Syslog Server Profile you want to find.
final var scmSyslogServerProf = ScmFunctions.getSyslogServerProfile(GetSyslogServerProfileArgs.builder()
.id("69f7ee97-7c0a-416d-a28d-d45929851f6e")
.build());
ctx.export("scmSyslogServerProfileDetails", Map.ofEntries(
Map.entry("profileId", scmSyslogServerProf.id()),
Map.entry("folder", scmSyslogServerProf.folder()),
Map.entry("name", scmSyslogServerProf.name())
));
}
}
variables:
#
# Data source to retrieve a single SCM Syslog Server Profile object by its ID.
#
# Replace the ID with the UUID of the SCM Syslog Server Profile you want to find.
scmSyslogServerProf:
fn::invoke:
function: scm:getSyslogServerProfile
arguments:
id: 69f7ee97-7c0a-416d-a28d-d45929851f6e
outputs:
# Output the details of the single SCM Syslog Server Profile object found.
scmSyslogServerProfileDetails:
profileId: ${scmSyslogServerProf.id}
folder: ${scmSyslogServerProf.folder}
name: ${scmSyslogServerProf.name}
Using getSyslogServerProfile
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getSyslogServerProfile(args: GetSyslogServerProfileArgs, opts?: InvokeOptions): Promise<GetSyslogServerProfileResult>
function getSyslogServerProfileOutput(args: GetSyslogServerProfileOutputArgs, opts?: InvokeOptions): Output<GetSyslogServerProfileResult>def get_syslog_server_profile(device: Optional[str] = None,
folder: Optional[str] = None,
id: Optional[str] = None,
name: Optional[str] = None,
snippet: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSyslogServerProfileResult
def get_syslog_server_profile_output(device: Optional[pulumi.Input[str]] = None,
folder: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
snippet: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSyslogServerProfileResult]func LookupSyslogServerProfile(ctx *Context, args *LookupSyslogServerProfileArgs, opts ...InvokeOption) (*LookupSyslogServerProfileResult, error)
func LookupSyslogServerProfileOutput(ctx *Context, args *LookupSyslogServerProfileOutputArgs, opts ...InvokeOption) LookupSyslogServerProfileResultOutput> Note: This function is named LookupSyslogServerProfile in the Go SDK.
public static class GetSyslogServerProfile
{
public static Task<GetSyslogServerProfileResult> InvokeAsync(GetSyslogServerProfileArgs args, InvokeOptions? opts = null)
public static Output<GetSyslogServerProfileResult> Invoke(GetSyslogServerProfileInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetSyslogServerProfileResult> getSyslogServerProfile(GetSyslogServerProfileArgs args, InvokeOptions options)
public static Output<GetSyslogServerProfileResult> getSyslogServerProfile(GetSyslogServerProfileArgs args, InvokeOptions options)
fn::invoke:
function: scm:index/getSyslogServerProfile:getSyslogServerProfile
arguments:
# arguments dictionaryThe following arguments are supported:
getSyslogServerProfile Result
The following output properties are available:
- Device string
- The device in which the resource is defined
- Folder string
- Format
Get
Syslog Server Profile Format - Id string
- The UUID of the syslog server profile
- Name string
- Servers
List<Get
Syslog Server Profile Server> - Snippet string
- Tfid string
- Device string
- The device in which the resource is defined
- Folder string
- Format
Get
Syslog Server Profile Format - Id string
- The UUID of the syslog server profile
- Name string
- Servers
[]Get
Syslog Server Profile Server - Snippet string
- Tfid string
- device String
- The device in which the resource is defined
- folder String
- format
Get
Syslog Server Profile Format - id String
- The UUID of the syslog server profile
- name String
- servers
List<Get
Syslog Server Profile Server> - snippet String
- tfid String
- device string
- The device in which the resource is defined
- folder string
- format
Get
Syslog Server Profile Format - id string
- The UUID of the syslog server profile
- name string
- servers
Get
Syslog Server Profile Server[] - snippet string
- tfid string
- device str
- The device in which the resource is defined
- folder str
- format
Get
Syslog Server Profile Format - id str
- The UUID of the syslog server profile
- name str
- servers
Sequence[Get
Syslog Server Profile Server] - snippet str
- tfid str
- device String
- The device in which the resource is defined
- folder String
- format Property Map
- id String
- The UUID of the syslog server profile
- name String
- servers List<Property Map>
- snippet String
- tfid String
Supporting Types
GetSyslogServerProfileFormat
- Auth string
- Auth
- Config string
- Config
- Correlation string
- Correlation
- Data string
- Data
- Decryption string
- Decryption
- Escaping
Get
Syslog Server Profile Format Escaping - Escaping
- Globalprotect string
- Globalprotect
- Gtp string
- Gtp
- Hip
Match 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
Get
Syslog Server Profile Format Escaping - Escaping
- Globalprotect string
- Globalprotect
- Gtp string
- Gtp
- Hip
Match 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
Get
Syslog Server Profile Format Escaping - Escaping
- globalprotect String
- Globalprotect
- gtp String
- Gtp
- hip
Match 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
Get
Syslog Server Profile Format Escaping - Escaping
- globalprotect string
- Globalprotect
- gtp string
- Gtp
- hip
Match 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
Get
Syslog Server Profile Format Escaping - 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
- hip
Match 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
GetSyslogServerProfileFormatEscaping
- Escape
Character string - Escape sequence delimiter
- Escaped
Characters string - A list of all the characters to be escaped (without spaces).
- Escape
Character string - Escape sequence delimiter
- Escaped
Characters string - A list of all the characters to be escaped (without spaces).
- escape
Character String - Escape sequence delimiter
- escaped
Characters String - A list of all the characters to be escaped (without spaces).
- escape
Character string - Escape sequence delimiter
- escaped
Characters 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).
- escape
Character String - Escape sequence delimiter
- escaped
Characters String - A list of all the characters to be escaped (without spaces).
GetSyslogServerProfileServer
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
Strata Cloud Manager v1.0.3 published on Thursday, Jan 22, 2026 by Pulumi
