Skip to content

Commit 8feea22

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.525.2
1 parent 644c15f commit 8feea22

File tree

495 files changed

+9883
-8308
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

495 files changed

+9883
-8308
lines changed

.rubocop.yml

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
plugins:
2+
- rubocop-minitest
3+
14
AllCops:
25
Exclude:
36
- Rakefile

.speakeasy/gen.lock

+377-607
Large diffs are not rendered by default.

.speakeasy/gen.yaml

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,21 @@ generation:
77
useClassNamesForArrayFields: true
88
fixes:
99
nameResolutionDec2023: true
10+
nameResolutionFeb2025: false
1011
parameterOrderingFeb2024: true
1112
requestResponseComponentNamesFeb2024: true
13+
securityFeb2025: false
1214
auth:
1315
oAuth2ClientCredentialsEnabled: true
16+
oAuth2PasswordEnabled: false
1417
ruby:
15-
version: 4.2.24
18+
version: 4.3.0
19+
additionalDependencies:
20+
development: {}
21+
runtime: {}
1622
author: Speakeasy
1723
description: Ruby Client SDK Generated by Speakeasy
24+
flattenGlobalSecurity: false
1825
imports:
1926
option: openapi
2027
paths:

.speakeasy/workflow.lock

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
speakeasyVersion: 1.405.8
1+
speakeasyVersion: 1.525.2
22
sources: {}
33
targets:
44
speakeasy-client-sdk:
@@ -21,3 +21,9 @@ workflow:
2121
publish:
2222
rubygems:
2323
token: $rubygems_auth_token
24+
codeSamples:
25+
registry:
26+
location: registry.speakeasyapi.dev/speakeasy-self/speakeasy-self/-oas-ruby-code-samples
27+
labelOverride:
28+
fixedValue: Ruby (SDK)
29+
blocking: false

.speakeasy/workflow.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,9 @@ targets:
1515
publish:
1616
rubygems:
1717
token: $rubygems_auth_token
18+
codeSamples:
19+
registry:
20+
location: registry.speakeasyapi.dev/speakeasy-self/speakeasy-self/-oas-ruby-code-samples
21+
labelOverride:
22+
fixedValue: Ruby (SDK)
23+
blocking: false

README.md

+207-84
Large diffs are not rendered by default.

RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,14 @@ Based on:
3434
### Generated
3535
- [ruby v4.2.24] .
3636
### Releases
37-
- [Ruby Gems v4.2.24] https://rubygems.org/gems/speakeasy_client_sdk_ruby/versions/4.2.24 - .
37+
- [Ruby Gems v4.2.24] https://rubygems.org/gems/speakeasy_client_sdk_ruby/versions/4.2.24 - .
38+
39+
## 2025-03-28 00:13:10
40+
### Changes
41+
Based on:
42+
- OpenAPI Doc
43+
- Speakeasy CLI 1.525.2 (2.562.3) https://github.com/speakeasy-api/speakeasy
44+
### Generated
45+
- [ruby v4.3.0] .
46+
### Releases
47+
- [Ruby Gems v4.3.0] https://rubygems.org/gems/speakeasy_client_sdk_ruby/versions/4.3.0 - .

Rakefile

+10-8
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@ RuboCop::RakeTask.new
99

1010
Minitest::TestTask.create
1111

12-
# So far default is working - leaving this here for reference.
12+
task :default => :test
1313

14-
# Minitest::TestTask.create(:test) do |t|
15-
# t.libs << 'test'
16-
# t.libs << 'lib'
17-
# t.warning = false
18-
# t.test_globs = ['test/**/*_test.rb']
19-
# end
2014

21-
task :default => :test
15+
# Developers can run all tests with:
16+
#
17+
# $ rake test
18+
#
19+
# Developers can run individual test files with:
20+
#
21+
# $ rake test test/parameter_test
22+
#
23+
# and run individual tests by adding `focus` to the line before the test definition.

USAGE.md

+7-16
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,15 @@
22
```ruby
33
require 'speakeasy_client_sdk_ruby'
44

5+
s = ::OpenApiSDK::SpeakeasyClientSDK.new(
6+
security: ::OpenApiSDK::Shared::Security.new(
7+
api_key: "<YOUR_API_KEY_HERE>",
8+
),
9+
)
510

6-
s = ::OpenApiSDK::SpeakeasyClientSDK.new
7-
s.config_security(
8-
::OpenApiSDK::Shared::Security.new(
9-
api_key: "<YOUR_API_KEY_HERE>",
10-
)
11-
)
11+
res = s.auth.validate_api_key()
1212

13-
14-
res = s.apis.get_all(op=::OpenApiSDK::Operations::Op.new(
15-
and_: false,
16-
), metadata={
17-
"key": [
18-
"<value>",
19-
],
20-
})
21-
22-
if ! res.apis.nil?
13+
if ! res.api_key_details.nil?
2314
# handle response
2415
end
2516

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# ActivateSubscriptionNamespaceRequest
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| ---------------------------- | ---------------------------- | ---------------------------- | ---------------------------- |
8+
| `subscription_id` | *::String* | :heavy_check_mark: | The existing subscription ID |
9+
| `namespace_name` | *::String* | :heavy_check_mark: | The namespace name |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# ActivateSubscriptionNamespaceResponse
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
8+
| `content_type` | *::String* | :heavy_check_mark: | HTTP response content type for this operation |
9+
| `status_code` | *::Integer* | :heavy_check_mark: | HTTP response status code for this operation |
10+
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
11+
| `error` | [T.nilable(::OpenApiSDK::Shared::Error)](../../models/shared/error.md) | :heavy_minus_sign: | Default error response |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# ArchiveNamespaceRequest
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
8+
| `namespace_name` | *::String* | :heavy_check_mark: | N/A |
9+
| `request_body` | [T.nilable(::OpenApiSDK::Operations::ArchiveNamespaceRequestBody)](../../models/operations/archivenamespacerequestbody.md) | :heavy_minus_sign: | Archived status |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# ArchiveNamespaceRequestBody
2+
3+
Archived status
4+
5+
6+
## Fields
7+
8+
| Field | Type | Required | Description |
9+
| ----------------------- | ----------------------- | ----------------------- | ----------------------- |
10+
| `archived` | *T.nilable(T::Boolean)* | :heavy_minus_sign: | N/A |

docs/models/operations/registerschemaresponse.md renamed to docs/models/operations/archivenamespaceresponse.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RegisterSchemaResponse
1+
# ArchiveNamespaceResponse
22

33

44
## Fields
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# CreateBillingAddOnsResponse
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
8+
| `content_type` | *::String* | :heavy_check_mark: | HTTP response content type for this operation |
9+
| `status_code` | *::Integer* | :heavy_check_mark: | HTTP response status code for this operation |
10+
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
11+
| `organization_billing_add_on_response` | [T.nilable(::OpenApiSDK::Shared::OrganizationBillingAddOnResponse)](../../models/shared/organizationbillingaddonresponse.md) | :heavy_minus_sign: | Success |
12+
| `error` | [T.nilable(::OpenApiSDK::Shared::Error)](../../models/shared/error.md) | :heavy_minus_sign: | Error |

docs/models/operations/deleteapiendpointresponse.md renamed to docs/models/operations/createremotesourceresponse.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# DeleteApiEndpointResponse
1+
# CreateRemoteSourceResponse
22

33

44
## Fields
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# CreateSchemaStoreItemRequestBody
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- |
8+
| `spec` | *::String* | :heavy_check_mark: | N/A |
9+
| `format` | [::OpenApiSDK::Operations::Format](../../models/operations/format.md) | :heavy_check_mark: | N/A |
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# InsertVersionMetadataResponse
1+
# CreateSchemaStoreItemResponse
22

33

44
## Fields
@@ -8,5 +8,5 @@
88
| `content_type` | *::String* | :heavy_check_mark: | HTTP response content type for this operation |
99
| `status_code` | *::Integer* | :heavy_check_mark: | HTTP response status code for this operation |
1010
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
11-
| `version_metadata` | [T.nilable(::OpenApiSDK::Shared::VersionMetadata)](../../models/shared/versionmetadata.md) | :heavy_minus_sign: | OK |
11+
| `schema_store_item` | [T.nilable(::OpenApiSDK::Shared::SchemaStoreItem)](../../models/shared/schemastoreitem.md) | :heavy_minus_sign: | OK |
1212
| `error` | [T.nilable(::OpenApiSDK::Shared::Error)](../../models/shared/error.md) | :heavy_minus_sign: | Default error response |

docs/models/operations/createworkspacetokenrequest.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55

66
| Field | Type | Required | Description |
77
| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
8-
| `workspace_id` | *::String* | :heavy_check_mark: | Unique identifier of the workspace. |
9-
| `workspace_token` | [::OpenApiSDK::Shared::WorkspaceToken](../../models/shared/workspacetoken.md) | :heavy_check_mark: | N/A |
8+
| `workspace_token` | [::OpenApiSDK::Shared::WorkspaceToken](../../models/shared/workspacetoken.md) | :heavy_check_mark: | N/A |
9+
| `workspace_id` | *T.nilable(::String)* | :heavy_minus_sign: | Unique identifier of the workspace. |

docs/models/operations/deleteapiendpointrequest.md

-10
This file was deleted.

docs/models/operations/deleteapirequest.md

-9
This file was deleted.

0 commit comments

Comments
 (0)