File Coverage

blib/lib/Paws/ApiGateway/GetApiKeys.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::ApiGateway::GetApiKeys;
3 1     1   582 use Moose;
  1         4  
  1         10  
4             has CustomerId => (is => 'ro', isa => 'Str', traits => ['ParamInQuery'], query_name => 'customerId');
5             has IncludeValues => (is => 'ro', isa => 'Bool', traits => ['ParamInQuery'], query_name => 'includeValues');
6             has Limit => (is => 'ro', isa => 'Int', traits => ['ParamInQuery'], query_name => 'limit');
7             has NameQuery => (is => 'ro', isa => 'Str', traits => ['ParamInQuery'], query_name => 'nameQuery');
8             has Position => (is => 'ro', isa => 'Str', traits => ['ParamInQuery'], query_name => 'position');
9              
10 1     1   10785 use MooseX::ClassAttribute;
  1         3  
  1         13  
11              
12             class_has _api_call => (isa => 'Str', is => 'ro', default => 'GetApiKeys');
13             class_has _api_uri => (isa => 'Str', is => 'ro', default => '/apikeys');
14             class_has _api_method => (isa => 'Str', is => 'ro', default => 'GET');
15             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ApiGateway::ApiKeys');
16             class_has _result_key => (isa => 'Str', is => 'ro');
17             1;
18              
19             ### main pod documentation begin ###
20              
21             =head1 NAME
22              
23             Paws::ApiGateway::GetApiKeys - Arguments for method GetApiKeys on Paws::ApiGateway
24              
25             =head1 DESCRIPTION
26              
27             This class represents the parameters used for calling the method GetApiKeys on the
28             Amazon API Gateway service. Use the attributes of this class
29             as arguments to method GetApiKeys.
30              
31             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to GetApiKeys.
32              
33             As an example:
34              
35             $service_obj->GetApiKeys(Att1 => $value1, Att2 => $value2, ...);
36              
37             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
38              
39             =head1 ATTRIBUTES
40              
41              
42             =head2 CustomerId => Str
43              
44             The identifier of a customer in AWS Marketplace or an external system,
45             such as a developer portal.
46              
47              
48              
49             =head2 IncludeValues => Bool
50              
51             A boolean flag to specify whether (C<true>) or not (C<false>) the
52             result contains key values.
53              
54              
55              
56             =head2 Limit => Int
57              
58             The maximum number of returned results per page.
59              
60              
61              
62             =head2 NameQuery => Str
63              
64             The name of queried API keys.
65              
66              
67              
68             =head2 Position => Str
69              
70             The current pagination position in the paged result set.
71              
72              
73              
74              
75             =head1 SEE ALSO
76              
77             This class forms part of L<Paws>, documenting arguments for method GetApiKeys in L<Paws::ApiGateway>
78              
79             =head1 BUGS and CONTRIBUTIONS
80              
81             The source code is located here: https://github.com/pplu/aws-sdk-perl
82              
83             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
84              
85             =cut
86