This file is indexed.

/usr/share/perl5/Net/Amazon/EC2/DescribeSubnetResponse.pm is in libnet-amazon-ec2-perl 0.35-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package Net::Amazon::EC2::DescribeSubnetResponse;
$Net::Amazon::EC2::DescribeSubnetResponse::VERSION = '0.35';
use Moose;

=head1 NAME

Net::Amazon::EC2::DescribeSubnetResponse

=head1 DESCRIPTION

A class containing information about subnets

=head1 ATTRIBUTES

=over

=item subnet_id (required)

The ID of the subnet.

=item state (required)

The current state of the subnet.

Values:

pending | available

=item vpc_id (required)

The ID of the VPC the subnet is in.

=item cidr_block

The CIDR block assigned to the subnet.

=available_ip_address_count

The number of unused IP addresses in the subnet. Note that the IP addresses for any stopped instances are considered unavailable.

=availability_zone

The Availability Zone of the subnet.

=default_for_az

Indicates whether this is the default subnet for the Availability Zone.

=map_public_ip_on_launch

Indicates whether instances launched in this subnet receive a public IP address.

=tag_set
Any tags assigned to the resource, each one wrapped in an item element.

=back

=cut

has 'subnet_id'                   => ( is => 'ro', isa => 'Maybe[Str]', required => 1 );
has 'state'                       => ( is => 'ro', isa => 'Maybe[Str]', required => 1 );
has 'vpc_id'		                  => ( is => 'ro', isa => 'Maybe[Str]', required => 1 );
has 'cidr_block'		              => ( is => 'ro', isa => 'Maybe[Str]', required => 1 );
has 'available_ip_address_count'  => ( is => 'ro', isa => 'Maybe[Str]', required => 1 );
has 'availability_zone'           => ( is => 'ro', isa => 'Maybe[Str]', required => 1 );
has 'default_for_az'              => ( is => 'ro', isa => 'Maybe[Str]', required => 0 );
has 'map_public_ip_on_launch'     => ( is => 'ro', isa => 'Maybe[Str]', required => 0 );
has 'tag_set'                     => ( is => 'ro', isa => 'Maybe[ArrayRef[Net::Amazon::EC2::TagSet]]', required => 0 );
__PACKAGE__->meta->make_immutable();

=head1 AUTHOR

Jonas Courteau <jonas.courteau@hootsuite.com>

=head1 COPYRIGHT

Copyright (c) 2014 Jonas Courteau. This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.

=cut

no Moose;
1;