Skip to content

Commit

Permalink
Update provider based on openapi.yaml changes
Browse files Browse the repository at this point in the history
  • Loading branch information
team-k8s-bot committed Jan 27, 2025
1 parent cb5ff91 commit 7df17ca
Show file tree
Hide file tree
Showing 65 changed files with 5,167 additions and 650 deletions.
251 changes: 237 additions & 14 deletions .speakeasy/gen.lock

Large diffs are not rendered by default.

1,397 changes: 1,397 additions & 0 deletions configstores.go

Large diffs are not rendered by default.

1,447 changes: 1,447 additions & 0 deletions configstoresecrets.go

Large diffs are not rendered by default.

456 changes: 0 additions & 456 deletions customplugins.go

This file was deleted.

11 changes: 11 additions & 0 deletions docs/models/components/configstore.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# ConfigStore


## Fields

| Field | Type | Required | Description | Example |
| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
| `ID` | **string* | :heavy_minus_sign: | The Config Store ID. | b9e81174-b5bb-4638-a3c3-8afe61a0abf8 |
| `Name` | **string* | :heavy_minus_sign: | The name of the Config Store | My Name |
| `CreatedAt` | [*time.Time](https://pkg.go.dev/time#Time) | :heavy_minus_sign: | An ISO-8601 timestamp representation of entity creation date. | 2022-11-04T20:10:06.927Z |
| `UpdatedAt` | [*time.Time](https://pkg.go.dev/time#Time) | :heavy_minus_sign: | An ISO-8601 timestamp representation of entity update date. | 2022-11-04T20:10:06.927Z |
13 changes: 13 additions & 0 deletions docs/models/components/configstoresecret.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# ConfigStoreSecret

Config Store Secret


## Fields

| Field | Type | Required | Description | Example |
| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
| `Key` | **string* | :heavy_minus_sign: | N/A | |
| `Value` | **string* | :heavy_minus_sign: | N/A | |
| `CreatedAt` | [*time.Time](https://pkg.go.dev/time#Time) | :heavy_minus_sign: | An ISO-8601 timestamp representation of entity creation date. | 2022-11-04T20:10:06.927Z |
| `UpdatedAt` | [*time.Time](https://pkg.go.dev/time#Time) | :heavy_minus_sign: | An ISO-8601 timestamp representation of entity update date. | 2022-11-04T20:10:06.927Z |
10 changes: 10 additions & 0 deletions docs/models/components/createconfigstore.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# CreateConfigStore

The request schema to create a Config Store.


## Fields

| Field | Type | Required | Description | Example |
| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |
| `Name` | **string* | :heavy_minus_sign: | N/A | Config Store |
9 changes: 9 additions & 0 deletions docs/models/components/createconfigstoresecret.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# CreateConfigStoreSecret


## Fields

| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `Key` | *string* | :heavy_check_mark: | N/A |
| `Value` | *string* | :heavy_check_mark: | N/A |
10 changes: 10 additions & 0 deletions docs/models/components/cursormeta.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# CursorMeta

Pagination metadata.


## Fields

| Field | Type | Required | Description |
| ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- |
| `Page` | [components.CursorMetaPage](../../models/components/cursormetapage.md) | :heavy_check_mark: | N/A |
12 changes: 12 additions & 0 deletions docs/models/components/cursormetapage.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# CursorMetaPage


## Fields

| Field | Type | Required | Description | Example |
| ------------------------ | ------------------------ | ------------------------ | ------------------------ | ------------------------ |
| `First` | **string* | :heavy_minus_sign: | URI to the first page | |
| `Last` | **string* | :heavy_minus_sign: | URI to the last page | |
| `Next` | *string* | :heavy_check_mark: | URI to the next page | |
| `Previous` | *string* | :heavy_check_mark: | URI to the previous page | |
| `Size` | *float64* | :heavy_check_mark: | Requested page size | 10 |
14 changes: 0 additions & 14 deletions docs/models/components/customplugin.md

This file was deleted.

11 changes: 11 additions & 0 deletions docs/models/components/listconfigstoresecretsresponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# ListConfigStoreSecretsResponse

List of Config Store Secrets


## Fields

| Field | Type | Required | Description |
| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ |
| `Meta` | [components.CursorMeta](../../models/components/cursormeta.md) | :heavy_check_mark: | Pagination metadata. |
| `Data` | [][components.ConfigStoreSecret](../../models/components/configstoresecret.md) | :heavy_check_mark: | N/A |
11 changes: 11 additions & 0 deletions docs/models/components/listconfigstoresresponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# ListConfigStoresResponse

List of Config Stores


## Fields

| Field | Type | Required | Description |
| ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| `Meta` | [components.CursorMeta](../../models/components/cursormeta.md) | :heavy_check_mark: | Pagination metadata. |
| `Data` | [][components.ConfigStore](../../models/components/configstore.md) | :heavy_check_mark: | N/A |
10 changes: 10 additions & 0 deletions docs/models/components/updateconfigstore.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# UpdateConfigStore

The request schema to update a Config Store.


## Fields

| Field | Type | Required | Description | Example |
| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |
| `Name` | **string* | :heavy_minus_sign: | N/A | Config Store |
8 changes: 8 additions & 0 deletions docs/models/components/updateconfigstoresecret.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# UpdateConfigStoreSecret


## Fields

| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `Value` | *string* | :heavy_check_mark: | N/A |
9 changes: 9 additions & 0 deletions docs/models/operations/createconfigstorerequest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# CreateConfigStoreRequest


## Fields

| Field | Type | Required | Description | Example |
| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- |
| `ControlPlaneID` | *string* | :heavy_check_mark: | The UUID of your control plane. This variable is available in the Konnect manager. | 9524ec7d-36d9-465d-a8c5-83a3c9390458 |
| `CreateConfigStore` | [components.CreateConfigStore](../../models/components/createconfigstore.md) | :heavy_check_mark: | N/A | |
11 changes: 11 additions & 0 deletions docs/models/operations/createconfigstoreresponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# CreateConfigStoreResponse


## Fields

| Field | Type | Required | Description |
| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- |
| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation |
| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
| `ConfigStore` | [*components.ConfigStore](../../models/components/configstore.md) | :heavy_minus_sign: | Config Store |
10 changes: 10 additions & 0 deletions docs/models/operations/createconfigstoresecretrequest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# CreateConfigStoreSecretRequest


## Fields

| Field | Type | Required | Description | Example |
| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- |
| `ControlPlaneID` | *string* | :heavy_check_mark: | The UUID of your control plane. This variable is available in the Konnect manager. | 9524ec7d-36d9-465d-a8c5-83a3c9390458 |
| `ConfigStoreID` | *string* | :heavy_check_mark: | Config Store identifier | d32d905a-ed33-46a3-a093-d8f536af9a8a |
| `CreateConfigStoreSecret` | [components.CreateConfigStoreSecret](../../models/components/createconfigstoresecret.md) | :heavy_check_mark: | N/A | |
11 changes: 11 additions & 0 deletions docs/models/operations/createconfigstoresecretresponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# CreateConfigStoreSecretResponse


## Fields

| Field | Type | Required | Description |
| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation |
| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
| `ConfigStoreSecret` | [*components.ConfigStoreSecret](../../models/components/configstoresecret.md) | :heavy_minus_sign: | Config Store Secret |
Loading

0 comments on commit 7df17ca

Please sign in to comment.