line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::Fastly::Domain; |
2
|
|
|
|
|
|
|
|
3
|
4
|
|
|
4
|
|
30
|
use strict; |
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
135
|
|
4
|
4
|
|
|
4
|
|
21
|
use base qw(Net::Fastly::BelongsToServiceAndVersion); |
|
4
|
|
|
|
|
6
|
|
|
4
|
|
|
|
|
371
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
Net::Fastly::Domain->mk_accessors(qw(service_id name comment)); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
=head1 NAME |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
Net::Fastly::Domain - Representation of a domain name you want to map to a service |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 ACCESSORS |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head2 service_id |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
The id of the service this belongs to. |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 version |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
The number of the version this belongs to. |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 name |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
The domain name of this domain |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 comment |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
a free form comment field |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=cut |
32
|
|
|
|
|
|
|
1; |