Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update Swagger API to latest version #77

Merged
merged 2 commits into from
Apr 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .codecov.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ignore:
- "lib/influxdb2/client/models/**/*"
- "lib/influxdb2/apis/generated/**/*"
- "test/influxdb/**/*"
- "apis/lib/influxdb2/apis/generated/**/*"
- "apis/test/influxdb2/**/*"
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## 1.14.0 [unreleased]

### API
1. [#77](https://github.com/influxdata/influxdb-client-ruby/pull/77): Update swagger to latest version

## 1.13.0 [2021-04-01]

### API
Expand Down
3 changes: 3 additions & 0 deletions apis/lib/influxdb2/apis/generated/api/authorizations_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ def delete_authorizations_id_with_http_info(auth_id, opts = {})
# @option opts [String] :user Only show authorizations that belong to a user name.
# @option opts [String] :org_id Only show authorizations that belong to an organization ID.
# @option opts [String] :org Only show authorizations that belong to a organization name.
# @option opts [String] :token Find a token by value.
# @return [Authorizations]
def get_authorizations(opts = {})
data, _status_code, _headers = get_authorizations_with_http_info(opts)
Expand All @@ -103,6 +104,7 @@ def get_authorizations(opts = {})
# @option opts [String] :user Only show authorizations that belong to a user name.
# @option opts [String] :org_id Only show authorizations that belong to an organization ID.
# @option opts [String] :org Only show authorizations that belong to a organization name.
# @option opts [String] :token Find a token by value.
# @return [Array<(Authorizations, Integer, Hash)>] Authorizations data, response status code and response headers
def get_authorizations_with_http_info(opts = {})
if @api_client.config.debugging
Expand All @@ -117,6 +119,7 @@ def get_authorizations_with_http_info(opts = {})
query_params[:'user'] = opts[:'user'] if !opts[:'user'].nil?
query_params[:'orgID'] = opts[:'org_id'] if !opts[:'org_id'].nil?
query_params[:'org'] = opts[:'org'] if !opts[:'org'].nil?
query_params[:'token'] = opts[:'token'] if !opts[:'token'].nil?

# header parameters
header_params = opts[:header_params] || {}
Expand Down