Skip to content

Commit ca4998f

Browse files
committed
[API] Promotes security user profile from Experimental to Stable
security/activate_user_profile security/disable_user_profile security/enable_user_profile security/get_user_profile security/has_privileges_user_profile security/suggest_user_profile security/update_user_profile_data
1 parent d90693a commit ca4998f

7 files changed

+0
-28
lines changed

elasticsearch-api/lib/elasticsearch/api/actions/security/activate_user_profile.rb

-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ module API
2323
module Security
2424
module Actions
2525
# Creates or updates the user profile on behalf of another user.
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.
3026
#
3127
# @option arguments [Hash] :headers Custom HTTP headers
3228
# @option arguments [Hash] :body The grant type and user's credential (*Required*)

elasticsearch-api/lib/elasticsearch/api/actions/security/disable_user_profile.rb

-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ module API
2323
module Security
2424
module Actions
2525
# Disables a user profile so it's not visible in user profile searches.
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.
3026
#
3127
# @option arguments [String] :uid Unique identifier for the user profile
3228
# @option arguments [String] :refresh If `true` then refresh the affected shards to make this operation visible to search, if `wait_for` (the default) then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (options: true, false, wait_for)

elasticsearch-api/lib/elasticsearch/api/actions/security/enable_user_profile.rb

-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ module API
2323
module Security
2424
module Actions
2525
# Enables a user profile so it's visible in user profile searches.
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.
3026
#
3127
# @option arguments [String] :uid An unique identifier of the user profile
3228
# @option arguments [String] :refresh If `true` then refresh the affected shards to make this operation visible to search, if `wait_for` (the default) then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (options: true, false, wait_for)

elasticsearch-api/lib/elasticsearch/api/actions/security/get_user_profile.rb

-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ module API
2323
module Security
2424
module Actions
2525
# Retrieves user profiles for the given unique ID(s).
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.
3026
#
3127
# @option arguments [List] :uid A comma-separated list of unique identifier for user profiles
3228
# @option arguments [List] :data A comma-separated list of keys for which the corresponding application data are retrieved.

elasticsearch-api/lib/elasticsearch/api/actions/security/has_privileges_user_profile.rb

-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ module API
2323
module Security
2424
module Actions
2525
# Determines whether the users associated with the specified profile IDs have all the requested privileges.
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.
3026
#
3127
# @option arguments [Hash] :headers Custom HTTP headers
3228
# @option arguments [Hash] :body The privileges to check and the list of profile IDs (*Required*)

elasticsearch-api/lib/elasticsearch/api/actions/security/suggest_user_profiles.rb

-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ module API
2323
module Security
2424
module Actions
2525
# Get suggestions for user profiles that match specified search criteria.
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.
3026
#
3127
# @option arguments [List] :data A comma-separated list of keys for which the corresponding application data are retrieved.
3228
# @option arguments [Hash] :headers Custom HTTP headers

elasticsearch-api/lib/elasticsearch/api/actions/security/update_user_profile_data.rb

-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ module API
2323
module Security
2424
module Actions
2525
# Update application specific data for the user profile of the given unique ID.
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.
3026
#
3127
# @option arguments [String] :uid An unique identifier of the user profile
3228
# @option arguments [Number] :if_seq_no only perform the update operation if the last operation that has changed the document has the specified sequence number

0 commit comments

Comments
 (0)