line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::DS::RadiusSettings; |
2
|
1
|
|
|
1
|
|
511
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
3
|
|
|
|
|
|
|
has AuthenticationProtocol => (is => 'ro', isa => 'Str'); |
4
|
|
|
|
|
|
|
has DisplayLabel => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has RadiusPort => (is => 'ro', isa => 'Int'); |
6
|
|
|
|
|
|
|
has RadiusRetries => (is => 'ro', isa => 'Int'); |
7
|
|
|
|
|
|
|
has RadiusServers => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
8
|
|
|
|
|
|
|
has RadiusTimeout => (is => 'ro', isa => 'Int'); |
9
|
|
|
|
|
|
|
has SharedSecret => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
has UseSameUsername => (is => 'ro', isa => 'Bool'); |
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::DS::RadiusSettings |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 USAGE |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
This class represents one of two things: |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
26
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::DS::RadiusSettings object: |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { AuthenticationProtocol => $value, ..., UseSameUsername => $value }); |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head3 Results returned from an API call |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::DS::RadiusSettings object: |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
37
|
|
|
|
|
|
|
$result->Att1->AuthenticationProtocol |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 DESCRIPTION |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
Contains information about a Remote Authentication Dial In User Service |
42
|
|
|
|
|
|
|
(RADIUS) server. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head2 AuthenticationProtocol => Str |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
The protocol specified for your RADIUS endpoints. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head2 DisplayLabel => Str |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
Not currently used. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 RadiusPort => Int |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
The port that your RADIUS server is using for communications. Your |
60
|
|
|
|
|
|
|
on-premises network must allow inbound traffic over this port from the |
61
|
|
|
|
|
|
|
AWS Directory Service servers. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=head2 RadiusRetries => Int |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
The maximum number of times that communication with the RADIUS server |
67
|
|
|
|
|
|
|
is attempted. |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=head2 RadiusServers => ArrayRef[Str|Undef] |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
An array of strings that contains the IP addresses of the RADIUS server |
73
|
|
|
|
|
|
|
endpoints, or the IP addresses of your RADIUS server load balancer. |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=head2 RadiusTimeout => Int |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
The amount of time, in seconds, to wait for the RADIUS server to |
79
|
|
|
|
|
|
|
respond. |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
=head2 SharedSecret => Str |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
Not currently used. |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=head2 UseSameUsername => Bool |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
Not currently used. |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
=head1 SEE ALSO |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::DS> |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
=cut |
104
|
|
|
|
|
|
|
|