wesley-key-sdk 0.1.2 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +65 -57
- data/bin/console +15 -0
- data/lib/{swagger_petstore → cypress_test_api}/api_helper.rb +2 -2
- data/lib/cypress_test_api/client.rb +58 -0
- data/lib/cypress_test_api/configuration.rb +156 -0
- data/lib/cypress_test_api/controllers/api_controller.rb +102 -0
- data/lib/{swagger_petstore → cypress_test_api}/controllers/base_controller.rb +2 -2
- data/lib/{swagger_petstore → cypress_test_api}/exceptions/api_exception.rb +2 -2
- data/lib/{swagger_petstore → cypress_test_api}/http/http_call_back.rb +2 -2
- data/lib/{swagger_petstore → cypress_test_api}/http/http_method_enum.rb +2 -2
- data/lib/{swagger_petstore → cypress_test_api}/http/http_request.rb +2 -2
- data/lib/{swagger_petstore → cypress_test_api}/http/http_response.rb +2 -2
- data/lib/cypress_test_api/http/proxy_settings.rb +22 -0
- data/lib/{swagger_petstore → cypress_test_api}/models/base_model.rb +2 -2
- data/lib/cypress_test_api/models/custom_enum.rb +40 -0
- data/lib/{swagger_petstore/models/category.rb → cypress_test_api/models/deer.rb} +18 -21
- data/lib/cypress_test_api/models/item.rb +166 -0
- data/lib/{swagger_petstore/models/category2.rb → cypress_test_api/models/item_response.rb} +19 -10
- data/lib/cypress_test_api/models/lion.rb +68 -0
- data/lib/cypress_test_api/models/message.rb +68 -0
- data/lib/{swagger_petstore/models/api_response.rb → cypress_test_api/models/message2.rb} +14 -24
- data/lib/cypress_test_api/models/multiple_arrays_request.rb +70 -0
- data/lib/cypress_test_api/models/nac_tag.rb +265 -0
- data/lib/cypress_test_api/models/o_auth_scope_o_auth_acg_enum.rb +44 -0
- data/lib/cypress_test_api/models/response_http400.rb +62 -0
- data/lib/{swagger_petstore/models/tag.rb → cypress_test_api/models/response_http404.rb} +9 -18
- data/lib/cypress_test_api/models/status11_enum.rb +40 -0
- data/lib/cypress_test_api/models/status1_enum.rb +40 -0
- data/lib/cypress_test_api/models/status_enum.rb +40 -0
- data/lib/cypress_test_api/models/tokens_request.rb +60 -0
- data/lib/{swagger_petstore → cypress_test_api}/utilities/date_time_helper.rb +2 -2
- data/lib/{swagger_petstore → cypress_test_api}/utilities/file_wrapper.rb +2 -2
- data/lib/cypress_test_api.rb +55 -0
- data/test/controllers/controller_test_base.rb +5 -19
- data/test/controllers/test_api_controller.rb +40 -0
- data/test/http_response_catcher.rb +2 -2
- metadata +39 -45
- data/lib/swagger_petstore/client.rb +0 -84
- data/lib/swagger_petstore/configuration.rb +0 -127
- data/lib/swagger_petstore/controllers/pet_controller.rb +0 -206
- data/lib/swagger_petstore/controllers/store_controller.rb +0 -94
- data/lib/swagger_petstore/controllers/user_controller.rb +0 -165
- data/lib/swagger_petstore/exceptions/o_auth_provider_exception.rb +0 -64
- data/lib/swagger_petstore/http/auth/api_key.rb +0 -42
- data/lib/swagger_petstore/http/auth/http_basic.rb +0 -50
- data/lib/swagger_petstore/http/auth/petstore_auth.rb +0 -98
- data/lib/swagger_petstore/http/proxy_settings.rb +0 -13
- data/lib/swagger_petstore/models/content_type_enum.rb +0 -20
- data/lib/swagger_petstore/models/o_auth_provider_error_enum.rb +0 -45
- data/lib/swagger_petstore/models/o_auth_scope_petstore_auth_enum.rb +0 -23
- data/lib/swagger_petstore/models/o_auth_token.rb +0 -96
- data/lib/swagger_petstore/models/order.rb +0 -120
- data/lib/swagger_petstore/models/pet.rb +0 -117
- data/lib/swagger_petstore/models/pet_request.rb +0 -117
- data/lib/swagger_petstore/models/status1_enum.rb +0 -26
- data/lib/swagger_petstore/models/status2_enum.rb +0 -26
- data/lib/swagger_petstore/models/status_enum.rb +0 -26
- data/lib/swagger_petstore/models/store_order_request.rb +0 -120
- data/lib/swagger_petstore/models/user.rb +0 -132
- data/lib/swagger_petstore/models/user_request.rb +0 -132
- data/lib/swagger_petstore.rb +0 -62
- data/test/controllers/test_store_controller.rb +0 -31
|
@@ -1,206 +0,0 @@
|
|
|
1
|
-
# swagger_petstore
|
|
2
|
-
#
|
|
3
|
-
# This file was automatically generated by APIMATIC v3.0
|
|
4
|
-
# ( https://www.apimatic.io ).
|
|
5
|
-
|
|
6
|
-
module SwaggerPetstore
|
|
7
|
-
# PetController
|
|
8
|
-
class PetController < BaseController
|
|
9
|
-
# Returns a single pet
|
|
10
|
-
# @param [Integer] pet_id Required parameter: ID of pet to return
|
|
11
|
-
# @return [Pet] Response from the API call.
|
|
12
|
-
def get_pet_by_id(pet_id)
|
|
13
|
-
@api_call
|
|
14
|
-
.request(new_request_builder(HttpMethodEnum::GET,
|
|
15
|
-
'/pet/{petId}',
|
|
16
|
-
Server::DEFAULT)
|
|
17
|
-
.template_param(new_parameter(pet_id, key: 'petId')
|
|
18
|
-
.should_encode(true))
|
|
19
|
-
.header_param(new_parameter('application/json', key: 'accept'))
|
|
20
|
-
.auth(Single.new('api_key')))
|
|
21
|
-
.response(new_response_handler
|
|
22
|
-
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
23
|
-
.deserialize_into(Pet.method(:from_hash))
|
|
24
|
-
.local_error('400',
|
|
25
|
-
'Invalid ID supplied',
|
|
26
|
-
APIException)
|
|
27
|
-
.local_error('404',
|
|
28
|
-
'Pet not found',
|
|
29
|
-
APIException))
|
|
30
|
-
.execute
|
|
31
|
-
end
|
|
32
|
-
|
|
33
|
-
# Updates a pet in the store with form data
|
|
34
|
-
# @param [Integer] pet_id Required parameter: ID of pet that needs to be
|
|
35
|
-
# updated
|
|
36
|
-
# @param [ContentTypeEnum] content_type Required parameter: Example:
|
|
37
|
-
# @param [String] name Optional parameter: Updated name of the pet
|
|
38
|
-
# @param [String] status Optional parameter: Updated status of the pet
|
|
39
|
-
# @return [void] Response from the API call.
|
|
40
|
-
def update_pet_with_form(pet_id,
|
|
41
|
-
content_type,
|
|
42
|
-
name: nil,
|
|
43
|
-
status: nil)
|
|
44
|
-
@api_call
|
|
45
|
-
.request(new_request_builder(HttpMethodEnum::POST,
|
|
46
|
-
'/pet/{petId}',
|
|
47
|
-
Server::DEFAULT)
|
|
48
|
-
.template_param(new_parameter(pet_id, key: 'petId')
|
|
49
|
-
.should_encode(true))
|
|
50
|
-
.form_param(new_parameter(name, key: 'name'))
|
|
51
|
-
.form_param(new_parameter(status, key: 'status'))
|
|
52
|
-
.header_param(new_parameter('application/x-www-form-urlencoded', key: 'content-type'))
|
|
53
|
-
.auth(Single.new('petstore_auth')))
|
|
54
|
-
.response(new_response_handler
|
|
55
|
-
.is_response_void(true)
|
|
56
|
-
.local_error('405',
|
|
57
|
-
'Invalid input',
|
|
58
|
-
APIException))
|
|
59
|
-
.execute
|
|
60
|
-
end
|
|
61
|
-
|
|
62
|
-
# Deletes a pet
|
|
63
|
-
# @param [Integer] pet_id Required parameter: Pet id to delete
|
|
64
|
-
# @param [String] api_key Optional parameter: Example:
|
|
65
|
-
# @return [void] Response from the API call.
|
|
66
|
-
def delete_pet(pet_id,
|
|
67
|
-
api_key: nil)
|
|
68
|
-
@api_call
|
|
69
|
-
.request(new_request_builder(HttpMethodEnum::DELETE,
|
|
70
|
-
'/pet/{petId}',
|
|
71
|
-
Server::DEFAULT)
|
|
72
|
-
.template_param(new_parameter(pet_id, key: 'petId')
|
|
73
|
-
.should_encode(true))
|
|
74
|
-
.header_param(new_parameter(api_key, key: 'api_key'))
|
|
75
|
-
.auth(Single.new('petstore_auth')))
|
|
76
|
-
.response(new_response_handler
|
|
77
|
-
.is_response_void(true)
|
|
78
|
-
.local_error('400',
|
|
79
|
-
'Invalid ID supplied',
|
|
80
|
-
APIException)
|
|
81
|
-
.local_error('404',
|
|
82
|
-
'Pet not found',
|
|
83
|
-
APIException))
|
|
84
|
-
.execute
|
|
85
|
-
end
|
|
86
|
-
|
|
87
|
-
# Add a new pet to the store
|
|
88
|
-
# @param [PetRequest] body Required parameter: Pet object that needs to be
|
|
89
|
-
# added to the store
|
|
90
|
-
# @return [void] Response from the API call.
|
|
91
|
-
def add_pet(body)
|
|
92
|
-
@api_call
|
|
93
|
-
.request(new_request_builder(HttpMethodEnum::POST,
|
|
94
|
-
'/pet',
|
|
95
|
-
Server::DEFAULT)
|
|
96
|
-
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
97
|
-
.body_param(new_parameter(body))
|
|
98
|
-
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
|
99
|
-
.auth(Single.new('petstore_auth')))
|
|
100
|
-
.response(new_response_handler
|
|
101
|
-
.is_response_void(true)
|
|
102
|
-
.local_error('405',
|
|
103
|
-
'Invalid input',
|
|
104
|
-
APIException))
|
|
105
|
-
.execute
|
|
106
|
-
end
|
|
107
|
-
|
|
108
|
-
# Update an existing pet
|
|
109
|
-
# @param [PetRequest] body Required parameter: Pet object that needs to be
|
|
110
|
-
# added to the store
|
|
111
|
-
# @return [void] Response from the API call.
|
|
112
|
-
def update_pet(body)
|
|
113
|
-
@api_call
|
|
114
|
-
.request(new_request_builder(HttpMethodEnum::PUT,
|
|
115
|
-
'/pet',
|
|
116
|
-
Server::DEFAULT)
|
|
117
|
-
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
118
|
-
.body_param(new_parameter(body))
|
|
119
|
-
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
|
120
|
-
.auth(Single.new('petstore_auth')))
|
|
121
|
-
.response(new_response_handler
|
|
122
|
-
.is_response_void(true)
|
|
123
|
-
.local_error('400',
|
|
124
|
-
'Invalid ID supplied',
|
|
125
|
-
APIException)
|
|
126
|
-
.local_error('404',
|
|
127
|
-
'Pet not found',
|
|
128
|
-
APIException)
|
|
129
|
-
.local_error('405',
|
|
130
|
-
'Validation exception',
|
|
131
|
-
APIException))
|
|
132
|
-
.execute
|
|
133
|
-
end
|
|
134
|
-
|
|
135
|
-
# Multiple status values can be provided with comma separated strings
|
|
136
|
-
# @param [Array[Status2Enum]] status Required parameter: Status values that
|
|
137
|
-
# need to be considered for filter
|
|
138
|
-
# @return [Array[Pet]] Response from the API call.
|
|
139
|
-
def find_pets_by_status(status)
|
|
140
|
-
@api_call
|
|
141
|
-
.request(new_request_builder(HttpMethodEnum::GET,
|
|
142
|
-
'/pet/findByStatus',
|
|
143
|
-
Server::DEFAULT)
|
|
144
|
-
.query_param(new_parameter(status, key: 'status'))
|
|
145
|
-
.header_param(new_parameter('application/json', key: 'accept'))
|
|
146
|
-
.auth(Single.new('petstore_auth')))
|
|
147
|
-
.response(new_response_handler
|
|
148
|
-
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
149
|
-
.deserialize_into(Pet.method(:from_hash))
|
|
150
|
-
.is_response_array(true)
|
|
151
|
-
.local_error('400',
|
|
152
|
-
'Invalid status value',
|
|
153
|
-
APIException))
|
|
154
|
-
.execute
|
|
155
|
-
end
|
|
156
|
-
|
|
157
|
-
# uploads an image
|
|
158
|
-
# @param [Integer] pet_id Required parameter: ID of pet to update
|
|
159
|
-
# @param [String] additional_metadata Optional parameter: Additional data to
|
|
160
|
-
# pass to server
|
|
161
|
-
# @param [File | UploadIO] file Optional parameter: file to upload
|
|
162
|
-
# @return [ApiResponse] Response from the API call.
|
|
163
|
-
def upload_file(pet_id,
|
|
164
|
-
additional_metadata: nil,
|
|
165
|
-
file: nil)
|
|
166
|
-
@api_call
|
|
167
|
-
.request(new_request_builder(HttpMethodEnum::POST,
|
|
168
|
-
'/pet/{petId}/uploadImage',
|
|
169
|
-
Server::DEFAULT)
|
|
170
|
-
.template_param(new_parameter(pet_id, key: 'petId')
|
|
171
|
-
.should_encode(true))
|
|
172
|
-
.form_param(new_parameter(additional_metadata, key: 'additionalMetadata'))
|
|
173
|
-
.multipart_param(new_parameter(file, key: 'file')
|
|
174
|
-
.default_content_type('application/octet-stream'))
|
|
175
|
-
.header_param(new_parameter('application/json', key: 'accept'))
|
|
176
|
-
.auth(Single.new('petstore_auth')))
|
|
177
|
-
.response(new_response_handler
|
|
178
|
-
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
179
|
-
.deserialize_into(ApiResponse.method(:from_hash)))
|
|
180
|
-
.execute
|
|
181
|
-
end
|
|
182
|
-
|
|
183
|
-
# Multiple tags can be provided with comma separated strings. Use tag1,
|
|
184
|
-
# tag2, tag3 for testing.
|
|
185
|
-
# @param [Array[String]] tags Required parameter: Tags to filter by
|
|
186
|
-
# @return [Array[Pet]] Response from the API call.
|
|
187
|
-
def find_pets_by_tags(tags)
|
|
188
|
-
warn 'Endpoint find_pets_by_tags in PetController is deprecated'
|
|
189
|
-
@api_call
|
|
190
|
-
.request(new_request_builder(HttpMethodEnum::GET,
|
|
191
|
-
'/pet/findByTags',
|
|
192
|
-
Server::DEFAULT)
|
|
193
|
-
.query_param(new_parameter(tags, key: 'tags'))
|
|
194
|
-
.header_param(new_parameter('application/json', key: 'accept'))
|
|
195
|
-
.auth(Single.new('petstore_auth')))
|
|
196
|
-
.response(new_response_handler
|
|
197
|
-
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
198
|
-
.deserialize_into(Pet.method(:from_hash))
|
|
199
|
-
.is_response_array(true)
|
|
200
|
-
.local_error('400',
|
|
201
|
-
'Invalid tag value',
|
|
202
|
-
APIException))
|
|
203
|
-
.execute
|
|
204
|
-
end
|
|
205
|
-
end
|
|
206
|
-
end
|
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
# swagger_petstore
|
|
2
|
-
#
|
|
3
|
-
# This file was automatically generated by APIMATIC v3.0
|
|
4
|
-
# ( https://www.apimatic.io ).
|
|
5
|
-
|
|
6
|
-
module SwaggerPetstore
|
|
7
|
-
# StoreController
|
|
8
|
-
class StoreController < BaseController
|
|
9
|
-
# For valid response try integer IDs with value >= 1 and <= 10. Other values
|
|
10
|
-
# will generated exceptions
|
|
11
|
-
# @param [Integer] order_id Required parameter: ID of pet that needs to be
|
|
12
|
-
# fetched
|
|
13
|
-
# @return [Order] Response from the API call.
|
|
14
|
-
def get_order_by_id(order_id)
|
|
15
|
-
@api_call
|
|
16
|
-
.request(new_request_builder(HttpMethodEnum::GET,
|
|
17
|
-
'/store/order/{orderId}',
|
|
18
|
-
Server::DEFAULT)
|
|
19
|
-
.template_param(new_parameter(order_id, key: 'orderId')
|
|
20
|
-
.should_encode(true))
|
|
21
|
-
.header_param(new_parameter('application/json', key: 'accept')))
|
|
22
|
-
.response(new_response_handler
|
|
23
|
-
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
24
|
-
.deserialize_into(Order.method(:from_hash))
|
|
25
|
-
.local_error('400',
|
|
26
|
-
'Invalid ID supplied',
|
|
27
|
-
APIException)
|
|
28
|
-
.local_error('404',
|
|
29
|
-
'Order not found',
|
|
30
|
-
APIException))
|
|
31
|
-
.execute
|
|
32
|
-
end
|
|
33
|
-
|
|
34
|
-
# For valid response try integer IDs with positive integer value. Negative
|
|
35
|
-
# or non-integer values will generate API errors
|
|
36
|
-
# @param [Integer] order_id Required parameter: ID of the order that needs
|
|
37
|
-
# to be deleted
|
|
38
|
-
# @return [void] Response from the API call.
|
|
39
|
-
def delete_order(order_id)
|
|
40
|
-
@api_call
|
|
41
|
-
.request(new_request_builder(HttpMethodEnum::DELETE,
|
|
42
|
-
'/store/order/{orderId}',
|
|
43
|
-
Server::DEFAULT)
|
|
44
|
-
.template_param(new_parameter(order_id, key: 'orderId')
|
|
45
|
-
.should_encode(true)))
|
|
46
|
-
.response(new_response_handler
|
|
47
|
-
.is_response_void(true)
|
|
48
|
-
.local_error('400',
|
|
49
|
-
'Invalid ID supplied',
|
|
50
|
-
APIException)
|
|
51
|
-
.local_error('404',
|
|
52
|
-
'Order not found',
|
|
53
|
-
APIException))
|
|
54
|
-
.execute
|
|
55
|
-
end
|
|
56
|
-
|
|
57
|
-
# Returns a map of status codes to quantities
|
|
58
|
-
# @return [Hash[String, Integer]] Response from the API call.
|
|
59
|
-
def get_inventory
|
|
60
|
-
@api_call
|
|
61
|
-
.request(new_request_builder(HttpMethodEnum::GET,
|
|
62
|
-
'/store/inventory',
|
|
63
|
-
Server::DEFAULT)
|
|
64
|
-
.auth(Single.new('api_key')))
|
|
65
|
-
.response(new_response_handler
|
|
66
|
-
.deserializer(APIHelper.method(:deserialize_primitive_types))
|
|
67
|
-
.deserialize_into(proc do |response| response&.to_i end)
|
|
68
|
-
.is_primitive_response(true))
|
|
69
|
-
.execute
|
|
70
|
-
end
|
|
71
|
-
|
|
72
|
-
# Place an order for a pet
|
|
73
|
-
# @param [StoreOrderRequest] body Required parameter: order placed for
|
|
74
|
-
# purchasing the pet
|
|
75
|
-
# @return [Order] Response from the API call.
|
|
76
|
-
def place_order(body)
|
|
77
|
-
@api_call
|
|
78
|
-
.request(new_request_builder(HttpMethodEnum::POST,
|
|
79
|
-
'/store/order',
|
|
80
|
-
Server::DEFAULT)
|
|
81
|
-
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
82
|
-
.body_param(new_parameter(body))
|
|
83
|
-
.header_param(new_parameter('application/json', key: 'accept'))
|
|
84
|
-
.body_serializer(proc do |param| param.to_json unless param.nil? end))
|
|
85
|
-
.response(new_response_handler
|
|
86
|
-
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
87
|
-
.deserialize_into(Order.method(:from_hash))
|
|
88
|
-
.local_error('400',
|
|
89
|
-
'Invalid Order',
|
|
90
|
-
APIException))
|
|
91
|
-
.execute
|
|
92
|
-
end
|
|
93
|
-
end
|
|
94
|
-
end
|
|
@@ -1,165 +0,0 @@
|
|
|
1
|
-
# swagger_petstore
|
|
2
|
-
#
|
|
3
|
-
# This file was automatically generated by APIMATIC v3.0
|
|
4
|
-
# ( https://www.apimatic.io ).
|
|
5
|
-
|
|
6
|
-
module SwaggerPetstore
|
|
7
|
-
# UserController
|
|
8
|
-
class UserController < BaseController
|
|
9
|
-
# Creates list of users with given input array
|
|
10
|
-
# @param [Array[User]] body Required parameter: List of user object
|
|
11
|
-
# @return [void] Response from the API call.
|
|
12
|
-
def create_users_with_list_input(body)
|
|
13
|
-
@api_call
|
|
14
|
-
.request(new_request_builder(HttpMethodEnum::POST,
|
|
15
|
-
'/user/createWithList',
|
|
16
|
-
Server::DEFAULT)
|
|
17
|
-
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
18
|
-
.body_param(new_parameter(body))
|
|
19
|
-
.body_serializer(proc do |param| param.to_json unless param.nil? end))
|
|
20
|
-
.response(new_response_handler
|
|
21
|
-
.is_response_void(true))
|
|
22
|
-
.execute
|
|
23
|
-
end
|
|
24
|
-
|
|
25
|
-
# Get user by user name
|
|
26
|
-
# @param [String] username Required parameter: The name that needs to be
|
|
27
|
-
# fetched. Use user1 for testing.
|
|
28
|
-
# @return [User] Response from the API call.
|
|
29
|
-
def get_user_by_name(username)
|
|
30
|
-
@api_call
|
|
31
|
-
.request(new_request_builder(HttpMethodEnum::GET,
|
|
32
|
-
'/user/{username}',
|
|
33
|
-
Server::DEFAULT)
|
|
34
|
-
.template_param(new_parameter(username, key: 'username')
|
|
35
|
-
.should_encode(true))
|
|
36
|
-
.header_param(new_parameter('application/json', key: 'accept')))
|
|
37
|
-
.response(new_response_handler
|
|
38
|
-
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
39
|
-
.deserialize_into(User.method(:from_hash))
|
|
40
|
-
.local_error('400',
|
|
41
|
-
'Invalid username supplied',
|
|
42
|
-
APIException)
|
|
43
|
-
.local_error('404',
|
|
44
|
-
'User not found',
|
|
45
|
-
APIException))
|
|
46
|
-
.execute
|
|
47
|
-
end
|
|
48
|
-
|
|
49
|
-
# This can only be done by the logged in user.
|
|
50
|
-
# @param [String] username Required parameter: name that need to be
|
|
51
|
-
# updated
|
|
52
|
-
# @param [UserRequest] body Required parameter: Updated user object
|
|
53
|
-
# @return [void] Response from the API call.
|
|
54
|
-
def update_user(username,
|
|
55
|
-
body)
|
|
56
|
-
@api_call
|
|
57
|
-
.request(new_request_builder(HttpMethodEnum::PUT,
|
|
58
|
-
'/user/{username}',
|
|
59
|
-
Server::DEFAULT)
|
|
60
|
-
.template_param(new_parameter(username, key: 'username')
|
|
61
|
-
.should_encode(true))
|
|
62
|
-
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
63
|
-
.body_param(new_parameter(body))
|
|
64
|
-
.body_serializer(proc do |param| param.to_json unless param.nil? end))
|
|
65
|
-
.response(new_response_handler
|
|
66
|
-
.is_response_void(true)
|
|
67
|
-
.local_error('400',
|
|
68
|
-
'Invalid user supplied',
|
|
69
|
-
APIException)
|
|
70
|
-
.local_error('404',
|
|
71
|
-
'User not found',
|
|
72
|
-
APIException))
|
|
73
|
-
.execute
|
|
74
|
-
end
|
|
75
|
-
|
|
76
|
-
# This can only be done by the logged in user.
|
|
77
|
-
# @param [String] username Required parameter: The name that needs to be
|
|
78
|
-
# deleted
|
|
79
|
-
# @return [void] Response from the API call.
|
|
80
|
-
def delete_user(username)
|
|
81
|
-
@api_call
|
|
82
|
-
.request(new_request_builder(HttpMethodEnum::DELETE,
|
|
83
|
-
'/user/{username}',
|
|
84
|
-
Server::DEFAULT)
|
|
85
|
-
.template_param(new_parameter(username, key: 'username')
|
|
86
|
-
.should_encode(true)))
|
|
87
|
-
.response(new_response_handler
|
|
88
|
-
.is_response_void(true)
|
|
89
|
-
.local_error('400',
|
|
90
|
-
'Invalid username supplied',
|
|
91
|
-
APIException)
|
|
92
|
-
.local_error('404',
|
|
93
|
-
'User not found',
|
|
94
|
-
APIException))
|
|
95
|
-
.execute
|
|
96
|
-
end
|
|
97
|
-
|
|
98
|
-
# Logs out current logged in user session
|
|
99
|
-
# @return [void] Response from the API call.
|
|
100
|
-
def logout_user
|
|
101
|
-
@api_call
|
|
102
|
-
.request(new_request_builder(HttpMethodEnum::GET,
|
|
103
|
-
'/user/logout',
|
|
104
|
-
Server::DEFAULT))
|
|
105
|
-
.response(new_response_handler
|
|
106
|
-
.is_response_void(true))
|
|
107
|
-
.execute
|
|
108
|
-
end
|
|
109
|
-
|
|
110
|
-
# This can only be done by the logged in user.
|
|
111
|
-
# @param [UserRequest] body Required parameter: Created user object
|
|
112
|
-
# @return [void] Response from the API call.
|
|
113
|
-
def create_user(body)
|
|
114
|
-
@api_call
|
|
115
|
-
.request(new_request_builder(HttpMethodEnum::POST,
|
|
116
|
-
'/user',
|
|
117
|
-
Server::DEFAULT)
|
|
118
|
-
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
119
|
-
.body_param(new_parameter(body))
|
|
120
|
-
.body_serializer(proc do |param| param.to_json unless param.nil? end))
|
|
121
|
-
.response(new_response_handler
|
|
122
|
-
.is_response_void(true))
|
|
123
|
-
.execute
|
|
124
|
-
end
|
|
125
|
-
|
|
126
|
-
# Creates list of users with given input array
|
|
127
|
-
# @param [Array[User]] body Required parameter: List of user object
|
|
128
|
-
# @return [void] Response from the API call.
|
|
129
|
-
def create_users_with_array_input(body)
|
|
130
|
-
@api_call
|
|
131
|
-
.request(new_request_builder(HttpMethodEnum::POST,
|
|
132
|
-
'/user/createWithArray',
|
|
133
|
-
Server::DEFAULT)
|
|
134
|
-
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
135
|
-
.body_param(new_parameter(body))
|
|
136
|
-
.body_serializer(proc do |param| param.to_json unless param.nil? end))
|
|
137
|
-
.response(new_response_handler
|
|
138
|
-
.is_response_void(true))
|
|
139
|
-
.execute
|
|
140
|
-
end
|
|
141
|
-
|
|
142
|
-
# Logs user into the system
|
|
143
|
-
# @param [String] username Required parameter: The user name for login
|
|
144
|
-
# @param [String] password Required parameter: The password for login in
|
|
145
|
-
# clear text
|
|
146
|
-
# @return [String] Response from the API call.
|
|
147
|
-
def login_user(username,
|
|
148
|
-
password)
|
|
149
|
-
@api_call
|
|
150
|
-
.request(new_request_builder(HttpMethodEnum::GET,
|
|
151
|
-
'/user/login',
|
|
152
|
-
Server::DEFAULT)
|
|
153
|
-
.query_param(new_parameter(username, key: 'username'))
|
|
154
|
-
.query_param(new_parameter(password, key: 'password')))
|
|
155
|
-
.response(new_response_handler
|
|
156
|
-
.deserializer(APIHelper.method(:deserialize_primitive_types))
|
|
157
|
-
.deserialize_into(proc do |response| response&.to_s end)
|
|
158
|
-
.is_primitive_response(true)
|
|
159
|
-
.local_error('400',
|
|
160
|
-
'Invalid username/password supplied',
|
|
161
|
-
APIException))
|
|
162
|
-
.execute
|
|
163
|
-
end
|
|
164
|
-
end
|
|
165
|
-
end
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
# swagger_petstore
|
|
2
|
-
#
|
|
3
|
-
# This file was automatically generated by APIMATIC v3.0
|
|
4
|
-
# ( https://www.apimatic.io ).
|
|
5
|
-
|
|
6
|
-
module SwaggerPetstore
|
|
7
|
-
# OAuth 2 Authorization endpoint exception.
|
|
8
|
-
class OAuthProviderException < APIException
|
|
9
|
-
SKIP = Object.new
|
|
10
|
-
private_constant :SKIP
|
|
11
|
-
|
|
12
|
-
# Gets or sets error code.
|
|
13
|
-
# @return [OAuthProviderErrorEnum]
|
|
14
|
-
attr_accessor :error
|
|
15
|
-
|
|
16
|
-
# Gets or sets human-readable text providing additional information on
|
|
17
|
-
# error.
|
|
18
|
-
# Used to assist the client developer in understanding the error that
|
|
19
|
-
# occurred.
|
|
20
|
-
# @return [String]
|
|
21
|
-
attr_accessor :error_description
|
|
22
|
-
|
|
23
|
-
# Gets or sets a URI identifying a human-readable web page with information
|
|
24
|
-
# about the error, used to provide the client developer with additional
|
|
25
|
-
# information about the error.
|
|
26
|
-
# @return [String]
|
|
27
|
-
attr_accessor :error_uri
|
|
28
|
-
|
|
29
|
-
# The constructor.
|
|
30
|
-
# @param [String] reason The reason for raising an exception.
|
|
31
|
-
# @param [HttpResponse] response The HttpReponse of the API call.
|
|
32
|
-
def initialize(reason, response)
|
|
33
|
-
super(reason, response)
|
|
34
|
-
hash = APIHelper.json_deserialize(@response.raw_body)
|
|
35
|
-
unbox(hash)
|
|
36
|
-
end
|
|
37
|
-
|
|
38
|
-
# Populates this object by extracting properties from a hash.
|
|
39
|
-
# @param [Hash] hash The deserialized response sent by the server in the
|
|
40
|
-
# response body.
|
|
41
|
-
def unbox(hash)
|
|
42
|
-
return nil unless hash
|
|
43
|
-
|
|
44
|
-
@error = hash.key?('error') ? hash['error'] : nil
|
|
45
|
-
@error_description =
|
|
46
|
-
hash.key?('error_description') ? hash['error_description'] : SKIP
|
|
47
|
-
@error_uri = hash.key?('error_uri') ? hash['error_uri'] : SKIP
|
|
48
|
-
end
|
|
49
|
-
|
|
50
|
-
# Provides a human-readable string representation of the object.
|
|
51
|
-
def to_s
|
|
52
|
-
class_name = self.class.name.split('::').last
|
|
53
|
-
"<#{class_name} error: #{@error}, error_description: #{@error_description}, error_uri:"\
|
|
54
|
-
" #{@error_uri}>"
|
|
55
|
-
end
|
|
56
|
-
|
|
57
|
-
# Provides a debugging-friendly string with detailed object information.
|
|
58
|
-
def inspect
|
|
59
|
-
class_name = self.class.name.split('::').last
|
|
60
|
-
"<#{class_name} error: #{@error.inspect}, error_description: #{@error_description.inspect},"\
|
|
61
|
-
" error_uri: #{@error_uri.inspect}>"
|
|
62
|
-
end
|
|
63
|
-
end
|
|
64
|
-
end
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
# swagger_petstore
|
|
2
|
-
#
|
|
3
|
-
# This file was automatically generated by APIMATIC v3.0
|
|
4
|
-
# ( https://www.apimatic.io ).
|
|
5
|
-
|
|
6
|
-
module SwaggerPetstore
|
|
7
|
-
# Utility class for custom header authorization.
|
|
8
|
-
class ApiKey < CoreLibrary::HeaderAuth
|
|
9
|
-
# Display error message on occurrence of authentication failure.
|
|
10
|
-
# @returns [String] The oAuth error message.
|
|
11
|
-
def error_message
|
|
12
|
-
'ApiKey: api_key is undefined.'
|
|
13
|
-
end
|
|
14
|
-
|
|
15
|
-
# Initialization constructor.
|
|
16
|
-
def initialize(api_key_credentials)
|
|
17
|
-
auth_params = {}
|
|
18
|
-
auth_params['api_key'] = api_key_credentials.api_key unless
|
|
19
|
-
api_key_credentials.nil? || api_key_credentials.api_key.nil?
|
|
20
|
-
|
|
21
|
-
super auth_params
|
|
22
|
-
end
|
|
23
|
-
end
|
|
24
|
-
|
|
25
|
-
# Data class for ApiKeyCredentials.
|
|
26
|
-
# Data class for ApiKeyCredentials.
|
|
27
|
-
class ApiKeyCredentials
|
|
28
|
-
attr_reader :api_key
|
|
29
|
-
|
|
30
|
-
def initialize(api_key:)
|
|
31
|
-
raise ArgumentError, 'api_key cannot be nil' if api_key.nil?
|
|
32
|
-
|
|
33
|
-
@api_key = api_key
|
|
34
|
-
end
|
|
35
|
-
|
|
36
|
-
def clone_with(api_key: nil)
|
|
37
|
-
api_key ||= self.api_key
|
|
38
|
-
|
|
39
|
-
ApiKeyCredentials.new(api_key: api_key)
|
|
40
|
-
end
|
|
41
|
-
end
|
|
42
|
-
end
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
# swagger_petstore
|
|
2
|
-
#
|
|
3
|
-
# This file was automatically generated by APIMATIC v3.0
|
|
4
|
-
# ( https://www.apimatic.io ).
|
|
5
|
-
|
|
6
|
-
module SwaggerPetstore
|
|
7
|
-
# Utility class for basic authorization.
|
|
8
|
-
class HttpBasic < CoreLibrary::HeaderAuth
|
|
9
|
-
include CoreLibrary
|
|
10
|
-
# Display error message on occurrence of authentication failure.
|
|
11
|
-
# @returns [String] The oAuth error message.
|
|
12
|
-
def error_message
|
|
13
|
-
'HttpBasic: username or passwprd is undefined.'
|
|
14
|
-
end
|
|
15
|
-
|
|
16
|
-
# Initialization constructor.
|
|
17
|
-
def initialize(http_basic_credentials)
|
|
18
|
-
auth_params = {}
|
|
19
|
-
unless http_basic_credentials.nil? ||
|
|
20
|
-
http_basic_credentials.username.nil? ||
|
|
21
|
-
http_basic_credentials.passwprd.nil?
|
|
22
|
-
auth_params['Authorization'] =
|
|
23
|
-
"Basic #{AuthHelper.get_base64_encoded_value(http_basic_credentials.username,
|
|
24
|
-
http_basic_credentials.passwprd)}"
|
|
25
|
-
end
|
|
26
|
-
|
|
27
|
-
super auth_params
|
|
28
|
-
end
|
|
29
|
-
end
|
|
30
|
-
|
|
31
|
-
# Data class for HttpBasicCredentials.
|
|
32
|
-
class HttpBasicCredentials
|
|
33
|
-
attr_reader :username, :passwprd
|
|
34
|
-
|
|
35
|
-
def initialize(username:, passwprd:)
|
|
36
|
-
raise ArgumentError, 'username cannot be nil' if username.nil?
|
|
37
|
-
raise ArgumentError, 'passwprd cannot be nil' if passwprd.nil?
|
|
38
|
-
|
|
39
|
-
@username = username
|
|
40
|
-
@passwprd = passwprd
|
|
41
|
-
end
|
|
42
|
-
|
|
43
|
-
def clone_with(username: nil, passwprd: nil)
|
|
44
|
-
username ||= self.username
|
|
45
|
-
passwprd ||= self.passwprd
|
|
46
|
-
|
|
47
|
-
HttpBasicCredentials.new(username: username, passwprd: passwprd)
|
|
48
|
-
end
|
|
49
|
-
end
|
|
50
|
-
end
|