Skip to content

Commit 7b87afc

Browse files
committed
[API] Promotes APIs from Experimental to Beta
- behavioral_analytics.delete - behavioral_analytics.list - behavioral_analytics.put - search_application.delete - search_application.get - search_application.list - search_application.put
1 parent bf04062 commit 7b87afc

File tree

8 files changed

+36
-36
lines changed

8 files changed

+36
-36
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ module API
2323
module BehavioralAnalytics
2424
module Actions
2525
# Delete a behavioral analytics collection.
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.
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.
3030
#
3131
# @option arguments [String] :name The name of the analytics collection to be deleted
3232
# @option arguments [Hash] :headers Custom HTTP headers
3333
#
34-
# @see http://todo.com/tbd
34+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-analytics-collection.html
3535
#
3636
def delete(arguments = {})
3737
raise ArgumentError, "Required argument 'name' missing" unless arguments[:name]

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ module API
2323
module BehavioralAnalytics
2424
module Actions
2525
# Returns the existing behavioral analytics collections.
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.
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.
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
3333
#
34-
# @see http://todo.com/tbd
34+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/list-analytics-collection.html
3535
#
3636
def list(arguments = {})
3737
arguments = arguments.clone

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ module API
2323
module BehavioralAnalytics
2424
module Actions
2525
# Creates a behavioral analytics collection.
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.
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.
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
3333
#
34-
# @see http://todo.com/tbd
34+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/put-analytics-collection.html
3535
#
3636
def put(arguments = {})
3737
raise ArgumentError, "Required argument 'name' missing" unless arguments[:name]

elasticsearch-api/lib/elasticsearch/api/actions/cat/component_templates.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ module Actions
3434
# @option arguments [Boolean] :v Verbose mode. Display column headers
3535
# @option arguments [Hash] :headers Custom HTTP headers
3636
#
37-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-compoentn-templates.html
37+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-component-templates.html
3838
#
3939
def component_templates(arguments = {})
4040
arguments = arguments.clone

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ module API
2323
module SearchApplication
2424
module Actions
2525
# Deletes a search application.
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.
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.
3030
#
3131
# @option arguments [String] :name The name of the search application
3232
# @option arguments [Hash] :headers Custom HTTP headers
3333
#
34-
# @see http://todo.com/tbd
34+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/put-search-application.html
3535
#
3636
def delete(arguments = {})
3737
raise ArgumentError, "Required argument 'name' missing" unless arguments[:name]

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ module API
2323
module SearchApplication
2424
module Actions
2525
# Returns the details about a search application.
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.
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.
3030
#
3131
# @option arguments [String] :name The name of the search application
3232
# @option arguments [Hash] :headers Custom HTTP headers
3333
#
34-
# @see http://todo.com/tbd
34+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/get-search-application.html
3535
#
3636
def get(arguments = {})
3737
raise ArgumentError, "Required argument 'name' missing" unless arguments[:name]

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ module API
2323
module SearchApplication
2424
module Actions
2525
# Returns the existing search applications.
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.
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.
3030
#
3131
# @option arguments [String] :q Query in the Lucene query string syntax
3232
# @option arguments [Integer] :from Starting offset (default: 0)
3333
# @option arguments [Integer] :size specifies a max number of results to get
3434
# @option arguments [Hash] :headers Custom HTTP headers
3535
#
36-
# @see http://todo.com/tbd
36+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/list-search-applications.html
3737
#
3838
def list(arguments = {})
3939
arguments = arguments.clone

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ module API
2323
module SearchApplication
2424
module Actions
2525
# Creates or updates a search application.
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.
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.
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)
3333
# @option arguments [Hash] :headers Custom HTTP headers
3434
# @option arguments [Hash] :body The search application configuration, including `indices` (*Required*)
3535
#
36-
# @see http://todo.com/tbd
36+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/put-search-application.html
3737
#
3838
def put(arguments = {})
3939
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]

0 commit comments

Comments
 (0)