File Coverage

blib/lib/Paws/ApiGateway/UsagePlan.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::UsagePlan;
3 1     1   510 use Moose;
  1         2  
  1         7  
4             has ApiStages => (is => 'ro', isa => 'ArrayRef[Paws::ApiGateway::ApiStage]', traits => ['NameInRequest'], request_name => 'apiStages');
5             has Description => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'description');
6             has Id => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'id');
7             has Name => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'name');
8             has ProductCode => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'productCode');
9             has Quota => (is => 'ro', isa => 'Paws::ApiGateway::QuotaSettings', traits => ['NameInRequest'], request_name => 'quota');
10             has Throttle => (is => 'ro', isa => 'Paws::ApiGateway::ThrottleSettings', traits => ['NameInRequest'], request_name => 'throttle');
11              
12             has _request_id => (is => 'ro', isa => 'Str');
13             1;
14              
15             ### main pod documentation begin ###
16              
17             =head1 NAME
18              
19             Paws::ApiGateway::UsagePlan
20              
21             =head1 ATTRIBUTES
22              
23              
24             =head2 ApiStages => ArrayRef[L<Paws::ApiGateway::ApiStage>]
25              
26             The associated API stages of a usage plan.
27              
28              
29             =head2 Description => Str
30              
31             The description of a usage plan.
32              
33              
34             =head2 Id => Str
35              
36             The identifier of a UsagePlan resource.
37              
38              
39             =head2 Name => Str
40              
41             The name of a usage plan.
42              
43              
44             =head2 ProductCode => Str
45              
46             The AWS Markeplace product identifier to associate with the usage plan
47             as a SaaS product on AWS Marketplace.
48              
49              
50             =head2 Quota => L<Paws::ApiGateway::QuotaSettings>
51              
52             The maximum number of permitted requests per a given unit time
53             interval.
54              
55              
56             =head2 Throttle => L<Paws::ApiGateway::ThrottleSettings>
57              
58             The request throttle limits of a usage plan.
59              
60              
61             =head2 _request_id => Str
62              
63              
64             =cut
65