File Coverage

blib/lib/Paws/Route53Domains/GetOperationDetailResponse.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::Route53Domains::GetOperationDetailResponse;
3 1     1   501 use Moose;
  1         4  
  1         8  
4             has DomainName => (is => 'ro', isa => 'Str');
5             has Message => (is => 'ro', isa => 'Str');
6             has OperationId => (is => 'ro', isa => 'Str');
7             has Status => (is => 'ro', isa => 'Str');
8             has SubmittedDate => (is => 'ro', isa => 'Str');
9             has Type => (is => 'ro', isa => 'Str');
10              
11             has _request_id => (is => 'ro', isa => 'Str');
12              
13             ### main pod documentation begin ###
14              
15             =head1 NAME
16              
17             Paws::Route53Domains::GetOperationDetailResponse
18              
19             =head1 ATTRIBUTES
20              
21              
22             =head2 DomainName => Str
23              
24             The name of a domain.
25              
26              
27             =head2 Message => Str
28              
29             Detailed information on the status including possible errors.
30              
31              
32             =head2 OperationId => Str
33              
34             The identifier for the operation.
35              
36              
37             =head2 Status => Str
38              
39             The current status of the requested operation in the system.
40              
41             Valid values are: C<"SUBMITTED">, C<"IN_PROGRESS">, C<"ERROR">, C<"SUCCESSFUL">, C<"FAILED">
42             =head2 SubmittedDate => Str
43              
44             The date when the request was submitted.
45              
46              
47             =head2 Type => Str
48              
49             The type of operation that was requested.
50              
51             Valid values are: C<"REGISTER_DOMAIN">, C<"DELETE_DOMAIN">, C<"TRANSFER_IN_DOMAIN">, C<"UPDATE_DOMAIN_CONTACT">, C<"UPDATE_NAMESERVER">, C<"CHANGE_PRIVACY_PROTECTION">, C<"DOMAIN_LOCK">
52             =head2 _request_id => Str
53              
54              
55             =cut
56              
57             1;