| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Route53Domains::CheckDomainAvailabilityResponse; |
|
3
|
1
|
|
|
1
|
|
530
|
use Moose; |
|
|
1
|
|
|
1
|
|
3
|
|
|
|
1
|
|
|
|
|
10
|
|
|
|
1
|
|
|
|
|
400
|
|
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
|
|
has Availability => (is => 'ro', isa => 'Str', required => 1); |
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Paws::Route53Domains::CheckDomainAvailabilityResponse |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head2 B<REQUIRED> Availability => Str |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Whether the domain name is available for registering. |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
You can register only domains designated as C<AVAILABLE>. |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Valid values: |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=over |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=item AVAILABLE |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
The domain name is available. |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=item AVAILABLE_RESERVED |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
The domain name is reserved under specific conditions. |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=item AVAILABLE_PREORDER |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
The domain name is available and can be preordered. |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=item DONT_KNOW |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
The TLD registry didn't reply with a definitive answer about whether |
|
42
|
|
|
|
|
|
|
the domain name is available. Amazon Route 53 can return this response |
|
43
|
|
|
|
|
|
|
for a variety of reasons, for example, the registry is performing |
|
44
|
|
|
|
|
|
|
maintenance. Try again later. |
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=item PENDING |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
The TLD registry didn't return a response in the expected amount of |
|
49
|
|
|
|
|
|
|
time. When the response is delayed, it usually takes just a few extra |
|
50
|
|
|
|
|
|
|
seconds. You can resubmit the request immediately. |
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=item RESERVED |
|
53
|
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
The domain name has been reserved for another person or organization. |
|
55
|
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=item UNAVAILABLE |
|
57
|
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
The domain name is not available. |
|
59
|
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=item UNAVAILABLE_PREMIUM |
|
61
|
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
The domain name is not available. |
|
63
|
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=item UNAVAILABLE_RESTRICTED |
|
65
|
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
The domain name is forbidden. |
|
67
|
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=back |
|
69
|
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
Valid values are: C<"AVAILABLE">, C<"AVAILABLE_RESERVED">, C<"AVAILABLE_PREORDER">, C<"UNAVAILABLE">, C<"UNAVAILABLE_PREMIUM">, C<"UNAVAILABLE_RESTRICTED">, C<"RESERVED">, C<"DONT_KNOW"> |
|
72
|
|
|
|
|
|
|
=head2 _request_id => Str |
|
73
|
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=cut |
|
76
|
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
1; |