1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getRadiusServerProfile
Strata Cloud Manager v1.0.1 published on Wednesday, Nov 26, 2025 by Pulumi
scm logo
Strata Cloud Manager v1.0.1 published on Wednesday, Nov 26, 2025 by Pulumi

    RadiusServerProfile data source

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    const singleProfileById = scm.getRadiusServerProfile({
        id: "50e5f694-19a2-467b-90a8-9db168600327",
    });
    export const singleRspDump = singleProfileById.then(singleProfileById => singleProfileById.name);
    
    import pulumi
    import pulumi_scm as scm
    
    single_profile_by_id = scm.get_radius_server_profile(id="50e5f694-19a2-467b-90a8-9db168600327")
    pulumi.export("singleRspDump", single_profile_by_id.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 {
    		singleProfileById, err := scm.LookupRadiusServerProfile(ctx, &scm.LookupRadiusServerProfileArgs{
    			Id: "50e5f694-19a2-467b-90a8-9db168600327",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("singleRspDump", singleProfileById.Name)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        var singleProfileById = Scm.GetRadiusServerProfile.Invoke(new()
        {
            Id = "50e5f694-19a2-467b-90a8-9db168600327",
        });
    
        return new Dictionary<string, object?>
        {
            ["singleRspDump"] = singleProfileById.Apply(getRadiusServerProfileResult => getRadiusServerProfileResult.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.GetRadiusServerProfileArgs;
    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) {
            final var singleProfileById = ScmFunctions.getRadiusServerProfile(GetRadiusServerProfileArgs.builder()
                .id("50e5f694-19a2-467b-90a8-9db168600327")
                .build());
    
            ctx.export("singleRspDump", singleProfileById.name());
        }
    }
    
    variables:
      singleProfileById:
        fn::invoke:
          function: scm:getRadiusServerProfile
          arguments:
            id: 50e5f694-19a2-467b-90a8-9db168600327
    outputs:
      singleRspDump: ${singleProfileById.name}
    

    Using getRadiusServerProfile

    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 getRadiusServerProfile(args: GetRadiusServerProfileArgs, opts?: InvokeOptions): Promise<GetRadiusServerProfileResult>
    function getRadiusServerProfileOutput(args: GetRadiusServerProfileOutputArgs, opts?: InvokeOptions): Output<GetRadiusServerProfileResult>
    def get_radius_server_profile(id: Optional[str] = None,
                                  name: Optional[str] = None,
                                  opts: Optional[InvokeOptions] = None) -> GetRadiusServerProfileResult
    def get_radius_server_profile_output(id: Optional[pulumi.Input[str]] = None,
                                  name: Optional[pulumi.Input[str]] = None,
                                  opts: Optional[InvokeOptions] = None) -> Output[GetRadiusServerProfileResult]
    func LookupRadiusServerProfile(ctx *Context, args *LookupRadiusServerProfileArgs, opts ...InvokeOption) (*LookupRadiusServerProfileResult, error)
    func LookupRadiusServerProfileOutput(ctx *Context, args *LookupRadiusServerProfileOutputArgs, opts ...InvokeOption) LookupRadiusServerProfileResultOutput

    > Note: This function is named LookupRadiusServerProfile in the Go SDK.

    public static class GetRadiusServerProfile 
    {
        public static Task<GetRadiusServerProfileResult> InvokeAsync(GetRadiusServerProfileArgs args, InvokeOptions? opts = null)
        public static Output<GetRadiusServerProfileResult> Invoke(GetRadiusServerProfileInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetRadiusServerProfileResult> getRadiusServerProfile(GetRadiusServerProfileArgs args, InvokeOptions options)
    public static Output<GetRadiusServerProfileResult> getRadiusServerProfile(GetRadiusServerProfileArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getRadiusServerProfile:getRadiusServerProfile
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    The UUID of the RADIUS server profile
    Name string
    The name of the RADIUS server profile
    Id string
    The UUID of the RADIUS server profile
    Name string
    The name of the RADIUS server profile
    id String
    The UUID of the RADIUS server profile
    name String
    The name of the RADIUS server profile
    id string
    The UUID of the RADIUS server profile
    name string
    The name of the RADIUS server profile
    id str
    The UUID of the RADIUS server profile
    name str
    The name of the RADIUS server profile
    id String
    The UUID of the RADIUS server profile
    name String
    The name of the RADIUS server profile

    getRadiusServerProfile Result

    The following output properties are available:

    Device string
    The device in which the resource is defined
    Folder string
    Id string
    The UUID of the RADIUS server profile
    Name string
    The name of the RADIUS server profile
    Protocol GetRadiusServerProfileProtocol
    Retries int
    Servers List<GetRadiusServerProfileServer>
    Snippet string
    Tfid string
    Timeout int
    Device string
    The device in which the resource is defined
    Folder string
    Id string
    The UUID of the RADIUS server profile
    Name string
    The name of the RADIUS server profile
    Protocol GetRadiusServerProfileProtocol
    Retries int
    Servers []GetRadiusServerProfileServer
    Snippet string
    Tfid string
    Timeout int
    device String
    The device in which the resource is defined
    folder String
    id String
    The UUID of the RADIUS server profile
    name String
    The name of the RADIUS server profile
    protocol GetRadiusServerProfileProtocol
    retries Integer
    servers List<GetRadiusServerProfileServer>
    snippet String
    tfid String
    timeout Integer
    device string
    The device in which the resource is defined
    folder string
    id string
    The UUID of the RADIUS server profile
    name string
    The name of the RADIUS server profile
    protocol GetRadiusServerProfileProtocol
    retries number
    servers GetRadiusServerProfileServer[]
    snippet string
    tfid string
    timeout number
    device str
    The device in which the resource is defined
    folder str
    id str
    The UUID of the RADIUS server profile
    name str
    The name of the RADIUS server profile
    protocol GetRadiusServerProfileProtocol
    retries int
    servers Sequence[GetRadiusServerProfileServer]
    snippet str
    tfid str
    timeout int
    device String
    The device in which the resource is defined
    folder String
    id String
    The UUID of the RADIUS server profile
    name String
    The name of the RADIUS server profile
    protocol Property Map
    retries Number
    servers List<Property Map>
    snippet String
    tfid String
    timeout Number

    Supporting Types

    GetRadiusServerProfileProtocol

    chap Property Map
    C h a p
    eapTtlsWithPap Property Map
    E a p t t l s with p a p
    pap Property Map
    P a p
    peapMschaPv2 Property Map
    P e a p m s c h a pv2
    peapWithGtc Property Map
    P e a p with g t c

    GetRadiusServerProfileProtocolEapTtlsWithPap

    AnonOuterId bool
    Anon outer id
    RadiusCertProfile string
    Radius cert profile
    AnonOuterId bool
    Anon outer id
    RadiusCertProfile string
    Radius cert profile
    anonOuterId Boolean
    Anon outer id
    radiusCertProfile String
    Radius cert profile
    anonOuterId boolean
    Anon outer id
    radiusCertProfile string
    Radius cert profile
    anon_outer_id bool
    Anon outer id
    radius_cert_profile str
    Radius cert profile
    anonOuterId Boolean
    Anon outer id
    radiusCertProfile String
    Radius cert profile

    GetRadiusServerProfileProtocolPeapMschaPv2

    AllowPwdChange bool
    Allow pwd change
    AnonOuterId bool
    Anon outer id
    RadiusCertProfile string
    Radius cert profile
    AllowPwdChange bool
    Allow pwd change
    AnonOuterId bool
    Anon outer id
    RadiusCertProfile string
    Radius cert profile
    allowPwdChange Boolean
    Allow pwd change
    anonOuterId Boolean
    Anon outer id
    radiusCertProfile String
    Radius cert profile
    allowPwdChange boolean
    Allow pwd change
    anonOuterId boolean
    Anon outer id
    radiusCertProfile string
    Radius cert profile
    allow_pwd_change bool
    Allow pwd change
    anon_outer_id bool
    Anon outer id
    radius_cert_profile str
    Radius cert profile
    allowPwdChange Boolean
    Allow pwd change
    anonOuterId Boolean
    Anon outer id
    radiusCertProfile String
    Radius cert profile

    GetRadiusServerProfileProtocolPeapWithGtc

    AnonOuterId bool
    Anon outer id
    RadiusCertProfile string
    Radius cert profile
    AnonOuterId bool
    Anon outer id
    RadiusCertProfile string
    Radius cert profile
    anonOuterId Boolean
    Anon outer id
    radiusCertProfile String
    Radius cert profile
    anonOuterId boolean
    Anon outer id
    radiusCertProfile string
    Radius cert profile
    anon_outer_id bool
    Anon outer id
    radius_cert_profile str
    Radius cert profile
    anonOuterId Boolean
    Anon outer id
    radiusCertProfile String
    Radius cert profile

    GetRadiusServerProfileServer

    IpAddress string
    The IP address of the RADIUS server
    Name string
    The name of the RADIUS server
    Port int
    The RADIUS server port
    Secret string
    The RADIUS secret
    IpAddress string
    The IP address of the RADIUS server
    Name string
    The name of the RADIUS server
    Port int
    The RADIUS server port
    Secret string
    The RADIUS secret
    ipAddress String
    The IP address of the RADIUS server
    name String
    The name of the RADIUS server
    port Integer
    The RADIUS server port
    secret String
    The RADIUS secret
    ipAddress string
    The IP address of the RADIUS server
    name string
    The name of the RADIUS server
    port number
    The RADIUS server port
    secret string
    The RADIUS secret
    ip_address str
    The IP address of the RADIUS server
    name str
    The name of the RADIUS server
    port int
    The RADIUS server port
    secret str
    The RADIUS secret
    ipAddress String
    The IP address of the RADIUS server
    name String
    The name of the RADIUS server
    port Number
    The RADIUS server port
    secret String
    The RADIUS secret

    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 v1.0.1 published on Wednesday, Nov 26, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate