forked from loafle/openapi-generator-original
Support optional parameters in Ruby client
* Pass optional parameters via the `opts` Hash * Handle query parameters in a way similar to header/form parameters to support parameter name normalization, e.g. the "additional_metadata" key is passed for "additionalMetadata" * Rename variables to be consistent: `query_params`, `header_params` and `form_params` * Remove unnecessary blank lines
This commit is contained in:
@@ -4,46 +4,37 @@ class PetApi
|
||||
basePath = "http://petstore.swagger.io/v2"
|
||||
# apiInvoker = APIInvoker
|
||||
|
||||
|
||||
# Update an existing pet
|
||||
#
|
||||
# @param body Pet object that needs to be added to the store
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @option opts [Pet] :body Pet object that needs to be added to the store
|
||||
# @return void
|
||||
def self.updatePet (body, opts={})
|
||||
query_param_keys = []
|
||||
headerParams = {}
|
||||
def self.updatePet(opts = {})
|
||||
# verify existence of params
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
:'body' => body
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/pet".sub('{format}','json')
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = ['application/json', 'application/xml', ]
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = ['application/json', 'application/xml', ]
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
|
||||
|
||||
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
if body != nil
|
||||
if body.is_a?(Array)
|
||||
array = Array.new
|
||||
@@ -63,56 +54,41 @@ class PetApi
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:PUT, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:PUT, path, {:params => query_params,:headers => header_params, :form_params => form_params, :body => post_body}).make
|
||||
end
|
||||
|
||||
# Add a new pet to the store
|
||||
#
|
||||
# @param body Pet object that needs to be added to the store
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @option opts [Pet] :body Pet object that needs to be added to the store
|
||||
# @return void
|
||||
def self.addPet (body, opts={})
|
||||
query_param_keys = []
|
||||
headerParams = {}
|
||||
def self.addPet(opts = {})
|
||||
# verify existence of params
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
:'body' => body
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/pet".sub('{format}','json')
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = ['application/json', 'application/xml', ]
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = ['application/json', 'application/xml', ]
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
|
||||
|
||||
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
if body != nil
|
||||
if body.is_a?(Array)
|
||||
array = Array.new
|
||||
@@ -132,331 +108,236 @@ class PetApi
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:POST, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:POST, path, {:params => query_params,:headers => header_params, :form_params => form_params, :body => post_body}).make
|
||||
end
|
||||
|
||||
# Finds Pets by status
|
||||
# Multiple status values can be provided with comma seperated strings
|
||||
# @param status Status values that need to be considered for filter
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @option opts [array[string]] :status Status values that need to be considered for filter
|
||||
# @return array[Pet]
|
||||
def self.findPetsByStatus (status, opts={})
|
||||
query_param_keys = [:status]
|
||||
headerParams = {}
|
||||
def self.findPetsByStatus(opts = {})
|
||||
# verify existence of params
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
:'status' => status
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/pet/findByStatus".sub('{format}','json')
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
query_params[:'status'] = opts[:'status'] if opts[:'status']
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = []
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = []
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
|
||||
|
||||
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
|
||||
response = Swagger::Request.new(:GET, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make.body
|
||||
|
||||
|
||||
response = Swagger::Request.new(:GET, path, {:params => query_params, :headers => header_params, :form_params => form_params, :body => post_body}).make.body
|
||||
response.map {|response| Pet.new(response) }
|
||||
|
||||
|
||||
|
||||
end
|
||||
|
||||
# Finds Pets by tags
|
||||
# Muliple tags can be provided with comma seperated strings. Use tag1, tag2, tag3 for testing.
|
||||
# @param tags Tags to filter by
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @option opts [array[string]] :tags Tags to filter by
|
||||
# @return array[Pet]
|
||||
def self.findPetsByTags (tags, opts={})
|
||||
query_param_keys = [:tags]
|
||||
headerParams = {}
|
||||
def self.findPetsByTags(opts = {})
|
||||
# verify existence of params
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
:'tags' => tags
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/pet/findByTags".sub('{format}','json')
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
query_params[:'tags'] = opts[:'tags'] if opts[:'tags']
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = []
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = []
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
|
||||
|
||||
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
|
||||
response = Swagger::Request.new(:GET, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make.body
|
||||
|
||||
|
||||
response = Swagger::Request.new(:GET, path, {:params => query_params, :headers => header_params, :form_params => form_params, :body => post_body}).make.body
|
||||
response.map {|response| Pet.new(response) }
|
||||
|
||||
|
||||
|
||||
end
|
||||
|
||||
# Find pet by ID
|
||||
# Returns a pet when ID < 10. ID > 10 or nonintegers will simulate API error conditions
|
||||
# @param pet_id ID of pet that needs to be fetched
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @return Pet
|
||||
def self.getPetById (pet_id, opts={})
|
||||
query_param_keys = []
|
||||
headerParams = {}
|
||||
def self.getPetById(pet_id, opts = {})
|
||||
# verify existence of params
|
||||
raise "pet_id is required" if pet_id.nil?
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
:'pet_id' => pet_id
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/pet/{petId}".sub('{format}','json').sub('{' + 'petId' + '}', pet_id.to_s)
|
||||
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = []
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = []
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
|
||||
|
||||
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
|
||||
response = Swagger::Request.new(:GET, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make.body
|
||||
Pet.new(response)
|
||||
|
||||
|
||||
|
||||
|
||||
response = Swagger::Request.new(:GET, path, {:params => query_params, :headers => header_params, :form_params => form_params, :body => post_body}).make.body
|
||||
Pet.new(response)
|
||||
end
|
||||
|
||||
# Updates a pet in the store with form data
|
||||
#
|
||||
# @param pet_id ID of pet that needs to be updated
|
||||
# @param name Updated name of the pet
|
||||
# @param status Updated status of the pet
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @option opts [string] :name Updated name of the pet
|
||||
# @option opts [string] :status Updated status of the pet
|
||||
# @return void
|
||||
def self.updatePetWithForm (pet_id, name, status, opts={})
|
||||
query_param_keys = []
|
||||
headerParams = {}
|
||||
def self.updatePetWithForm(pet_id, opts = {})
|
||||
# verify existence of params
|
||||
raise "pet_id is required" if pet_id.nil?
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
:'pet_id' => pet_id,
|
||||
:'name' => name,
|
||||
:'status' => status
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/pet/{petId}".sub('{format}','json').sub('{' + 'petId' + '}', pet_id.to_s)
|
||||
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = ['application/x-www-form-urlencoded', ]
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = ['application/x-www-form-urlencoded', ]
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
form_params["name"] = opts[:'name'] if opts[:'name']
|
||||
form_params["status"] = opts[:'status'] if opts[:'status']
|
||||
|
||||
|
||||
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
form_parameter_hash["name"] = name
|
||||
form_parameter_hash["status"] = status
|
||||
|
||||
|
||||
Swagger::Request.new(:POST, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:POST, path, {:params => query_params,:headers => header_params, :form_params => form_params, :body => post_body}).make
|
||||
end
|
||||
|
||||
# Deletes a pet
|
||||
#
|
||||
# @param api_key
|
||||
# @param pet_id Pet id to delete
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @option opts [string] :api_key
|
||||
# @return void
|
||||
def self.deletePet (api_key, pet_id, opts={})
|
||||
query_param_keys = []
|
||||
headerParams = {}
|
||||
def self.deletePet(pet_id, opts = {})
|
||||
# verify existence of params
|
||||
raise "pet_id is required" if pet_id.nil?
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
:'api_key' => api_key,
|
||||
:'pet_id' => pet_id
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/pet/{petId}".sub('{format}','json').sub('{' + 'petId' + '}', pet_id.to_s)
|
||||
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = []
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = []
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
header_params[:'api_key'] = opts[:'api_key'] if opts[:'api_key']
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
|
||||
|
||||
headers[:'api_key'] = api_key
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:DELETE, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:DELETE, path, {:params => query_params,:headers => header_params, :form_params => form_params, :body => post_body}).make
|
||||
end
|
||||
|
||||
# uploads an image
|
||||
#
|
||||
# @param pet_id ID of pet to update
|
||||
# @param additional_metadata Additional data to pass to server
|
||||
# @param file file to upload
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @option opts [string] :additionalMetadata Additional data to pass to server
|
||||
# @option opts [file] :file file to upload
|
||||
# @return void
|
||||
def self.uploadFile (pet_id, additional_metadata, file, opts={})
|
||||
query_param_keys = []
|
||||
headerParams = {}
|
||||
def self.uploadFile(pet_id, opts = {})
|
||||
# verify existence of params
|
||||
raise "pet_id is required" if pet_id.nil?
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
:'pet_id' => pet_id,
|
||||
:'additional_metadata' => additional_metadata,
|
||||
:'file' => file
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/pet/{petId}/uploadImage".sub('{format}','json').sub('{' + 'petId' + '}', pet_id.to_s)
|
||||
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = ['multipart/form-data', ]
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = ['multipart/form-data', ]
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
form_params["additionalMetadata"] = opts[:'additional_metadata'] if opts[:'additional_metadata']
|
||||
form_params["file"] = opts[:'file'] if opts[:'file']
|
||||
|
||||
|
||||
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
form_parameter_hash["additionalMetadata"] = additional_metadata
|
||||
form_parameter_hash["file"] = file
|
||||
|
||||
|
||||
Swagger::Request.new(:POST, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:POST, path, {:params => query_params,:headers => header_params, :form_params => form_params, :body => post_body}).make
|
||||
end
|
||||
end
|
||||
|
||||
@@ -4,95 +4,72 @@ class StoreApi
|
||||
basePath = "http://petstore.swagger.io/v2"
|
||||
# apiInvoker = APIInvoker
|
||||
|
||||
|
||||
# Returns pet inventories by status
|
||||
# Returns a map of status codes to quantities
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @return map[string,int]
|
||||
def self.getInventory (opts={})
|
||||
query_param_keys = []
|
||||
headerParams = {}
|
||||
def self.getInventory(opts = {})
|
||||
# verify existence of params
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/store/inventory".sub('{format}','json')
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = []
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = []
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
|
||||
|
||||
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
|
||||
response = Swagger::Request.new(:GET, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make.body
|
||||
|
||||
|
||||
response = Swagger::Request.new(:GET, path, {:params => query_params, :headers => header_params, :form_params => form_params, :body => post_body}).make.body
|
||||
response.map {|response| map.new(response) }
|
||||
|
||||
|
||||
|
||||
end
|
||||
|
||||
# Place an order for a pet
|
||||
#
|
||||
# @param body order placed for purchasing the pet
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @option opts [Order] :body order placed for purchasing the pet
|
||||
# @return Order
|
||||
def self.placeOrder (body, opts={})
|
||||
query_param_keys = []
|
||||
headerParams = {}
|
||||
def self.placeOrder(opts = {})
|
||||
# verify existence of params
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
:'body' => body
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/store/order".sub('{format}','json')
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = []
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = []
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
|
||||
|
||||
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
if body != nil
|
||||
if body.is_a?(Array)
|
||||
array = Array.new
|
||||
@@ -112,116 +89,81 @@ class StoreApi
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
|
||||
response = Swagger::Request.new(:POST, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make.body
|
||||
Order.new(response)
|
||||
|
||||
|
||||
|
||||
|
||||
response = Swagger::Request.new(:POST, path, {:params => query_params, :headers => header_params, :form_params => form_params, :body => post_body}).make.body
|
||||
Order.new(response)
|
||||
end
|
||||
|
||||
# Find purchase order by ID
|
||||
# For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
|
||||
# @param order_id ID of pet that needs to be fetched
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @return Order
|
||||
def self.getOrderById (order_id, opts={})
|
||||
query_param_keys = []
|
||||
headerParams = {}
|
||||
def self.getOrderById(order_id, opts = {})
|
||||
# verify existence of params
|
||||
raise "order_id is required" if order_id.nil?
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
:'order_id' => order_id
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/store/order/{orderId}".sub('{format}','json').sub('{' + 'orderId' + '}', order_id.to_s)
|
||||
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = []
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = []
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
|
||||
|
||||
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
|
||||
response = Swagger::Request.new(:GET, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make.body
|
||||
Order.new(response)
|
||||
|
||||
|
||||
|
||||
|
||||
response = Swagger::Request.new(:GET, path, {:params => query_params, :headers => header_params, :form_params => form_params, :body => post_body}).make.body
|
||||
Order.new(response)
|
||||
end
|
||||
|
||||
# Delete purchase order by ID
|
||||
# For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
# @param order_id ID of the order that needs to be deleted
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @return void
|
||||
def self.deleteOrder (order_id, opts={})
|
||||
query_param_keys = []
|
||||
headerParams = {}
|
||||
def self.deleteOrder(order_id, opts = {})
|
||||
# verify existence of params
|
||||
raise "order_id is required" if order_id.nil?
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
:'order_id' => order_id
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/store/order/{orderId}".sub('{format}','json').sub('{' + 'orderId' + '}', order_id.to_s)
|
||||
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = []
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = []
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
|
||||
|
||||
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:DELETE, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:DELETE, path, {:params => query_params,:headers => header_params, :form_params => form_params, :body => post_body}).make
|
||||
end
|
||||
end
|
||||
|
||||
@@ -4,46 +4,37 @@ class UserApi
|
||||
basePath = "http://petstore.swagger.io/v2"
|
||||
# apiInvoker = APIInvoker
|
||||
|
||||
|
||||
# Create user
|
||||
# This can only be done by the logged in user.
|
||||
# @param body Created user object
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @option opts [User] :body Created user object
|
||||
# @return void
|
||||
def self.createUser (body, opts={})
|
||||
query_param_keys = []
|
||||
headerParams = {}
|
||||
def self.createUser(opts = {})
|
||||
# verify existence of params
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
:'body' => body
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/user".sub('{format}','json')
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = []
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = []
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
|
||||
|
||||
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
if body != nil
|
||||
if body.is_a?(Array)
|
||||
array = Array.new
|
||||
@@ -63,56 +54,41 @@ class UserApi
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:POST, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:POST, path, {:params => query_params,:headers => header_params, :form_params => form_params, :body => post_body}).make
|
||||
end
|
||||
|
||||
# Creates list of users with given input array
|
||||
#
|
||||
# @param body List of user object
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @option opts [array[User]] :body List of user object
|
||||
# @return void
|
||||
def self.createUsersWithArrayInput (body, opts={})
|
||||
query_param_keys = []
|
||||
headerParams = {}
|
||||
def self.createUsersWithArrayInput(opts = {})
|
||||
# verify existence of params
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
:'body' => body
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/user/createWithArray".sub('{format}','json')
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = []
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = []
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
|
||||
|
||||
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
if body != nil
|
||||
if body.is_a?(Array)
|
||||
array = Array.new
|
||||
@@ -132,56 +108,41 @@ class UserApi
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:POST, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:POST, path, {:params => query_params,:headers => header_params, :form_params => form_params, :body => post_body}).make
|
||||
end
|
||||
|
||||
# Creates list of users with given input array
|
||||
#
|
||||
# @param body List of user object
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @option opts [array[User]] :body List of user object
|
||||
# @return void
|
||||
def self.createUsersWithListInput (body, opts={})
|
||||
query_param_keys = []
|
||||
headerParams = {}
|
||||
def self.createUsersWithListInput(opts = {})
|
||||
# verify existence of params
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
:'body' => body
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/user/createWithList".sub('{format}','json')
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = []
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = []
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
|
||||
|
||||
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
if body != nil
|
||||
if body.is_a?(Array)
|
||||
array = Array.new
|
||||
@@ -201,209 +162,153 @@ class UserApi
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:POST, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:POST, path, {:params => query_params,:headers => header_params, :form_params => form_params, :body => post_body}).make
|
||||
end
|
||||
|
||||
# Logs user into the system
|
||||
#
|
||||
# @param username The user name for login
|
||||
# @param password The password for login in clear text
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @option opts [string] :username The user name for login
|
||||
# @option opts [string] :password The password for login in clear text
|
||||
# @return string
|
||||
def self.loginUser (username, password, opts={})
|
||||
query_param_keys = [:username,:password]
|
||||
headerParams = {}
|
||||
def self.loginUser(opts = {})
|
||||
# verify existence of params
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
:'username' => username,
|
||||
:'password' => password
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/user/login".sub('{format}','json')
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
query_params[:'username'] = opts[:'username'] if opts[:'username']
|
||||
query_params[:'password'] = opts[:'password'] if opts[:'password']
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = []
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = []
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
|
||||
|
||||
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
|
||||
response = Swagger::Request.new(:GET, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make.body
|
||||
string.new(response)
|
||||
|
||||
|
||||
|
||||
|
||||
response = Swagger::Request.new(:GET, path, {:params => query_params, :headers => header_params, :form_params => form_params, :body => post_body}).make.body
|
||||
string.new(response)
|
||||
end
|
||||
|
||||
# Logs out current logged in user session
|
||||
#
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @return void
|
||||
def self.logoutUser (opts={})
|
||||
query_param_keys = []
|
||||
headerParams = {}
|
||||
def self.logoutUser(opts = {})
|
||||
# verify existence of params
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/user/logout".sub('{format}','json')
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = []
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = []
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
|
||||
|
||||
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:GET, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:GET, path, {:params => query_params,:headers => header_params, :form_params => form_params, :body => post_body}).make
|
||||
end
|
||||
|
||||
# Get user by user name
|
||||
#
|
||||
# @param username The name that needs to be fetched. Use user1 for testing.
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @return User
|
||||
def self.getUserByName (username, opts={})
|
||||
query_param_keys = []
|
||||
headerParams = {}
|
||||
def self.getUserByName(username, opts = {})
|
||||
# verify existence of params
|
||||
raise "username is required" if username.nil?
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
:'username' => username
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/user/{username}".sub('{format}','json').sub('{' + 'username' + '}', username.to_s)
|
||||
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = []
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = []
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
|
||||
|
||||
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
|
||||
response = Swagger::Request.new(:GET, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make.body
|
||||
User.new(response)
|
||||
|
||||
|
||||
|
||||
|
||||
response = Swagger::Request.new(:GET, path, {:params => query_params, :headers => header_params, :form_params => form_params, :body => post_body}).make.body
|
||||
User.new(response)
|
||||
end
|
||||
|
||||
# Updated user
|
||||
# This can only be done by the logged in user.
|
||||
# @param username name that need to be deleted
|
||||
# @param body Updated user object
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @option opts [User] :body Updated user object
|
||||
# @return void
|
||||
def self.updateUser (username, body, opts={})
|
||||
query_param_keys = []
|
||||
headerParams = {}
|
||||
def self.updateUser(username, opts = {})
|
||||
# verify existence of params
|
||||
raise "username is required" if username.nil?
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
:'username' => username,
|
||||
:'body' => body
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/user/{username}".sub('{format}','json').sub('{' + 'username' + '}', username.to_s)
|
||||
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = []
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = []
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
|
||||
|
||||
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
if body != nil
|
||||
if body.is_a?(Array)
|
||||
array = Array.new
|
||||
@@ -423,64 +328,43 @@ class UserApi
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:PUT, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:PUT, path, {:params => query_params,:headers => header_params, :form_params => form_params, :body => post_body}).make
|
||||
end
|
||||
|
||||
# Delete user
|
||||
# This can only be done by the logged in user.
|
||||
# @param username The name that needs to be deleted
|
||||
# @param [Hash] opts the optional parameters
|
||||
# @return void
|
||||
def self.deleteUser (username, opts={})
|
||||
query_param_keys = []
|
||||
headerParams = {}
|
||||
def self.deleteUser(username, opts = {})
|
||||
# verify existence of params
|
||||
raise "username is required" if username.nil?
|
||||
|
||||
|
||||
|
||||
# set default values and merge with input
|
||||
options = {
|
||||
:'username' => username
|
||||
|
||||
}.merge(opts)
|
||||
|
||||
#resource path
|
||||
# resource path
|
||||
path = "/user/{username}".sub('{format}','json').sub('{' + 'username' + '}', username.to_s)
|
||||
|
||||
|
||||
# pull querystring keys from options
|
||||
queryopts = options.select do |key,value|
|
||||
query_param_keys.include? key
|
||||
end
|
||||
|
||||
# query parameters
|
||||
query_params = {}
|
||||
|
||||
|
||||
# header parameters
|
||||
headers = {}
|
||||
header_params = {}
|
||||
|
||||
_header_accept = 'application/json, application/xml'
|
||||
if _header_accept != ''
|
||||
headerParams['Accept'] = _header_accept
|
||||
end
|
||||
_header_content_type = []
|
||||
headerParams['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
header_params['Accept'] = _header_accept if _header_accept != ''
|
||||
|
||||
_header_content_type = []
|
||||
header_params['Content-Type'] = _header_content_type.length > 0 ? _header_content_type[0] : 'application/json'
|
||||
|
||||
|
||||
# form parameters
|
||||
form_params = {}
|
||||
|
||||
|
||||
|
||||
|
||||
# http body (model)
|
||||
post_body = nil
|
||||
|
||||
# form parameters
|
||||
form_parameter_hash = {}
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:DELETE, path, {:params=>queryopts,:headers=>headers, :body=>post_body, :form_params => form_parameter_hash }).make
|
||||
|
||||
|
||||
|
||||
Swagger::Request.new(:DELETE, path, {:params => query_params,:headers => header_params, :form_params => form_params, :body => post_body}).make
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user