File Coverage

blib/lib/Paws/ApiGateway/CreateModel.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::CreateModel;
3 1     1   518 use Moose;
  1         3  
  1         7  
4             has ContentType => (is => 'ro', isa => 'Str', required => 1);
5             has Description => (is => 'ro', isa => 'Str');
6             has Name => (is => 'ro', isa => 'Str', required => 1);
7             has RestApiId => (is => 'ro', isa => 'Str', traits => ['ParamInURI'], uri_name => 'restApiId' , required => 1);
8             has Schema => (is => 'ro', isa => 'Str');
9              
10 1     1   6223 use MooseX::ClassAttribute;
  1         3  
  1         9  
11              
12             class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateModel');
13             class_has _api_uri => (isa => 'Str', is => 'ro', default => '/restapis/{restapi_id}/models');
14             class_has _api_method => (isa => 'Str', is => 'ro', default => 'POST');
15             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ApiGateway::Model');
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::CreateModel - Arguments for method CreateModel on Paws::ApiGateway
24              
25             =head1 DESCRIPTION
26              
27             This class represents the parameters used for calling the method CreateModel on the
28             Amazon API Gateway service. Use the attributes of this class
29             as arguments to method CreateModel.
30              
31             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateModel.
32              
33             As an example:
34              
35             $service_obj->CreateModel(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 B<REQUIRED> ContentType => Str
43              
44             The content-type for the model.
45              
46              
47              
48             =head2 Description => Str
49              
50             The description of the model.
51              
52              
53              
54             =head2 B<REQUIRED> Name => Str
55              
56             The name of the model. Must be alphanumeric.
57              
58              
59              
60             =head2 B<REQUIRED> RestApiId => Str
61              
62             The RestApi identifier under which the Model will be created.
63              
64              
65              
66             =head2 Schema => Str
67              
68             The schema for the model. For C<application/json> models, this should
69             be JSON-schema draft v4 model.
70              
71              
72              
73              
74             =head1 SEE ALSO
75              
76             This class forms part of L<Paws>, documenting arguments for method CreateModel in L<Paws::ApiGateway>
77              
78             =head1 BUGS and CONTRIBUTIONS
79              
80             The source code is located here: https://github.com/pplu/aws-sdk-perl
81              
82             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
83              
84             =cut
85