1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. RadiusServerProfile
Strata Cloud Manager v0.3.1 published on Thursday, Mar 13, 2025 by Pulumi

scm.RadiusServerProfile

Explore with Pulumi AI

Retrieves a config item.

Example Usage

Coming soon!
Coming soon!
Coming soon!
Coming soon!
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 example = new RadiusServerProfile("example", RadiusServerProfileArgs.builder()
            .folder("Shared")
            .retries(5)
            .timeout(7)
            .protocol(RadiusServerProfileProtocolArgs.builder()
                .chap(true)
                .build())
            .servers(RadiusServerProfileServerArgs.builder()
                .name("server1")
                .ip_address("11.2.3.5")
                .secret("secret")
                .build())
            .build());

    }
}
Copy
resources:
  example:
    type: scm:RadiusServerProfile
    properties:
      folder: Shared
      retries: 5
      timeout: 7
      protocol:
        chap: true
      servers:
        - name: server1
          ip_address: 11.2.3.5
          secret: secret
Copy

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

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:

Servers This property is required. List<RadiusServerProfileServer>
The Servers param.
Device string
The Device param.
Folder string
The Folder param.
Protocol RadiusServerProfileProtocol
The Protocol param.
Retries int
The Retries param. Value must be between 1 and 5.
Snippet string
The Snippet param.
Timeout int
The Timeout param. Value must be between 1 and 120.
Servers This property is required. []RadiusServerProfileServerArgs
The Servers param.
Device string
The Device param.
Folder string
The Folder param.
Protocol RadiusServerProfileProtocolArgs
The Protocol param.
Retries int
The Retries param. Value must be between 1 and 5.
Snippet string
The Snippet param.
Timeout int
The Timeout param. Value must be between 1 and 120.
servers This property is required. List<RadiusServerProfileServer>
The Servers param.
device String
The Device param.
folder String
The Folder param.
protocol RadiusServerProfileProtocol
The Protocol param.
retries Integer
The Retries param. Value must be between 1 and 5.
snippet String
The Snippet param.
timeout Integer
The Timeout param. Value must be between 1 and 120.
servers This property is required. RadiusServerProfileServer[]
The Servers param.
device string
The Device param.
folder string
The Folder param.
protocol RadiusServerProfileProtocol
The Protocol param.
retries number
The Retries param. Value must be between 1 and 5.
snippet string
The Snippet param.
timeout number
The Timeout param. Value must be between 1 and 120.
servers This property is required. Sequence[RadiusServerProfileServerArgs]
The Servers param.
device str
The Device param.
folder str
The Folder param.
protocol RadiusServerProfileProtocolArgs
The Protocol param.
retries int
The Retries param. Value must be between 1 and 5.
snippet str
The Snippet param.
timeout int
The Timeout param. Value must be between 1 and 120.
servers This property is required. List<Property Map>
The Servers param.
device String
The Device param.
folder String
The Folder param.
protocol Property Map
The Protocol param.
retries Number
The Retries param. Value must be between 1 and 5.
snippet String
The Snippet param.
timeout Number
The Timeout param. Value must be between 1 and 120.

Outputs

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

EncryptedValues Dictionary<string, string>
(Internal use) Encrypted values returned from the API.
Id string
The provider-assigned unique ID for this managed resource.
Tfid string
EncryptedValues map[string]string
(Internal use) Encrypted values returned from the API.
Id string
The provider-assigned unique ID for this managed resource.
Tfid string
encryptedValues Map<String,String>
(Internal use) Encrypted values returned from the API.
id String
The provider-assigned unique ID for this managed resource.
tfid String
encryptedValues {[key: string]: string}
(Internal use) Encrypted values returned from the API.
id string
The provider-assigned unique ID for this managed resource.
tfid string
encrypted_values Mapping[str, str]
(Internal use) Encrypted values returned from the API.
id str
The provider-assigned unique ID for this managed resource.
tfid str
encryptedValues Map<String>
(Internal use) Encrypted values returned from the API.
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,
        encrypted_values: Optional[Mapping[str, str]] = None,
        folder: 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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 param.
EncryptedValues Dictionary<string, string>
(Internal use) Encrypted values returned from the API.
Folder string
The Folder param.
Protocol RadiusServerProfileProtocol
The Protocol param.
Retries int
The Retries param. Value must be between 1 and 5.
Servers List<RadiusServerProfileServer>
The Servers param.
Snippet string
The Snippet param.
Tfid string
Timeout int
The Timeout param. Value must be between 1 and 120.
Device string
The Device param.
EncryptedValues map[string]string
(Internal use) Encrypted values returned from the API.
Folder string
The Folder param.
Protocol RadiusServerProfileProtocolArgs
The Protocol param.
Retries int
The Retries param. Value must be between 1 and 5.
Servers []RadiusServerProfileServerArgs
The Servers param.
Snippet string
The Snippet param.
Tfid string
Timeout int
The Timeout param. Value must be between 1 and 120.
device String
The Device param.
encryptedValues Map<String,String>
(Internal use) Encrypted values returned from the API.
folder String
The Folder param.
protocol RadiusServerProfileProtocol
The Protocol param.
retries Integer
The Retries param. Value must be between 1 and 5.
servers List<RadiusServerProfileServer>
The Servers param.
snippet String
The Snippet param.
tfid String
timeout Integer
The Timeout param. Value must be between 1 and 120.
device string
The Device param.
encryptedValues {[key: string]: string}
(Internal use) Encrypted values returned from the API.
folder string
The Folder param.
protocol RadiusServerProfileProtocol
The Protocol param.
retries number
The Retries param. Value must be between 1 and 5.
servers RadiusServerProfileServer[]
The Servers param.
snippet string
The Snippet param.
tfid string
timeout number
The Timeout param. Value must be between 1 and 120.
device str
The Device param.
encrypted_values Mapping[str, str]
(Internal use) Encrypted values returned from the API.
folder str
The Folder param.
protocol RadiusServerProfileProtocolArgs
The Protocol param.
retries int
The Retries param. Value must be between 1 and 5.
servers Sequence[RadiusServerProfileServerArgs]
The Servers param.
snippet str
The Snippet param.
tfid str
timeout int
The Timeout param. Value must be between 1 and 120.
device String
The Device param.
encryptedValues Map<String>
(Internal use) Encrypted values returned from the API.
folder String
The Folder param.
protocol Property Map
The Protocol param.
retries Number
The Retries param. Value must be between 1 and 5.
servers List<Property Map>
The Servers param.
snippet String
The Snippet param.
tfid String
timeout Number
The Timeout param. Value must be between 1 and 120.

Supporting Types

RadiusServerProfileProtocol
, RadiusServerProfileProtocolArgs

Chap bool
The Chap param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
EapTtlsWithPap RadiusServerProfileProtocolEapTtlsWithPap
The EapTtlsWithPap param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
Pap bool
The Pap param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
PeapMschapV2 RadiusServerProfileProtocolPeapMschapV2
The PeapMschapV2 param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
PeapWithGtc RadiusServerProfileProtocolPeapWithGtc
The PeapWithGtc param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
Chap bool
The Chap param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
EapTtlsWithPap RadiusServerProfileProtocolEapTtlsWithPap
The EapTtlsWithPap param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
Pap bool
The Pap param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
PeapMschapV2 RadiusServerProfileProtocolPeapMschapV2
The PeapMschapV2 param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
PeapWithGtc RadiusServerProfileProtocolPeapWithGtc
The PeapWithGtc param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
chap Boolean
The Chap param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
eapTtlsWithPap RadiusServerProfileProtocolEapTtlsWithPap
The EapTtlsWithPap param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
pap Boolean
The Pap param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
peapMschapV2 RadiusServerProfileProtocolPeapMschapV2
The PeapMschapV2 param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
peapWithGtc RadiusServerProfileProtocolPeapWithGtc
The PeapWithGtc param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
chap boolean
The Chap param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
eapTtlsWithPap RadiusServerProfileProtocolEapTtlsWithPap
The EapTtlsWithPap param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
pap boolean
The Pap param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
peapMschapV2 RadiusServerProfileProtocolPeapMschapV2
The PeapMschapV2 param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
peapWithGtc RadiusServerProfileProtocolPeapWithGtc
The PeapWithGtc param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
chap bool
The Chap param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
eap_ttls_with_pap RadiusServerProfileProtocolEapTtlsWithPap
The EapTtlsWithPap param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
pap bool
The Pap param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
peap_mschap_v2 RadiusServerProfileProtocolPeapMschapV2
The PeapMschapV2 param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
peap_with_gtc RadiusServerProfileProtocolPeapWithGtc
The PeapWithGtc param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
chap Boolean
The Chap param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
eapTtlsWithPap Property Map
The EapTtlsWithPap param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
pap Boolean
The Pap param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
peapMschapV2 Property Map
The PeapMschapV2 param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC
peapWithGtc Property Map
The PeapWithGtc param. Ensure that only one of the following is specified: CHAP, EAP_TTLS_with_PAP, PAP, PEAP_MSCHAPv2, PEAP_with_GTC

RadiusServerProfileProtocolEapTtlsWithPap
, RadiusServerProfileProtocolEapTtlsWithPapArgs

AnonOuterId bool
The AnonOuterId param.
RadiusCertProfile string
The RadiusCertProfile param.
AnonOuterId bool
The AnonOuterId param.
RadiusCertProfile string
The RadiusCertProfile param.
anonOuterId Boolean
The AnonOuterId param.
radiusCertProfile String
The RadiusCertProfile param.
anonOuterId boolean
The AnonOuterId param.
radiusCertProfile string
The RadiusCertProfile param.
anon_outer_id bool
The AnonOuterId param.
radius_cert_profile str
The RadiusCertProfile param.
anonOuterId Boolean
The AnonOuterId param.
radiusCertProfile String
The RadiusCertProfile param.

RadiusServerProfileProtocolPeapMschapV2
, RadiusServerProfileProtocolPeapMschapV2Args

AllowPwdChange bool
The AllowPwdChange param.
AnonOuterId bool
The AnonOuterId param.
RadiusCertProfile string
The RadiusCertProfile param.
AllowPwdChange bool
The AllowPwdChange param.
AnonOuterId bool
The AnonOuterId param.
RadiusCertProfile string
The RadiusCertProfile param.
allowPwdChange Boolean
The AllowPwdChange param.
anonOuterId Boolean
The AnonOuterId param.
radiusCertProfile String
The RadiusCertProfile param.
allowPwdChange boolean
The AllowPwdChange param.
anonOuterId boolean
The AnonOuterId param.
radiusCertProfile string
The RadiusCertProfile param.
allow_pwd_change bool
The AllowPwdChange param.
anon_outer_id bool
The AnonOuterId param.
radius_cert_profile str
The RadiusCertProfile param.
allowPwdChange Boolean
The AllowPwdChange param.
anonOuterId Boolean
The AnonOuterId param.
radiusCertProfile String
The RadiusCertProfile param.

RadiusServerProfileProtocolPeapWithGtc
, RadiusServerProfileProtocolPeapWithGtcArgs

AnonOuterId bool
The AnonOuterId param.
RadiusCertProfile string
The RadiusCertProfile param.
AnonOuterId bool
The AnonOuterId param.
RadiusCertProfile string
The RadiusCertProfile param.
anonOuterId Boolean
The AnonOuterId param.
radiusCertProfile String
The RadiusCertProfile param.
anonOuterId boolean
The AnonOuterId param.
radiusCertProfile string
The RadiusCertProfile param.
anon_outer_id bool
The AnonOuterId param.
radius_cert_profile str
The RadiusCertProfile param.
anonOuterId Boolean
The AnonOuterId param.
radiusCertProfile String
The RadiusCertProfile param.

RadiusServerProfileServer
, RadiusServerProfileServerArgs

IpAddress string
The IpAddress param.
Name string
The Name param.
Port int
The Port param. Value must be between 1 and 65535.
Secret string
The Secret param. String length must not exceed 64 characters.
IpAddress string
The IpAddress param.
Name string
The Name param.
Port int
The Port param. Value must be between 1 and 65535.
Secret string
The Secret param. String length must not exceed 64 characters.
ipAddress String
The IpAddress param.
name String
The Name param.
port Integer
The Port param. Value must be between 1 and 65535.
secret String
The Secret param. String length must not exceed 64 characters.
ipAddress string
The IpAddress param.
name string
The Name param.
port number
The Port param. Value must be between 1 and 65535.
secret string
The Secret param. String length must not exceed 64 characters.
ip_address str
The IpAddress param.
name str
The Name param.
port int
The Port param. Value must be between 1 and 65535.
secret str
The Secret param. String length must not exceed 64 characters.
ipAddress String
The IpAddress param.
name String
The Name param.
port Number
The Port param. Value must be between 1 and 65535.
secret String
The Secret param. String length must not exceed 64 characters.

Package Details

Repository
scm pulumi/pulumi-scm
License
Apache-2.0
Notes
This Pulumi package is based on the scm Terraform Provider.