openapi-generator/samples/client/petstore/ruby/README.md

173 lines
7.0 KiB
Markdown
Raw Normal View History

# petstore
Petstore - the Ruby gem for the Swagger Petstore
2016-03-18 09:47:59 +00:00
This is a sample server Petstore server. You can find out more about Swagger at <a href=\"http://swagger.io\">http://swagger.io</a> or on irc.freenode.net, #swagger. For this sample, you can use the api key \"special-key\" to test the authorization filters
2016-03-18 09:47:59 +00:00
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
2016-03-18 09:47:59 +00:00
- API verion: 1.0.0
- Package version: 1.0.0
- Build date: 2016-03-18T17:42:42.943+08:00
- Build package: class io.swagger.codegen.languages.RubyClientCodegen
## Installation
### Build a gem
2016-03-18 09:47:59 +00:00
To build the Ruby code into a gem:
```shell
gem build petstore.gemspec
```
2016-03-18 09:47:59 +00:00
Then either install the gem locally:
```shell
gem install ./petstore-1.0.0.gem
```
2016-03-18 09:47:59 +00:00
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
2016-03-18 09:47:59 +00:00
Finally add this to the Gemfile:
gem 'petstore', '~> 1.0.0'
2016-03-18 09:47:59 +00:00
### Install from Git
2016-03-18 09:47:59 +00:00
If the Ruby gem is hosted a git repository: https://github.com/YOUR_GIT_USR_ID/YOUR_GIT_REPO_ID
2016-03-18 09:47:59 +00:00
Then add the following in the Gemfile:
2016-03-18 09:47:59 +00:00
gem 'petstore', :git => 'https://github.com/YOUR_GIT_USR_ID/YOUR_GIT_REPO_ID.git'
2016-03-18 09:47:59 +00:00
### Include the Ruby code directly
2016-03-18 09:47:59 +00:00
Include the Ruby code directly using `-I` as follows:
```shell
ruby -Ilib script.rb
```
2015-07-22 07:39:48 +00:00
## Getting Started
2016-03-18 09:47:59 +00:00
Please follow the [installation](#installation) procedure and then run the following code:
```ruby
2016-03-18 09:47:59 +00:00
# Load the gem
require 'petstore'
2016-03-18 09:47:59 +00:00
# Setup authorization
2015-08-18 06:35:54 +00:00
Petstore.configure do |config|
2016-03-18 09:47:59 +00:00
# Configure OAuth2 access token for authorization: petstore_auth
config.access_token = 'YOUR ACCESS TOKEN'
end
api_instance = Petstore::PetApi.new
opts = {
body: Petstore::Pet.new # Pet | Pet object that needs to be added to the store
}
2016-03-18 09:47:59 +00:00
begin
#Add a new pet to the store
api_instance.add_pet(opts)
rescue Petstore::ApiError => e
puts "Exception when calling PetApi->add_pet: #{e}"
end
```
## Documentation for API Endpoints
All URIs are relative to *http://petstore.swagger.io/v2*
Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*Petstore::PetApi* | [**add_pet**](docs/PetApi.md#add_pet) | **POST** /pet | Add a new pet to the store
*Petstore::PetApi* | [**add_pet_using_byte_array**](docs/PetApi.md#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**](docs/PetApi.md#delete_pet) | **DELETE** /pet/{petId} | Deletes a pet
*Petstore::PetApi* | [**find_pets_by_status**](docs/PetApi.md#find_pets_by_status) | **GET** /pet/findByStatus | Finds Pets by status
*Petstore::PetApi* | [**find_pets_by_tags**](docs/PetApi.md#find_pets_by_tags) | **GET** /pet/findByTags | Finds Pets by tags
*Petstore::PetApi* | [**get_pet_by_id**](docs/PetApi.md#get_pet_by_id) | **GET** /pet/{petId} | Find pet by ID
2016-03-18 09:47:59 +00:00
*Petstore::PetApi* | [**get_pet_by_id_in_object**](docs/PetApi.md#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**](docs/PetApi.md#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**](docs/PetApi.md#update_pet) | **PUT** /pet | Update an existing pet
*Petstore::PetApi* | [**update_pet_with_form**](docs/PetApi.md#update_pet_with_form) | **POST** /pet/{petId} | Updates a pet in the store with form data
*Petstore::PetApi* | [**upload_file**](docs/PetApi.md#upload_file) | **POST** /pet/{petId}/uploadImage | uploads an image
*Petstore::StoreApi* | [**delete_order**](docs/StoreApi.md#delete_order) | **DELETE** /store/order/{orderId} | Delete purchase order by ID
*Petstore::StoreApi* | [**find_orders_by_status**](docs/StoreApi.md#find_orders_by_status) | **GET** /store/findByStatus | Finds orders by status
*Petstore::StoreApi* | [**get_inventory**](docs/StoreApi.md#get_inventory) | **GET** /store/inventory | Returns pet inventories by status
2016-03-18 09:47:59 +00:00
*Petstore::StoreApi* | [**get_inventory_in_object**](docs/StoreApi.md#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**](docs/StoreApi.md#get_order_by_id) | **GET** /store/order/{orderId} | Find purchase order by ID
*Petstore::StoreApi* | [**place_order**](docs/StoreApi.md#place_order) | **POST** /store/order | Place an order for a pet
*Petstore::UserApi* | [**create_user**](docs/UserApi.md#create_user) | **POST** /user | Create user
*Petstore::UserApi* | [**create_users_with_array_input**](docs/UserApi.md#create_users_with_array_input) | **POST** /user/createWithArray | Creates list of users with given input array
*Petstore::UserApi* | [**create_users_with_list_input**](docs/UserApi.md#create_users_with_list_input) | **POST** /user/createWithList | Creates list of users with given input array
*Petstore::UserApi* | [**delete_user**](docs/UserApi.md#delete_user) | **DELETE** /user/{username} | Delete user
*Petstore::UserApi* | [**get_user_by_name**](docs/UserApi.md#get_user_by_name) | **GET** /user/{username} | Get user by user name
*Petstore::UserApi* | [**login_user**](docs/UserApi.md#login_user) | **GET** /user/login | Logs user into the system
*Petstore::UserApi* | [**logout_user**](docs/UserApi.md#logout_user) | **GET** /user/logout | Logs out current logged in user session
*Petstore::UserApi* | [**update_user**](docs/UserApi.md#update_user) | **PUT** /user/{username} | Updated user
## Documentation for Models
- [Petstore::Category](docs/Category.md)
- [Petstore::InlineResponse200](docs/InlineResponse200.md)
- [Petstore::Model200Response](docs/Model200Response.md)
- [Petstore::ModelReturn](docs/ModelReturn.md)
- [Petstore::Name](docs/Name.md)
- [Petstore::Order](docs/Order.md)
- [Petstore::Pet](docs/Pet.md)
- [Petstore::SpecialModelName](docs/SpecialModelName.md)
- [Petstore::Tag](docs/Tag.md)
- [Petstore::User](docs/User.md)
## Documentation for Authorization
2016-03-18 09:47:59 +00:00
### test_api_key_header
2016-03-18 09:47:59 +00:00
- **Type**: API key
- **API key parameter name**: test_api_key_header
- **Location**: HTTP header
2016-03-18 09:47:59 +00:00
### api_key
- **Type**: API key
2016-03-18 09:47:59 +00:00
- **API key parameter name**: api_key
- **Location**: HTTP header
2016-03-18 09:47:59 +00:00
### 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
2016-03-18 09:47:59 +00:00
### test_api_client_id
- **Type**: API key
2016-03-18 09:47:59 +00:00
- **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
2016-03-18 09:47:59 +00:00
### petstore_auth
2016-03-18 09:47:59 +00:00
- **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