File Coverage

blib/lib/Paws/ApiGateway/Stage.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::ApiGateway::Stage;
3 1     1   485 use Moose;
  1         3  
  1         6  
4             has CacheClusterEnabled => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'cacheClusterEnabled');
5             has CacheClusterSize => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'cacheClusterSize');
6             has CacheClusterStatus => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'cacheClusterStatus');
7             has ClientCertificateId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'clientCertificateId');
8             has CreatedDate => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'createdDate');
9             has DeploymentId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'deploymentId');
10             has Description => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'description');
11             has DocumentationVersion => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'documentationVersion');
12             has LastUpdatedDate => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'lastUpdatedDate');
13             has MethodSettings => (is => 'ro', isa => 'Paws::ApiGateway::MapOfMethodSettings', traits => ['NameInRequest'], request_name => 'methodSettings');
14             has StageName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'stageName');
15             has Variables => (is => 'ro', isa => 'Paws::ApiGateway::MapOfStringToString', traits => ['NameInRequest'], request_name => 'variables');
16              
17             has _request_id => (is => 'ro', isa => 'Str');
18             1;
19              
20             ### main pod documentation begin ###
21              
22             =head1 NAME
23              
24             Paws::ApiGateway::Stage
25              
26             =head1 ATTRIBUTES
27              
28              
29             =head2 CacheClusterEnabled => Bool
30              
31             Specifies whether a cache cluster is enabled for the stage.
32              
33              
34             =head2 CacheClusterSize => Str
35              
36             The size of the cache cluster for the stage, if enabled.
37              
38             Valid values are: C<"0.5">, C<"1.6">, C<"6.1">, C<"13.5">, C<"28.4">, C<"58.2">, C<"118">, C<"237">
39             =head2 CacheClusterStatus => Str
40              
41             The status of the cache cluster for the stage, if enabled.
42              
43             Valid values are: C<"CREATE_IN_PROGRESS">, C<"AVAILABLE">, C<"DELETE_IN_PROGRESS">, C<"NOT_AVAILABLE">, C<"FLUSH_IN_PROGRESS">
44             =head2 ClientCertificateId => Str
45              
46             The identifier of a client certificate for an API stage.
47              
48              
49             =head2 CreatedDate => Str
50              
51             The timestamp when the stage was created.
52              
53              
54             =head2 DeploymentId => Str
55              
56             The identifier of the Deployment that the stage points to.
57              
58              
59             =head2 Description => Str
60              
61             The stage's description.
62              
63              
64             =head2 DocumentationVersion => Str
65              
66             The version of the associated API documentation.
67              
68              
69             =head2 LastUpdatedDate => Str
70              
71             The timestamp when the stage last updated.
72              
73              
74             =head2 MethodSettings => L<Paws::ApiGateway::MapOfMethodSettings>
75              
76             A map that defines the method settings for a Stage resource. Keys
77             (designated as C</{method_setting_key> below) are method paths defined
78             as C<{resource_path}/{http_method}> for an individual method override,
79             or C</\*/\*> for overriding all methods in the stage.
80              
81              
82             =head2 StageName => Str
83              
84             The name of the stage is the first path segment in the Uniform Resource
85             Identifier (URI) of a call to Amazon API Gateway.
86              
87              
88             =head2 Variables => L<Paws::ApiGateway::MapOfStringToString>
89              
90             A map that defines the stage variables for a Stage resource. Variable
91             names can have alphanumeric and underscore characters, and the values
92             must match C<[A-Za-z0-9-._~:/?&num;&=,]+>.
93              
94              
95             =head2 _request_id => Str
96              
97              
98             =cut
99