1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. RadiusServerProfile
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

    RadiusServerProfile resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    const chapRadiusProfile = new scm.RadiusServerProfile("chap_radius_profile", {
        name: "CHAP_only_rsp_1",
        folder: "All",
        retries: 5,
        timeout: 60,
        protocol: {
            cHAP: {},
        },
        servers: [{
            name: "Chap_Server_Primary",
            ipAddress: "10.1.1.10",
            port: 1812,
            secret: "-AQ==lhyuV6U/j9Trb9JL9L0UoBecg9Y=kTOWntGhZ1KFyLD+etKQ3g==",
        }],
    });
    const papRadiusProfile = new scm.RadiusServerProfile("pap_radius_profile", {
        name: "pap_only_rsp_1",
        folder: "All",
        retries: 5,
        timeout: 60,
        protocol: {
            pAP: {},
        },
        servers: [{
            name: "pap_Server_Primary",
            ipAddress: "10.1.1.10",
            port: 1812,
            secret: "-AQ==lhyuV6U/j9Trb9JL9L0UoBecg9Y=kTOWntGhZ1KFyLD+etKQ3g==",
        }],
    });
    
    import pulumi
    import pulumi_scm as scm
    
    chap_radius_profile = scm.RadiusServerProfile("chap_radius_profile",
        name="CHAP_only_rsp_1",
        folder="All",
        retries=5,
        timeout=60,
        protocol={
            "c_hap": {},
        },
        servers=[{
            "name": "Chap_Server_Primary",
            "ip_address": "10.1.1.10",
            "port": 1812,
            "secret": "-AQ==lhyuV6U/j9Trb9JL9L0UoBecg9Y=kTOWntGhZ1KFyLD+etKQ3g==",
        }])
    pap_radius_profile = scm.RadiusServerProfile("pap_radius_profile",
        name="pap_only_rsp_1",
        folder="All",
        retries=5,
        timeout=60,
        protocol={
            "p_ap": {},
        },
        servers=[{
            "name": "pap_Server_Primary",
            "ip_address": "10.1.1.10",
            "port": 1812,
            "secret": "-AQ==lhyuV6U/j9Trb9JL9L0UoBecg9Y=kTOWntGhZ1KFyLD+etKQ3g==",
        }])
    
    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 {
    		_, err := scm.NewRadiusServerProfile(ctx, "chap_radius_profile", &scm.RadiusServerProfileArgs{
    			Name:    pulumi.String("CHAP_only_rsp_1"),
    			Folder:  pulumi.String("All"),
    			Retries: pulumi.Int(5),
    			Timeout: pulumi.Int(60),
    			Protocol: &scm.RadiusServerProfileProtocolArgs{
    				CHAP: &scm.RadiusServerProfileProtocolChapArgs{},
    			},
    			Servers: scm.RadiusServerProfileServerArray{
    				&scm.RadiusServerProfileServerArgs{
    					Name:      pulumi.String("Chap_Server_Primary"),
    					IpAddress: pulumi.String("10.1.1.10"),
    					Port:      pulumi.Int(1812),
    					Secret:    pulumi.String("-AQ==lhyuV6U/j9Trb9JL9L0UoBecg9Y=kTOWntGhZ1KFyLD+etKQ3g=="),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = scm.NewRadiusServerProfile(ctx, "pap_radius_profile", &scm.RadiusServerProfileArgs{
    			Name:    pulumi.String("pap_only_rsp_1"),
    			Folder:  pulumi.String("All"),
    			Retries: pulumi.Int(5),
    			Timeout: pulumi.Int(60),
    			Protocol: &scm.RadiusServerProfileProtocolArgs{
    				PAP: &scm.RadiusServerProfileProtocolPapArgs{},
    			},
    			Servers: scm.RadiusServerProfileServerArray{
    				&scm.RadiusServerProfileServerArgs{
    					Name:      pulumi.String("pap_Server_Primary"),
    					IpAddress: pulumi.String("10.1.1.10"),
    					Port:      pulumi.Int(1812),
    					Secret:    pulumi.String("-AQ==lhyuV6U/j9Trb9JL9L0UoBecg9Y=kTOWntGhZ1KFyLD+etKQ3g=="),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        var chapRadiusProfile = new Scm.RadiusServerProfile("chap_radius_profile", new()
        {
            Name = "CHAP_only_rsp_1",
            Folder = "All",
            Retries = 5,
            Timeout = 60,
            Protocol = new Scm.Inputs.RadiusServerProfileProtocolArgs
            {
                CHAP = null,
            },
            Servers = new[]
            {
                new Scm.Inputs.RadiusServerProfileServerArgs
                {
                    Name = "Chap_Server_Primary",
                    IpAddress = "10.1.1.10",
                    Port = 1812,
                    Secret = "-AQ==lhyuV6U/j9Trb9JL9L0UoBecg9Y=kTOWntGhZ1KFyLD+etKQ3g==",
                },
            },
        });
    
        var papRadiusProfile = new Scm.RadiusServerProfile("pap_radius_profile", new()
        {
            Name = "pap_only_rsp_1",
            Folder = "All",
            Retries = 5,
            Timeout = 60,
            Protocol = new Scm.Inputs.RadiusServerProfileProtocolArgs
            {
                PAP = null,
            },
            Servers = new[]
            {
                new Scm.Inputs.RadiusServerProfileServerArgs
                {
                    Name = "pap_Server_Primary",
                    IpAddress = "10.1.1.10",
                    Port = 1812,
                    Secret = "-AQ==lhyuV6U/j9Trb9JL9L0UoBecg9Y=kTOWntGhZ1KFyLD+etKQ3g==",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.RadiusServerProfile;
    import com.pulumi.scm.RadiusServerProfileArgs;
    import com.pulumi.scm.inputs.RadiusServerProfileProtocolArgs;
    import com.pulumi.scm.inputs.RadiusServerProfileServerArgs;
    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 chapRadiusProfile = new RadiusServerProfile("chapRadiusProfile", RadiusServerProfileArgs.builder()
                .name("CHAP_only_rsp_1")
                .folder("All")
                .retries(5)
                .timeout(60)
                .protocol(RadiusServerProfileProtocolArgs.builder()
                    .cHAP(RadiusServerProfileProtocolChapArgs.builder()
                        .build())
                    .build())
                .servers(RadiusServerProfileServerArgs.builder()
                    .name("Chap_Server_Primary")
                    .ipAddress("10.1.1.10")
                    .port(1812)
                    .secret("-AQ==lhyuV6U/j9Trb9JL9L0UoBecg9Y=kTOWntGhZ1KFyLD+etKQ3g==")
                    .build())
                .build());
    
            var papRadiusProfile = new RadiusServerProfile("papRadiusProfile", RadiusServerProfileArgs.builder()
                .name("pap_only_rsp_1")
                .folder("All")
                .retries(5)
                .timeout(60)
                .protocol(RadiusServerProfileProtocolArgs.builder()
                    .pAP(RadiusServerProfileProtocolPapArgs.builder()
                        .build())
                    .build())
                .servers(RadiusServerProfileServerArgs.builder()
                    .name("pap_Server_Primary")
                    .ipAddress("10.1.1.10")
                    .port(1812)
                    .secret("-AQ==lhyuV6U/j9Trb9JL9L0UoBecg9Y=kTOWntGhZ1KFyLD+etKQ3g==")
                    .build())
                .build());
    
        }
    }
    
    resources:
      chapRadiusProfile:
        type: scm:RadiusServerProfile
        name: chap_radius_profile
        properties:
          name: CHAP_only_rsp_1
          folder: All
          retries: 5
          timeout: 60
          protocol:
            cHAP: {}
          servers:
            - name: Chap_Server_Primary
              ipAddress: 10.1.1.10
              port: 1812
              secret: -AQ==lhyuV6U/j9Trb9JL9L0UoBecg9Y=kTOWntGhZ1KFyLD+etKQ3g==
      papRadiusProfile:
        type: scm:RadiusServerProfile
        name: pap_radius_profile
        properties:
          name: pap_only_rsp_1
          folder: All
          retries: 5
          timeout: 60
          protocol:
            pAP: {}
          servers:
            - name: pap_Server_Primary
              ipAddress: 10.1.1.10
              port: 1812
              secret: -AQ==lhyuV6U/j9Trb9JL9L0UoBecg9Y=kTOWntGhZ1KFyLD+etKQ3g==
    

    Create RadiusServerProfile Resource

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

    Constructor syntax

    new RadiusServerProfile(name: string, args: RadiusServerProfileArgs, opts?: CustomResourceOptions);
    @overload
    def RadiusServerProfile(resource_name: str,
                            args: RadiusServerProfileArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def RadiusServerProfile(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            protocol: Optional[RadiusServerProfileProtocolArgs] = None,
                            servers: Optional[Sequence[RadiusServerProfileServerArgs]] = None,
                            device: Optional[str] = None,
                            folder: Optional[str] = None,
                            name: Optional[str] = None,
                            retries: Optional[int] = None,
                            snippet: Optional[str] = None,
                            timeout: Optional[int] = None)
    func NewRadiusServerProfile(ctx *Context, name string, args RadiusServerProfileArgs, opts ...ResourceOption) (*RadiusServerProfile, error)
    public RadiusServerProfile(string name, RadiusServerProfileArgs args, CustomResourceOptions? opts = null)
    public RadiusServerProfile(String name, RadiusServerProfileArgs args)
    public RadiusServerProfile(String name, RadiusServerProfileArgs args, CustomResourceOptions options)
    
    type: scm:RadiusServerProfile
    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 RadiusServerProfileArgs
    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 RadiusServerProfileArgs
    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 RadiusServerProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RadiusServerProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RadiusServerProfileArgs
    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 radiusServerProfileResource = new Scm.RadiusServerProfile("radiusServerProfileResource", new()
    {
        Protocol = new Scm.Inputs.RadiusServerProfileProtocolArgs
        {
            Chap = null,
            EapTtlsWithPap = new Scm.Inputs.RadiusServerProfileProtocolEapTtlsWithPapArgs
            {
                AnonOuterId = false,
                RadiusCertProfile = "string",
            },
            Pap = null,
            PeapMschaPv2 = new Scm.Inputs.RadiusServerProfileProtocolPeapMschaPv2Args
            {
                AllowPwdChange = false,
                AnonOuterId = false,
                RadiusCertProfile = "string",
            },
            PeapWithGtc = new Scm.Inputs.RadiusServerProfileProtocolPeapWithGtcArgs
            {
                AnonOuterId = false,
                RadiusCertProfile = "string",
            },
        },
        Servers = new[]
        {
            new Scm.Inputs.RadiusServerProfileServerArgs
            {
                IpAddress = "string",
                Name = "string",
                Port = 0,
                Secret = "string",
            },
        },
        Device = "string",
        Folder = "string",
        Name = "string",
        Retries = 0,
        Snippet = "string",
        Timeout = 0,
    });
    
    example, err := scm.NewRadiusServerProfile(ctx, "radiusServerProfileResource", &scm.RadiusServerProfileArgs{
    	Protocol: &scm.RadiusServerProfileProtocolArgs{
    		Chap: &scm.RadiusServerProfileProtocolChapArgs{},
    		EapTtlsWithPap: &scm.RadiusServerProfileProtocolEapTtlsWithPapArgs{
    			AnonOuterId:       pulumi.Bool(false),
    			RadiusCertProfile: pulumi.String("string"),
    		},
    		Pap: &scm.RadiusServerProfileProtocolPapArgs{},
    		PeapMschaPv2: &scm.RadiusServerProfileProtocolPeapMschaPv2Args{
    			AllowPwdChange:    pulumi.Bool(false),
    			AnonOuterId:       pulumi.Bool(false),
    			RadiusCertProfile: pulumi.String("string"),
    		},
    		PeapWithGtc: &scm.RadiusServerProfileProtocolPeapWithGtcArgs{
    			AnonOuterId:       pulumi.Bool(false),
    			RadiusCertProfile: pulumi.String("string"),
    		},
    	},
    	Servers: scm.RadiusServerProfileServerArray{
    		&scm.RadiusServerProfileServerArgs{
    			IpAddress: pulumi.String("string"),
    			Name:      pulumi.String("string"),
    			Port:      pulumi.Int(0),
    			Secret:    pulumi.String("string"),
    		},
    	},
    	Device:  pulumi.String("string"),
    	Folder:  pulumi.String("string"),
    	Name:    pulumi.String("string"),
    	Retries: pulumi.Int(0),
    	Snippet: pulumi.String("string"),
    	Timeout: pulumi.Int(0),
    })
    
    var radiusServerProfileResource = new RadiusServerProfile("radiusServerProfileResource", RadiusServerProfileArgs.builder()
        .protocol(RadiusServerProfileProtocolArgs.builder()
            .chap(RadiusServerProfileProtocolChapArgs.builder()
                .build())
            .eapTtlsWithPap(RadiusServerProfileProtocolEapTtlsWithPapArgs.builder()
                .anonOuterId(false)
                .radiusCertProfile("string")
                .build())
            .pap(RadiusServerProfileProtocolPapArgs.builder()
                .build())
            .peapMschaPv2(RadiusServerProfileProtocolPeapMschaPv2Args.builder()
                .allowPwdChange(false)
                .anonOuterId(false)
                .radiusCertProfile("string")
                .build())
            .peapWithGtc(RadiusServerProfileProtocolPeapWithGtcArgs.builder()
                .anonOuterId(false)
                .radiusCertProfile("string")
                .build())
            .build())
        .servers(RadiusServerProfileServerArgs.builder()
            .ipAddress("string")
            .name("string")
            .port(0)
            .secret("string")
            .build())
        .device("string")
        .folder("string")
        .name("string")
        .retries(0)
        .snippet("string")
        .timeout(0)
        .build());
    
    radius_server_profile_resource = scm.RadiusServerProfile("radiusServerProfileResource",
        protocol={
            "chap": {},
            "eap_ttls_with_pap": {
                "anon_outer_id": False,
                "radius_cert_profile": "string",
            },
            "pap": {},
            "peap_mscha_pv2": {
                "allow_pwd_change": False,
                "anon_outer_id": False,
                "radius_cert_profile": "string",
            },
            "peap_with_gtc": {
                "anon_outer_id": False,
                "radius_cert_profile": "string",
            },
        },
        servers=[{
            "ip_address": "string",
            "name": "string",
            "port": 0,
            "secret": "string",
        }],
        device="string",
        folder="string",
        name="string",
        retries=0,
        snippet="string",
        timeout=0)
    
    const radiusServerProfileResource = new scm.RadiusServerProfile("radiusServerProfileResource", {
        protocol: {
            chap: {},
            eapTtlsWithPap: {
                anonOuterId: false,
                radiusCertProfile: "string",
            },
            pap: {},
            peapMschaPv2: {
                allowPwdChange: false,
                anonOuterId: false,
                radiusCertProfile: "string",
            },
            peapWithGtc: {
                anonOuterId: false,
                radiusCertProfile: "string",
            },
        },
        servers: [{
            ipAddress: "string",
            name: "string",
            port: 0,
            secret: "string",
        }],
        device: "string",
        folder: "string",
        name: "string",
        retries: 0,
        snippet: "string",
        timeout: 0,
    });
    
    type: scm:RadiusServerProfile
    properties:
        device: string
        folder: string
        name: string
        protocol:
            chap: {}
            eapTtlsWithPap:
                anonOuterId: false
                radiusCertProfile: string
            pap: {}
            peapMschaPv2:
                allowPwdChange: false
                anonOuterId: false
                radiusCertProfile: string
            peapWithGtc:
                anonOuterId: false
                radiusCertProfile: string
        retries: 0
        servers:
            - ipAddress: string
              name: string
              port: 0
              secret: string
        snippet: string
        timeout: 0
    

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

    Protocol RadiusServerProfileProtocol
    The RADIUS authentication protocol
    Servers List<RadiusServerProfileServer>
    Server
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Name string
    The name of the RADIUS server profile
    Retries int
    The number of RADIUS server retries
    Snippet string
    The snippet in which the resource is defined
    Timeout int
    The RADIUS server authentication timeout (seconds)
    Protocol RadiusServerProfileProtocolArgs
    The RADIUS authentication protocol
    Servers []RadiusServerProfileServerArgs
    Server
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Name string
    The name of the RADIUS server profile
    Retries int
    The number of RADIUS server retries
    Snippet string
    The snippet in which the resource is defined
    Timeout int
    The RADIUS server authentication timeout (seconds)
    protocol RadiusServerProfileProtocol
    The RADIUS authentication protocol
    servers List<RadiusServerProfileServer>
    Server
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    name String
    The name of the RADIUS server profile
    retries Integer
    The number of RADIUS server retries
    snippet String
    The snippet in which the resource is defined
    timeout Integer
    The RADIUS server authentication timeout (seconds)
    protocol RadiusServerProfileProtocol
    The RADIUS authentication protocol
    servers RadiusServerProfileServer[]
    Server
    device string
    The device in which the resource is defined
    folder string
    The folder in which the resource is defined
    name string
    The name of the RADIUS server profile
    retries number
    The number of RADIUS server retries
    snippet string
    The snippet in which the resource is defined
    timeout number
    The RADIUS server authentication timeout (seconds)
    protocol RadiusServerProfileProtocolArgs
    The RADIUS authentication protocol
    servers Sequence[RadiusServerProfileServerArgs]
    Server
    device str
    The device in which the resource is defined
    folder str
    The folder in which the resource is defined
    name str
    The name of the RADIUS server profile
    retries int
    The number of RADIUS server retries
    snippet str
    The snippet in which the resource is defined
    timeout int
    The RADIUS server authentication timeout (seconds)
    protocol Property Map
    The RADIUS authentication protocol
    servers List<Property Map>
    Server
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    name String
    The name of the RADIUS server profile
    retries Number
    The number of RADIUS server retries
    snippet String
    The snippet in which the resource is defined
    timeout Number
    The RADIUS server authentication timeout (seconds)

    Outputs

    All input properties are implicitly available as output properties. Additionally, the RadiusServerProfile 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 RadiusServerProfile Resource

    Get an existing RadiusServerProfile 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?: RadiusServerProfileState, opts?: CustomResourceOptions): RadiusServerProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            device: Optional[str] = None,
            folder: Optional[str] = None,
            name: Optional[str] = None,
            protocol: Optional[RadiusServerProfileProtocolArgs] = None,
            retries: Optional[int] = None,
            servers: Optional[Sequence[RadiusServerProfileServerArgs]] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None,
            timeout: Optional[int] = None) -> RadiusServerProfile
    func GetRadiusServerProfile(ctx *Context, name string, id IDInput, state *RadiusServerProfileState, opts ...ResourceOption) (*RadiusServerProfile, error)
    public static RadiusServerProfile Get(string name, Input<string> id, RadiusServerProfileState? state, CustomResourceOptions? opts = null)
    public static RadiusServerProfile get(String name, Output<String> id, RadiusServerProfileState state, CustomResourceOptions options)
    resources:  _:    type: scm:RadiusServerProfile    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
    Name string
    The name of the RADIUS server profile
    Protocol RadiusServerProfileProtocol
    The RADIUS authentication protocol
    Retries int
    The number of RADIUS server retries
    Servers List<RadiusServerProfileServer>
    Server
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    Timeout int
    The RADIUS server authentication timeout (seconds)
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Name string
    The name of the RADIUS server profile
    Protocol RadiusServerProfileProtocolArgs
    The RADIUS authentication protocol
    Retries int
    The number of RADIUS server retries
    Servers []RadiusServerProfileServerArgs
    Server
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    Timeout int
    The RADIUS server authentication timeout (seconds)
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    name String
    The name of the RADIUS server profile
    protocol RadiusServerProfileProtocol
    The RADIUS authentication protocol
    retries Integer
    The number of RADIUS server retries
    servers List<RadiusServerProfileServer>
    Server
    snippet String
    The snippet in which the resource is defined
    tfid String
    timeout Integer
    The RADIUS server authentication timeout (seconds)
    device string
    The device in which the resource is defined
    folder string
    The folder in which the resource is defined
    name string
    The name of the RADIUS server profile
    protocol RadiusServerProfileProtocol
    The RADIUS authentication protocol
    retries number
    The number of RADIUS server retries
    servers RadiusServerProfileServer[]
    Server
    snippet string
    The snippet in which the resource is defined
    tfid string
    timeout number
    The RADIUS server authentication timeout (seconds)
    device str
    The device in which the resource is defined
    folder str
    The folder in which the resource is defined
    name str
    The name of the RADIUS server profile
    protocol RadiusServerProfileProtocolArgs
    The RADIUS authentication protocol
    retries int
    The number of RADIUS server retries
    servers Sequence[RadiusServerProfileServerArgs]
    Server
    snippet str
    The snippet in which the resource is defined
    tfid str
    timeout int
    The RADIUS server authentication timeout (seconds)
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    name String
    The name of the RADIUS server profile
    protocol Property Map
    The RADIUS authentication protocol
    retries Number
    The number of RADIUS server retries
    servers List<Property Map>
    Server
    snippet String
    The snippet in which the resource is defined
    tfid String
    timeout Number
    The RADIUS server authentication timeout (seconds)

    Supporting Types

    RadiusServerProfileProtocol, RadiusServerProfileProtocolArgs

    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

    RadiusServerProfileProtocolEapTtlsWithPap, RadiusServerProfileProtocolEapTtlsWithPapArgs

    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

    RadiusServerProfileProtocolPeapMschaPv2, RadiusServerProfileProtocolPeapMschaPv2Args

    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

    RadiusServerProfileProtocolPeapWithGtc, RadiusServerProfileProtocolPeapWithGtcArgs

    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

    RadiusServerProfileServer, RadiusServerProfileServerArgs

    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 v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate