| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::StorageGateway::DescribeChapCredentialsOutput; |
|
3
|
1
|
|
|
1
|
|
504
|
use Moose; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
|
|
has ChapCredentials => (is => 'ro', isa => 'ArrayRef[Paws::StorageGateway::ChapInfo]'); |
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Paws::StorageGateway::DescribeChapCredentialsOutput |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head2 ChapCredentials => ArrayRef[L<Paws::StorageGateway::ChapInfo>] |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
An array of ChapInfo objects that represent CHAP credentials. Each |
|
20
|
|
|
|
|
|
|
object in the array contains CHAP credential information for one |
|
21
|
|
|
|
|
|
|
target-initiator pair. If no CHAP credentials are set, an empty array |
|
22
|
|
|
|
|
|
|
is returned. CHAP credential information is provided in a JSON object |
|
23
|
|
|
|
|
|
|
with the following fields: |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=over |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=item * |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
B<InitiatorName>: The iSCSI initiator that connects to the target. |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=item * |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
B<SecretToAuthenticateInitiator>: The secret key that the initiator |
|
34
|
|
|
|
|
|
|
(for example, the Windows client) must provide to participate in mutual |
|
35
|
|
|
|
|
|
|
CHAP with the target. |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=item * |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
B<SecretToAuthenticateTarget>: The secret key that the target must |
|
40
|
|
|
|
|
|
|
provide to participate in mutual CHAP with the initiator (e.g. Windows |
|
41
|
|
|
|
|
|
|
client). |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=item * |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
B<TargetARN>: The Amazon Resource Name (ARN) of the storage volume. |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=back |
|
48
|
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 _request_id => Str |
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=cut |
|
55
|
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
1; |