Strata Cloud Manager v0.1.1 published on Friday, May 31, 2024 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());
}
}
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
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 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()
{
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,
});
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),
})
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());
radius_server_profile_resource = scm.RadiusServerProfile("radiusServerProfileResource",
servers=[scm.RadiusServerProfileServerArgs(
ip_address="string",
name="string",
port=0,
secret="string",
)],
device="string",
folder="string",
protocol=scm.RadiusServerProfileProtocolArgs(
chap=False,
eap_ttls_with_pap=scm.RadiusServerProfileProtocolEapTtlsWithPapArgs(
anon_outer_id=False,
radius_cert_profile="string",
),
pap=False,
peap_mschap_v2=scm.RadiusServerProfileProtocolPeapMschapV2Args(
allow_pwd_change=False,
anon_outer_id=False,
radius_cert_profile="string",
),
peap_with_gtc=scm.RadiusServerProfileProtocolPeapWithGtcArgs(
anon_outer_id=False,
radius_cert_profile="string",
),
),
retries=0,
snippet="string",
timeout=0)
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,
});
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
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
The RadiusServerProfile resource accepts the following input properties:
- Servers
List<Radius
Server Profile Server> - The Servers param.
- Device string
- The Device param.
- Folder string
- The Folder param.
- Protocol
Radius
Server Profile Protocol - 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
[]Radius
Server Profile Server Args - The Servers param.
- Device string
- The Device param.
- Folder string
- The Folder param.
- Protocol
Radius
Server Profile Protocol Args - 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
List<Radius
Server Profile Server> - The Servers param.
- device String
- The Device param.
- folder String
- The Folder param.
- protocol
Radius
Server Profile Protocol - 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
Radius
Server Profile Server[] - The Servers param.
- device string
- The Device param.
- folder string
- The Folder param.
- protocol
Radius
Server Profile Protocol - 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
Sequence[Radius
Server Profile Server Args] - The Servers param.
- device str
- The Device param.
- folder str
- The Folder param.
- protocol
Radius
Server Profile Protocol Args - 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 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:
- Encrypted
Values Dictionary<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 map[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 Map<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 {[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
- encrypted
Values 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)
Resource lookup is not supported in YAML
- 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.
- Device string
- The Device param.
- Encrypted
Values Dictionary<string, string> - (Internal use) Encrypted values returned from the API.
- Folder string
- The Folder param.
- Protocol
Radius
Server Profile Protocol - The Protocol param.
- Retries int
- The Retries param. Value must be between 1 and 5.
- Servers
List<Radius
Server Profile Server> - 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.
- Encrypted
Values map[string]string - (Internal use) Encrypted values returned from the API.
- Folder string
- The Folder param.
- Protocol
Radius
Server Profile Protocol Args - The Protocol param.
- Retries int
- The Retries param. Value must be between 1 and 5.
- Servers
[]Radius
Server Profile Server Args - 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.
- encrypted
Values Map<String,String> - (Internal use) Encrypted values returned from the API.
- folder String
- The Folder param.
- protocol
Radius
Server Profile Protocol - The Protocol param.
- retries Integer
- The Retries param. Value must be between 1 and 5.
- servers
List<Radius
Server Profile Server> - 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.
- encrypted
Values {[key: string]: string} - (Internal use) Encrypted values returned from the API.
- folder string
- The Folder param.
- protocol
Radius
Server Profile Protocol - The Protocol param.
- retries number
- The Retries param. Value must be between 1 and 5.
- servers
Radius
Server Profile Server[] - 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
Radius
Server Profile Protocol Args - The Protocol param.
- retries int
- The Retries param. Value must be between 1 and 5.
- servers
Sequence[Radius
Server Profile Server Args] - 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.
- encrypted
Values 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
- Eap
Ttls RadiusWith Pap Server Profile Protocol Eap Ttls With Pap - 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 RadiusV2 Server Profile Protocol Peap Mschap V2 - 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 RadiusGtc Server Profile Protocol Peap With Gtc - 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 RadiusWith Pap Server Profile Protocol Eap Ttls With Pap - 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 RadiusV2 Server Profile Protocol Peap Mschap V2 - 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 RadiusGtc Server Profile Protocol Peap With Gtc - 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
- eap
Ttls RadiusWith Pap Server Profile Protocol Eap Ttls With Pap - 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
- peap
Mschap RadiusV2 Server Profile Protocol Peap Mschap V2 - 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 RadiusGtc Server Profile Protocol Peap With Gtc - 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
- eap
Ttls RadiusWith Pap Server Profile Protocol Eap Ttls With Pap - 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
- peap
Mschap RadiusV2 Server Profile Protocol Peap Mschap V2 - 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 RadiusGtc Server Profile Protocol Peap With Gtc - 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_ Radiuswith_ pap Server Profile Protocol Eap Ttls With Pap - 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_ Radiusv2 Server Profile Protocol Peap Mschap V2 - 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_ Radiusgtc Server Profile Protocol Peap With Gtc - 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
- eap
Ttls Property MapWith Pap - 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
- peap
Mschap Property MapV2 - 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 Property MapGtc - 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
- Anon
Outer boolId - The AnonOuterId param.
- Radius
Cert stringProfile - The RadiusCertProfile param.
- Anon
Outer boolId - The AnonOuterId param.
- Radius
Cert stringProfile - The RadiusCertProfile param.
- anon
Outer BooleanId - The AnonOuterId param.
- radius
Cert StringProfile - The RadiusCertProfile param.
- anon
Outer booleanId - The AnonOuterId param.
- radius
Cert stringProfile - The RadiusCertProfile param.
- anon_
outer_ boolid - The AnonOuterId param.
- radius_
cert_ strprofile - The RadiusCertProfile param.
- anon
Outer BooleanId - The AnonOuterId param.
- radius
Cert StringProfile - The RadiusCertProfile param.
RadiusServerProfileProtocolPeapMschapV2, RadiusServerProfileProtocolPeapMschapV2Args
- Allow
Pwd boolChange - The AllowPwdChange param.
- Anon
Outer boolId - The AnonOuterId param.
- Radius
Cert stringProfile - The RadiusCertProfile param.
- Allow
Pwd boolChange - The AllowPwdChange param.
- Anon
Outer boolId - The AnonOuterId param.
- Radius
Cert stringProfile - The RadiusCertProfile param.
- allow
Pwd BooleanChange - The AllowPwdChange param.
- anon
Outer BooleanId - The AnonOuterId param.
- radius
Cert StringProfile - The RadiusCertProfile param.
- allow
Pwd booleanChange - The AllowPwdChange param.
- anon
Outer booleanId - The AnonOuterId param.
- radius
Cert stringProfile - The RadiusCertProfile param.
- allow_
pwd_ boolchange - The AllowPwdChange param.
- anon_
outer_ boolid - The AnonOuterId param.
- radius_
cert_ strprofile - The RadiusCertProfile param.
- allow
Pwd BooleanChange - The AllowPwdChange param.
- anon
Outer BooleanId - The AnonOuterId param.
- radius
Cert StringProfile - The RadiusCertProfile param.
RadiusServerProfileProtocolPeapWithGtc, RadiusServerProfileProtocolPeapWithGtcArgs
- Anon
Outer boolId - The AnonOuterId param.
- Radius
Cert stringProfile - The RadiusCertProfile param.
- Anon
Outer boolId - The AnonOuterId param.
- Radius
Cert stringProfile - The RadiusCertProfile param.
- anon
Outer BooleanId - The AnonOuterId param.
- radius
Cert StringProfile - The RadiusCertProfile param.
- anon
Outer booleanId - The AnonOuterId param.
- radius
Cert stringProfile - The RadiusCertProfile param.
- anon_
outer_ boolid - The AnonOuterId param.
- radius_
cert_ strprofile - The RadiusCertProfile param.
- anon
Outer BooleanId - The AnonOuterId param.
- radius
Cert StringProfile - The RadiusCertProfile param.
RadiusServerProfileServer, RadiusServerProfileServerArgs
- 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.
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scm
Terraform Provider.