mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-07 19:08:52 +00:00
.. | ||
docs | ||
lib | ||
spec | ||
.gitignore | ||
Gemfile | ||
Gemfile.lock | ||
git_push.sh | ||
hello.txt | ||
petstore_profiling.output | ||
petstore_profiling.rb | ||
petstore.gemspec | ||
pom.xml | ||
press_anykey_to_continue.sh | ||
Rakefile | ||
README.md |
petstore
Petstore - the Ruby gem for the Swagger Petstore
Version: 1.0.0
Automatically generated by the Ruby Swagger Codegen project:
- Build date: 2016-03-14T21:56:19.858+08:00
- Build package: class io.swagger.codegen.languages.RubyClientCodegen
Installation
Build a gem
You can build the generated client into a gem:
gem build petstore.gemspec
Then you can either install the gem:
gem install ./petstore-1.0.0.gem
or publish the gem to a gem server like RubyGems.
Finally add this to your Gemfile:
gem 'petstore', '~> 1.0.0'
Host as a git repository
You can also choose to host the generated client as a git repository, e.g. on github: https://github.com/YOUR_USERNAME/YOUR_REPO
Then you can reference it in Gemfile:
gem 'petstore', :git => 'https://github.com/YOUR_USERNAME/YOUR_REPO.git'
Use without installation
You can also use the client directly like this:
ruby -Ilib script.rb
Getting Started
require 'petstore'
Petstore.configure do |config|
# Use the line below to configure API key authorization if needed:
#config.api_key['api_key'] = 'your api key'
config.host = 'petstore.swagger.io'
config.base_path = '/v2'
# Enable debugging (default is disabled).
config.debugging = true
end
# Assuming there's a `PetApi` containing a `get_pet_by_id` method
# which returns a model object:
pet_api = Petstore::PetApi.new
pet = pet_api.get_pet_by_id(5)
puts pet.to_body
Documentation for API Endpoints
All URIs are relative to http://petstore.swagger.io/v2
Class | Method | HTTP request | Description |
---|---|---|---|
Petstore::PetApi | add_pet | POST /pet | Add a new pet to the store |
Petstore::PetApi | add_pet_using_byte_array | POST /pet?testing_byte_array=true | Fake endpoint to test byte array in body parameter for adding a new pet to the store |
Petstore::PetApi | delete_pet | DELETE /pet/{petId} | Deletes a pet |
Petstore::PetApi | find_pets_by_status | GET /pet/findByStatus | Finds Pets by status |
Petstore::PetApi | find_pets_by_tags | GET /pet/findByTags | Finds Pets by tags |
Petstore::PetApi | get_pet_by_id | GET /pet/{petId} | Find pet by ID |
Petstore::PetApi | get_pet_by_id_in_object | GET /pet/{petId}?response=inline_arbitrary_object | Fake endpoint to test inline arbitrary object return by 'Find pet by ID' |
Petstore::PetApi | pet_pet_idtesting_byte_arraytrue_get | GET /pet/{petId}?testing_byte_array=true | Fake endpoint to test byte array return by 'Find pet by ID' |
Petstore::PetApi | update_pet | PUT /pet | Update an existing pet |
Petstore::PetApi | update_pet_with_form | POST /pet/{petId} | Updates a pet in the store with form data |
Petstore::PetApi | upload_file | POST /pet/{petId}/uploadImage | uploads an image |
Petstore::StoreApi | delete_order | DELETE /store/order/{orderId} | Delete purchase order by ID |
Petstore::StoreApi | find_orders_by_status | GET /store/findByStatus | Finds orders by status |
Petstore::StoreApi | get_inventory | GET /store/inventory | Returns pet inventories by status |
Petstore::StoreApi | get_inventory_in_object | GET /store/inventory?response=arbitrary_object | Fake endpoint to test arbitrary object return by 'Get inventory' |
Petstore::StoreApi | get_order_by_id | GET /store/order/{orderId} | Find purchase order by ID |
Petstore::StoreApi | place_order | POST /store/order | Place an order for a pet |
Petstore::UserApi | create_user | POST /user | Create user |
Petstore::UserApi | create_users_with_array_input | POST /user/createWithArray | Creates list of users with given input array |
Petstore::UserApi | create_users_with_list_input | POST /user/createWithList | Creates list of users with given input array |
Petstore::UserApi | delete_user | DELETE /user/{username} | Delete user |
Petstore::UserApi | get_user_by_name | GET /user/{username} | Get user by user name |
Petstore::UserApi | login_user | GET /user/login | Logs user into the system |
Petstore::UserApi | logout_user | GET /user/logout | Logs out current logged in user session |
Petstore::UserApi | update_user | PUT /user/{username} | Updated user |
Documentation for Models
- Petstore::Category
- Petstore::InlineResponse200
- Petstore::ModelReturn
- Petstore::Name
- Petstore::Order
- Petstore::Pet
- Petstore::SpecialModelName
- Petstore::Tag
- Petstore::User
Documentation for Authorization
test_api_key_header
- Type: API key
- API key parameter name: test_api_key_header
- Location: HTTP header
api_key
- Type: API key
- API key parameter name: api_key
- Location: HTTP header
test_http_basic
- Type: HTTP basic authentication
test_api_client_secret
- Type: API key
- API key parameter name: x-test_api_client_secret
- Location: HTTP header
test_api_client_id
- Type: API key
- API key parameter name: x-test_api_client_id
- Location: HTTP header
test_api_key_query
- Type: API key
- API key parameter name: test_api_key_query
- Location: URL query string
petstore_auth
- Type: OAuth
- Flow: implicit
- Authorizatoin URL: http://petstore.swagger.io/api/oauth/dialog
- Scopes: -- write:pets: modify pets in your account -- read:pets: read your pets