Skip to content

Commit c978bfd

Browse files
authored
Changed visibility from beta to experimental (#2087)
1 parent a97c5fe commit c978bfd

14 files changed

+21
-21
lines changed

output/schema/schema.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_json_spec/search_application.delete.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/put-search-application.html",
55
"description": "Deletes a search application."
66
},
7-
"stability": "beta",
7+
"stability": "experimental",
88
"visibility": "public",
99
"headers": {
1010
"accept": ["application/json"]

specification/_json_spec/search_application.delete_behavioral_analytics.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/delete-analytics-collection.html",
55
"description": "Delete a behavioral analytics collection."
66
},
7-
"stability": "beta",
7+
"stability": "experimental",
88
"visibility": "public",
99
"headers": {
1010
"accept": ["application/json"]

specification/_json_spec/search_application.get.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/get-search-application.html",
55
"description": "Returns the details about a search application."
66
},
7-
"stability": "beta",
7+
"stability": "experimental",
88
"visibility": "public",
99
"headers": {
1010
"accept": ["application/json"]

specification/_json_spec/search_application.get_behavioral_analytics.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/list-analytics-collection.html",
55
"description": "Returns the existing behavioral analytics collections."
66
},
7-
"stability": "beta",
7+
"stability": "experimental",
88
"visibility": "public",
99
"headers": {
1010
"accept": ["application/json"]

specification/_json_spec/search_application.list.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/list-search-applications.html",
55
"description": "Returns the existing search applications."
66
},
7-
"stability": "beta",
7+
"stability": "experimental",
88
"visibility": "public",
99
"headers": {
1010
"accept": ["application/json"]

specification/_json_spec/search_application.put.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/put-search-application.html",
55
"description": "Creates or updates a search application."
66
},
7-
"stability": "beta",
7+
"stability": "experimental",
88
"visibility": "public",
99
"headers": {
1010
"accept": ["application/json"],

specification/_json_spec/search_application.put_behavioral_analytics.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/put-analytics-collection.html",
55
"description": "Creates a behavioral analytics collection."
66
},
7-
"stability": "beta",
7+
"stability": "experimental",
88
"visibility": "public",
99
"headers": {
1010
"accept": ["application/json"]

specification/_json_spec/search_application.search.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/search-application-search.html",
55
"description": "Perform a search against a search application"
66
},
7-
"stability": "beta",
7+
"stability": "experimental",
88
"visibility": "public",
99
"headers": {
1010
"accept": ["application/json"],

specification/search_application/delete/SearchApplicationsDeleteRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { Name } from '@_types/common'
2323
* Deletes a search application.
2424
* @rest_spec_name search_application.delete
2525
* @since 8.8.0
26-
* @stability beta
26+
* @stability experimental
2727
*/
2828
interface Request extends RequestBase {
2929
path_parts: {

specification/search_application/get/SearchApplicationsGetRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { Name } from '@_types/common'
2323
* Returns the details about a search application
2424
* @rest_spec_name search_application.get
2525
* @since 8.8.0
26-
* @stability beta
26+
* @stability experimental
2727
*/
2828
interface Request extends RequestBase {
2929
path_parts: {

specification/search_application/list/SearchApplicationsListRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { integer } from '@_types/Numeric'
2424
* Returns the existing search applications.
2525
* @rest_spec_name search_application.list
2626
* @since 8.8.0
27-
* @stability beta
27+
* @stability experimental
2828
*/
2929
interface Request extends RequestBase {
3030
query_parameters: {

specification/search_application/put/SearchApplicationsPutRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { SearchApplication } from '../_types/SearchApplication'
2424
* Creates or updates a search application.
2525
* @rest_spec_name search_application.put
2626
* @since 8.8.0
27-
* @stability beta
27+
* @stability experimental
2828
*/
2929
interface Request extends RequestBase {
3030
path_parts: {

specification/search_application/search/SearchApplicationsSearchRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import { UserDefinedValue } from '@spec_utils/UserDefinedValue'
2525
* Perform a search against a search application
2626
* @rest_spec_name search_application.search
2727
* @since 8.8.0
28-
* @stability beta
28+
* @stability experimental
2929
*/
3030
interface Request extends RequestBase {
3131
path_parts: {

0 commit comments

Comments
 (0)