Skip to content

Commit ad430d9

Browse files
committed
[API] Updates search_application APIs to be Experimental (from Beta)
1 parent 07429ba commit ad430d9

File tree

8 files changed

+32
-32
lines changed

8 files changed

+32
-32
lines changed

elasticsearch-api/lib/elasticsearch/api/actions/search_application/delete.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ module API
2323
module SearchApplication
2424
module Actions
2525
# Deletes a search application.
26-
# This functionality is in Beta and is subject to change. The design and
27-
# code is less mature than official GA features and is being provided
28-
# as-is with no warranties. Beta features are not subject to the support
29-
# SLA of official GA features.
26+
# This functionality is Experimental and may be changed or removed
27+
# completely in a future release. Elastic will take a best effort approach
28+
# to fix any issues, but experimental features are not subject to the
29+
# support SLA of official GA features.
3030
#
3131
# @option arguments [String] :name The name of the search application
3232
# @option arguments [Hash] :headers Custom HTTP headers

elasticsearch-api/lib/elasticsearch/api/actions/search_application/delete_behavioral_analytics.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ module API
2323
module SearchApplication
2424
module Actions
2525
# Delete a behavioral analytics collection.
26-
# This functionality is in Beta and is subject to change. The design and
27-
# code is less mature than official GA features and is being provided
28-
# as-is with no warranties. Beta features are not subject to the support
29-
# SLA of official GA features.
26+
# This functionality is Experimental and may be changed or removed
27+
# completely in a future release. Elastic will take a best effort approach
28+
# to fix any issues, but experimental features are not subject to the
29+
# support SLA of official GA features.
3030
#
3131
# @option arguments [String] :name The name of the analytics collection to be deleted
3232
# @option arguments [Hash] :headers Custom HTTP headers

elasticsearch-api/lib/elasticsearch/api/actions/search_application/get.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ module API
2323
module SearchApplication
2424
module Actions
2525
# Returns the details about a search application.
26-
# This functionality is in Beta and is subject to change. The design and
27-
# code is less mature than official GA features and is being provided
28-
# as-is with no warranties. Beta features are not subject to the support
29-
# SLA of official GA features.
26+
# This functionality is Experimental and may be changed or removed
27+
# completely in a future release. Elastic will take a best effort approach
28+
# to fix any issues, but experimental features are not subject to the
29+
# support SLA of official GA features.
3030
#
3131
# @option arguments [String] :name The name of the search application
3232
# @option arguments [Hash] :headers Custom HTTP headers

elasticsearch-api/lib/elasticsearch/api/actions/search_application/get_behavioral_analytics.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ module API
2323
module SearchApplication
2424
module Actions
2525
# Returns the existing behavioral analytics collections.
26-
# This functionality is in Beta and is subject to change. The design and
27-
# code is less mature than official GA features and is being provided
28-
# as-is with no warranties. Beta features are not subject to the support
29-
# SLA of official GA features.
26+
# This functionality is Experimental and may be changed or removed
27+
# completely in a future release. Elastic will take a best effort approach
28+
# to fix any issues, but experimental features are not subject to the
29+
# support SLA of official GA features.
3030
#
3131
# @option arguments [List] :name A comma-separated list of analytics collections to limit the returned information
3232
# @option arguments [Hash] :headers Custom HTTP headers

elasticsearch-api/lib/elasticsearch/api/actions/search_application/list.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ module API
2323
module SearchApplication
2424
module Actions
2525
# Returns the existing search applications.
26-
# This functionality is in Beta and is subject to change. The design and
27-
# code is less mature than official GA features and is being provided
28-
# as-is with no warranties. Beta features are not subject to the support
29-
# SLA of official GA features.
26+
# This functionality is Experimental and may be changed or removed
27+
# completely in a future release. Elastic will take a best effort approach
28+
# to fix any issues, but experimental features are not subject to the
29+
# support SLA of official GA features.
3030
#
3131
# @option arguments [String] :q Query in the Lucene query string syntax
3232
# @option arguments [Integer] :from Starting offset (default: 0)

elasticsearch-api/lib/elasticsearch/api/actions/search_application/put.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ module API
2323
module SearchApplication
2424
module Actions
2525
# Creates or updates a search application.
26-
# This functionality is in Beta and is subject to change. The design and
27-
# code is less mature than official GA features and is being provided
28-
# as-is with no warranties. Beta features are not subject to the support
29-
# SLA of official GA features.
26+
# This functionality is Experimental and may be changed or removed
27+
# completely in a future release. Elastic will take a best effort approach
28+
# to fix any issues, but experimental features are not subject to the
29+
# support SLA of official GA features.
3030
#
3131
# @option arguments [String] :name The name of the search application to be created or updated
3232
# @option arguments [Boolean] :create If true, requires that a search application with the specified resource_id does not already exist. (default: false)

elasticsearch-api/lib/elasticsearch/api/actions/search_application/put_behavioral_analytics.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ module API
2323
module SearchApplication
2424
module Actions
2525
# Creates a behavioral analytics collection.
26-
# This functionality is in Beta and is subject to change. The design and
27-
# code is less mature than official GA features and is being provided
28-
# as-is with no warranties. Beta features are not subject to the support
29-
# SLA of official GA features.
26+
# This functionality is Experimental and may be changed or removed
27+
# completely in a future release. Elastic will take a best effort approach
28+
# to fix any issues, but experimental features are not subject to the
29+
# support SLA of official GA features.
3030
#
3131
# @option arguments [String] :name The name of the analytics collection to be created or updated
3232
# @option arguments [Hash] :headers Custom HTTP headers

elasticsearch-api/lib/elasticsearch/api/actions/search_application/search.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ module API
2323
module SearchApplication
2424
module Actions
2525
# Perform a search against a search application
26-
# This functionality is in Beta and is subject to change. The design and
27-
# code is less mature than official GA features and is being provided
28-
# as-is with no warranties. Beta features are not subject to the support
29-
# SLA of official GA features.
26+
# This functionality is Experimental and may be changed or removed
27+
# completely in a future release. Elastic will take a best effort approach
28+
# to fix any issues, but experimental features are not subject to the
29+
# support SLA of official GA features.
3030
#
3131
# @option arguments [String] :name The name of the search application to be searched
3232
# @option arguments [Hash] :headers Custom HTTP headers

0 commit comments

Comments
 (0)