-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: regenerated with OpenAPI Doc 0.4.0 ., Speakeasy CLI 1.277.8
- Loading branch information
1 parent
fda34c0
commit d36f9ca
Showing
17 changed files
with
243 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# PostTagsRequest | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | | ||
| `add_tags` | [T.nilable(::SpeakeasyClientSDK::Shared::AddTags)](../../models/shared/addtags.md) | :heavy_minus_sign: | A JSON representation of the tags to add | | ||
| `namespace_name` | *::String* | :heavy_check_mark: | N/A | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# PostTagsResponse | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | | ||
| `content_type` | *::String* | :heavy_check_mark: | HTTP response content type for this operation | | ||
| `error` | [T.nilable(::SpeakeasyClientSDK::Shared::Error)](../../models/shared/error.md) | :heavy_minus_sign: | Default error response | | ||
| `status_code` | *::Integer* | :heavy_check_mark: | HTTP response status code for this operation | | ||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# AddTags | ||
|
||
Request body of tags to add to a revision | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ------------------------------------------ | ------------------------------------------ | ------------------------------------------ | ------------------------------------------ | | ||
| `revision_digest` | *::String* | :heavy_check_mark: | revision digest to add tags too sha256:... | | ||
| `tags` | T::Array<*::String*> | :heavy_check_mark: | string tags to add to the revision | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
lib/speakeasy_client_sdk/models/operations/posttags_request.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. | ||
|
||
# typed: true | ||
# frozen_string_literal: true | ||
|
||
|
||
module SpeakeasyClientSDK | ||
module Operations | ||
|
||
|
||
class PostTagsRequest < ::SpeakeasyClientSDK::Utils::FieldAugmented | ||
extend T::Sig | ||
|
||
|
||
field :namespace_name, ::String, { 'path_param': { 'field_name': 'namespace_name', 'style': 'simple', 'explode': false } } | ||
# A JSON representation of the tags to add | ||
field :add_tags, T.nilable(::SpeakeasyClientSDK::Shared::AddTags), { 'request': { 'media_type': 'application/json' } } | ||
|
||
|
||
sig { params(namespace_name: ::String, add_tags: T.nilable(::SpeakeasyClientSDK::Shared::AddTags)).void } | ||
def initialize(namespace_name: nil, add_tags: nil) | ||
@namespace_name = namespace_name | ||
@add_tags = add_tags | ||
end | ||
end | ||
end | ||
end |
33 changes: 33 additions & 0 deletions
33
lib/speakeasy_client_sdk/models/operations/posttags_response.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. | ||
|
||
# typed: true | ||
# frozen_string_literal: true | ||
|
||
|
||
module SpeakeasyClientSDK | ||
module Operations | ||
|
||
|
||
class PostTagsResponse < ::SpeakeasyClientSDK::Utils::FieldAugmented | ||
extend T::Sig | ||
|
||
# HTTP response content type for this operation | ||
field :content_type, ::String | ||
# Raw HTTP response; suitable for custom response parsing | ||
field :raw_response, ::Faraday::Response | ||
# HTTP response status code for this operation | ||
field :status_code, ::Integer | ||
# Default error response | ||
field :error, T.nilable(::SpeakeasyClientSDK::Shared::Error) | ||
|
||
|
||
sig { params(content_type: ::String, raw_response: ::Faraday::Response, status_code: ::Integer, error: T.nilable(::SpeakeasyClientSDK::Shared::Error)).void } | ||
def initialize(content_type: nil, raw_response: nil, status_code: nil, error: nil) | ||
@content_type = content_type | ||
@raw_response = raw_response | ||
@status_code = status_code | ||
@error = error | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. | ||
|
||
# typed: true | ||
# frozen_string_literal: true | ||
|
||
|
||
module SpeakeasyClientSDK | ||
module Shared | ||
|
||
# Request body of tags to add to a revision | ||
class AddTags < ::SpeakeasyClientSDK::Utils::FieldAugmented | ||
extend T::Sig | ||
|
||
# revision digest to add tags too sha256:... | ||
field :revision_digest, ::String, { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('revision_digest') } } | ||
# string tags to add to the revision | ||
field :tags, T::Array[::String], { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('tags') } } | ||
|
||
|
||
sig { params(revision_digest: ::String, tags: T::Array[::String]).void } | ||
def initialize(revision_digest: nil, tags: nil) | ||
@revision_digest = revision_digest | ||
@tags = tags | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters