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
Radius
Server Profile Protocol - The RADIUS authentication protocol
- Servers
List<Radius
Server Profile Server> - 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
Radius
Server Profile Protocol Args - The RADIUS authentication protocol
- Servers
[]Radius
Server Profile Server Args - 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
Radius
Server Profile Protocol - The RADIUS authentication protocol
- servers
List<Radius
Server Profile Server> - 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
Radius
Server Profile Protocol - The RADIUS authentication protocol
- servers
Radius
Server Profile Server[] - 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
Radius
Server Profile Protocol Args - The RADIUS authentication protocol
- servers
Sequence[Radius
Server Profile Server Args] - 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:
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) -> RadiusServerProfilefunc 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.
- 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
Radius
Server Profile Protocol - The RADIUS authentication protocol
- Retries int
- The number of RADIUS server retries
- Servers
List<Radius
Server Profile Server> - 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
Radius
Server Profile Protocol Args - The RADIUS authentication protocol
- Retries int
- The number of RADIUS server retries
- Servers
[]Radius
Server Profile Server Args - 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
Radius
Server Profile Protocol - The RADIUS authentication protocol
- retries Integer
- The number of RADIUS server retries
- servers
List<Radius
Server Profile Server> - 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
Radius
Server Profile Protocol - The RADIUS authentication protocol
- retries number
- The number of RADIUS server retries
- servers
Radius
Server Profile Server[] - 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
Radius
Server Profile Protocol Args - The RADIUS authentication protocol
- retries int
- The number of RADIUS server retries
- servers
Sequence[Radius
Server Profile Server Args] - 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
Radius
Server Profile Protocol Chap - C h a p
- Eap
Ttls RadiusWith Pap Server Profile Protocol Eap Ttls With Pap - E a p t t l s with p a p
- Pap
Radius
Server Profile Protocol Pap - P a p
- Peap
Mscha RadiusPv2 Server Profile Protocol Peap Mscha Pv2 - P e a p m s c h a pv2
- Peap
With RadiusGtc Server Profile Protocol Peap With Gtc - P e a p with g t c
- Chap
Radius
Server Profile Protocol Chap - C h a p
- Eap
Ttls RadiusWith Pap Server Profile Protocol Eap Ttls With Pap - E a p t t l s with p a p
- Pap
Radius
Server Profile Protocol Pap - P a p
- Peap
Mscha RadiusPv2 Server Profile Protocol Peap Mscha Pv2 - P e a p m s c h a pv2
- Peap
With RadiusGtc Server Profile Protocol Peap With Gtc - P e a p with g t c
- chap
Radius
Server Profile Protocol Chap - C h a p
- eap
Ttls RadiusWith Pap Server Profile Protocol Eap Ttls With Pap - E a p t t l s with p a p
- pap
Radius
Server Profile Protocol Pap - P a p
- peap
Mscha RadiusPv2 Server Profile Protocol Peap Mscha Pv2 - P e a p m s c h a pv2
- peap
With RadiusGtc Server Profile Protocol Peap With Gtc - P e a p with g t c
- chap
Radius
Server Profile Protocol Chap - C h a p
- eap
Ttls RadiusWith Pap Server Profile Protocol Eap Ttls With Pap - E a p t t l s with p a p
- pap
Radius
Server Profile Protocol Pap - P a p
- peap
Mscha RadiusPv2 Server Profile Protocol Peap Mscha Pv2 - P e a p m s c h a pv2
- peap
With RadiusGtc Server Profile Protocol Peap With Gtc - P e a p with g t c
- chap
Radius
Server Profile Protocol Chap - C h a p
- eap_
ttls_ Radiuswith_ pap Server Profile Protocol Eap Ttls With Pap - E a p t t l s with p a p
- pap
Radius
Server Profile Protocol Pap - P a p
- peap_
mscha_ Radiuspv2 Server Profile Protocol Peap Mscha Pv2 - P e a p m s c h a pv2
- peap_
with_ Radiusgtc Server Profile Protocol Peap With Gtc - P e a p with g t c
- chap Property Map
- C h a p
- eap
Ttls Property MapWith Pap - E a p t t l s with p a p
- pap Property Map
- P a p
- peap
Mscha Property MapPv2 - P e a p m s c h a pv2
- peap
With Property MapGtc - P e a p with g t c
RadiusServerProfileProtocolEapTtlsWithPap, RadiusServerProfileProtocolEapTtlsWithPapArgs
- Anon
Outer boolId - Anon outer id
- Radius
Cert stringProfile - Radius cert profile
- Anon
Outer boolId - Anon outer id
- Radius
Cert stringProfile - Radius cert profile
- anon
Outer BooleanId - Anon outer id
- radius
Cert StringProfile - Radius cert profile
- anon
Outer booleanId - Anon outer id
- radius
Cert stringProfile - Radius cert profile
- anon_
outer_ boolid - Anon outer id
- radius_
cert_ strprofile - Radius cert profile
- anon
Outer BooleanId - Anon outer id
- radius
Cert StringProfile - Radius cert profile
RadiusServerProfileProtocolPeapMschaPv2, RadiusServerProfileProtocolPeapMschaPv2Args
- Allow
Pwd boolChange - Allow pwd change
- Anon
Outer boolId - Anon outer id
- Radius
Cert stringProfile - Radius cert profile
- Allow
Pwd boolChange - Allow pwd change
- Anon
Outer boolId - Anon outer id
- Radius
Cert stringProfile - Radius cert profile
- allow
Pwd BooleanChange - Allow pwd change
- anon
Outer BooleanId - Anon outer id
- radius
Cert StringProfile - Radius cert profile
- allow
Pwd booleanChange - Allow pwd change
- anon
Outer booleanId - Anon outer id
- radius
Cert stringProfile - Radius cert profile
- allow_
pwd_ boolchange - Allow pwd change
- anon_
outer_ boolid - Anon outer id
- radius_
cert_ strprofile - Radius cert profile
- allow
Pwd BooleanChange - Allow pwd change
- anon
Outer BooleanId - Anon outer id
- radius
Cert StringProfile - Radius cert profile
RadiusServerProfileProtocolPeapWithGtc, RadiusServerProfileProtocolPeapWithGtcArgs
- Anon
Outer boolId - Anon outer id
- Radius
Cert stringProfile - Radius cert profile
- Anon
Outer boolId - Anon outer id
- Radius
Cert stringProfile - Radius cert profile
- anon
Outer BooleanId - Anon outer id
- radius
Cert StringProfile - Radius cert profile
- anon
Outer booleanId - Anon outer id
- radius
Cert stringProfile - Radius cert profile
- anon_
outer_ boolid - Anon outer id
- radius_
cert_ strprofile - Radius cert profile
- anon
Outer BooleanId - Anon outer id
- radius
Cert StringProfile - Radius cert profile
RadiusServerProfileServer, RadiusServerProfileServerArgs
- 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
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
