File Coverage

blib/lib/Paws/CloudHSM/DescribeHapgResponse.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::CloudHSM::DescribeHapgResponse;
3 1     1   487 use Moose;
  1         3  
  1         8  
4             has HapgArn => (is => 'ro', isa => 'Str');
5             has HapgSerial => (is => 'ro', isa => 'Str');
6             has HsmsLastActionFailed => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
7             has HsmsPendingDeletion => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
8             has HsmsPendingRegistration => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
9             has Label => (is => 'ro', isa => 'Str');
10             has LastModifiedTimestamp => (is => 'ro', isa => 'Str');
11             has PartitionSerialList => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
12             has State => (is => 'ro', isa => 'Str');
13              
14             has _request_id => (is => 'ro', isa => 'Str');
15              
16             ### main pod documentation begin ###
17              
18             =head1 NAME
19              
20             Paws::CloudHSM::DescribeHapgResponse
21              
22             =head1 ATTRIBUTES
23              
24              
25             =head2 HapgArn => Str
26              
27             The ARN of the high-availability partition group.
28              
29              
30             =head2 HapgSerial => Str
31              
32             The serial number of the high-availability partition group.
33              
34              
35             =head2 HsmsLastActionFailed => ArrayRef[Str|Undef]
36              
37              
38              
39              
40             =head2 HsmsPendingDeletion => ArrayRef[Str|Undef]
41              
42              
43              
44              
45             =head2 HsmsPendingRegistration => ArrayRef[Str|Undef]
46              
47              
48              
49              
50             =head2 Label => Str
51              
52             The label for the high-availability partition group.
53              
54              
55             =head2 LastModifiedTimestamp => Str
56              
57             The date and time the high-availability partition group was last
58             modified.
59              
60              
61             =head2 PartitionSerialList => ArrayRef[Str|Undef]
62              
63             The list of partition serial numbers that belong to the
64             high-availability partition group.
65              
66              
67             =head2 State => Str
68              
69             The state of the high-availability partition group.
70              
71             Valid values are: C<"READY">, C<"UPDATING">, C<"DEGRADED">
72             =head2 _request_id => Str
73              
74              
75             =cut
76              
77             1;