diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index 2b50f35d7e..ed2c7604cf 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -43153,7 +43153,7 @@ } } }, - "x-state": "Generally available; Added in 0.0.0", + "x-state": "Generally available", "x-metaTags": [ { "content": "Elasticsearch", @@ -43194,7 +43194,7 @@ "$ref": "#/components/responses/snapshot.create-200" } }, - "x-state": "Generally available; Added in 0.0.0", + "x-state": "Generally available", "x-metaTags": [ { "content": "Elasticsearch", @@ -43235,7 +43235,7 @@ "$ref": "#/components/responses/snapshot.create-200" } }, - "x-state": "Generally available; Added in 0.0.0", + "x-state": "Generally available", "x-metaTags": [ { "content": "Elasticsearch", @@ -43345,7 +43345,7 @@ "$ref": "#/components/responses/snapshot.get_repository-200" } }, - "x-state": "Generally available; Added in 0.0.0", + "x-state": "Generally available", "x-metaTags": [ { "content": "Elasticsearch", @@ -43386,7 +43386,7 @@ "$ref": "#/components/responses/snapshot.create_repository-200" } }, - "x-state": "Generally available; Added in 0.0.0", + "x-state": "Generally available", "x-metaTags": [ { "content": "Elasticsearch", @@ -43427,7 +43427,7 @@ "$ref": "#/components/responses/snapshot.create_repository-200" } }, - "x-state": "Generally available; Added in 0.0.0", + "x-state": "Generally available", "x-metaTags": [ { "content": "Elasticsearch", @@ -43487,7 +43487,7 @@ } } }, - "x-state": "Generally available; Added in 0.0.0", + "x-state": "Generally available", "x-metaTags": [ { "content": "Elasticsearch", @@ -43517,7 +43517,7 @@ "$ref": "#/components/responses/snapshot.get_repository-200" } }, - "x-state": "Generally available; Added in 0.0.0", + "x-state": "Generally available", "x-metaTags": [ { "content": "Elasticsearch", @@ -43939,7 +43939,7 @@ } } }, - "x-state": "Generally available; Added in 0.0.0", + "x-state": "Generally available", "x-metaTags": [ { "content": "Elasticsearch", @@ -44116,7 +44116,7 @@ } } }, - "x-state": "Generally available; Added in 0.0.0", + "x-state": "Generally available", "x-metaTags": [ { "content": "Elasticsearch", diff --git a/output/schema/schema.json b/output/schema/schema.json index 8d0929f73b..2075b1f471 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -21184,7 +21184,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -21232,7 +21231,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -21321,7 +21319,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -21363,7 +21360,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -21405,7 +21401,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -21531,7 +21526,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -21632,7 +21626,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, diff --git a/specification/snapshot/create/SnapshotCreateRequest.ts b/specification/snapshot/create/SnapshotCreateRequest.ts index 5c7ca93bc9..4e449d47db 100644 --- a/specification/snapshot/create/SnapshotCreateRequest.ts +++ b/specification/snapshot/create/SnapshotCreateRequest.ts @@ -25,7 +25,7 @@ import { Duration } from '@_types/Time' * Create a snapshot. * Take a snapshot of a cluster or of data streams and indices. * @rest_spec_name snapshot.create - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @cluster_privileges create_snapshot * @doc_id snapshot-create-api diff --git a/specification/snapshot/create_repository/SnapshotCreateRepositoryRequest.ts b/specification/snapshot/create_repository/SnapshotCreateRepositoryRequest.ts index f1fd161b23..427cbf73a8 100644 --- a/specification/snapshot/create_repository/SnapshotCreateRepositoryRequest.ts +++ b/specification/snapshot/create_repository/SnapshotCreateRepositoryRequest.ts @@ -31,7 +31,7 @@ import { Repository } from '@snapshot/_types/SnapshotRepository' * Several options for this API can be specified using a query parameter or a request body parameter. * If both parameters are specified, only the query parameter is used. * @rest_spec_name snapshot.create_repository - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @cluster_privileges manage * @doc_id snapshot-repo-create diff --git a/specification/snapshot/delete_repository/SnapshotDeleteRepositoryRequest.ts b/specification/snapshot/delete_repository/SnapshotDeleteRepositoryRequest.ts index 022e7c6751..19ee50fc3d 100644 --- a/specification/snapshot/delete_repository/SnapshotDeleteRepositoryRequest.ts +++ b/specification/snapshot/delete_repository/SnapshotDeleteRepositoryRequest.ts @@ -26,7 +26,7 @@ import { Duration } from '@_types/Time' * When a repository is unregistered, Elasticsearch removes only the reference to the location where the repository is storing the snapshots. * The snapshots themselves are left untouched and in place. * @rest_spec_name snapshot.delete_repository - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @cluster_privileges manage * @doc_id snapshot-repo-delete diff --git a/specification/snapshot/get/SnapshotGetRequest.ts b/specification/snapshot/get/SnapshotGetRequest.ts index 69875f92b6..8f83e496b9 100644 --- a/specification/snapshot/get/SnapshotGetRequest.ts +++ b/specification/snapshot/get/SnapshotGetRequest.ts @@ -31,7 +31,7 @@ import { SnapshotSort } from '@snapshot/_types/SnapshotInfo' * It is guaranteed that any snapshot that exists at the beginning of the iteration and is not concurrently deleted will be seen during the iteration. * Snapshots concurrently created may be seen during an iteration. * @rest_spec_name snapshot.get - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @cluster_privileges monitor_snapshot * @doc_id snapshot-get diff --git a/specification/snapshot/get_repository/SnapshotGetRepositoryRequest.ts b/specification/snapshot/get_repository/SnapshotGetRepositoryRequest.ts index c17c9ef80f..7c01fe1fdb 100644 --- a/specification/snapshot/get_repository/SnapshotGetRepositoryRequest.ts +++ b/specification/snapshot/get_repository/SnapshotGetRepositoryRequest.ts @@ -24,7 +24,7 @@ import { Duration } from '@_types/Time' /** * Get snapshot repository information. * @rest_spec_name snapshot.get_repository - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @cluster_privileges monitor_snapshot * @doc_id snapshot-repo-get diff --git a/specification/snapshot/restore/SnapshotRestoreRequest.ts b/specification/snapshot/restore/SnapshotRestoreRequest.ts index 2e55e7f6a2..2b5d1ff29d 100644 --- a/specification/snapshot/restore/SnapshotRestoreRequest.ts +++ b/specification/snapshot/restore/SnapshotRestoreRequest.ts @@ -42,7 +42,7 @@ import { IndexSettings } from '@indices/_types/IndexSettings' * * If your snapshot contains data from App Search or Workplace Search, you must restore the Enterprise Search encryption key before you restore the snapshot. * @rest_spec_name snapshot.restore - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @cluster_privileges manage * @doc_id snapshot-restore-api diff --git a/specification/snapshot/verify_repository/SnapshotVerifyRepositoryRequest.ts b/specification/snapshot/verify_repository/SnapshotVerifyRepositoryRequest.ts index bd15e40869..b3ac543a90 100644 --- a/specification/snapshot/verify_repository/SnapshotVerifyRepositoryRequest.ts +++ b/specification/snapshot/verify_repository/SnapshotVerifyRepositoryRequest.ts @@ -25,7 +25,7 @@ import { Duration } from '@_types/Time' * Verify a snapshot repository. * Check for common misconfigurations in a snapshot repository. * @rest_spec_name snapshot.verify_repository - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @cluster_privileges manage * @doc_id snapshot-repo-verify