Skip to content

Commit 23723df

Browse files
committed
[API] Updates source code docs
1 parent 3ee4d60 commit 23723df

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

elasticsearch-api/lib/elasticsearch/api/actions/indices/resolve_index.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ module Actions
2626
#
2727
# @option arguments [List] :name A comma-separated list of names or wildcard expressions
2828
# @option arguments [String] :expand_wildcards Whether wildcard expressions should get expanded to open or closed indices (default: open) (options: open, closed, hidden, none, all)
29+
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
30+
# @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
2931
# @option arguments [Hash] :headers Custom HTTP headers
3032
#
3133
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.15/indices-resolve-index-api.html

elasticsearch-api/lib/elasticsearch/api/actions/ingest/delete_geoip_database.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module Actions
2727
# @option arguments [List] :id A comma-separated list of geoip database configurations to delete
2828
# @option arguments [Hash] :headers Custom HTTP headers
2929
#
30-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.15/TODO.html
30+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.15/delete-geoip-database-api.html
3131
#
3232
def delete_geoip_database(arguments = {})
3333
request_opts = { endpoint: arguments[:endpoint] || 'ingest.delete_geoip_database' }

elasticsearch-api/lib/elasticsearch/api/actions/ingest/get_geoip_database.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module Actions
2727
# @option arguments [List] :id A comma-separated list of geoip database configurations to get; use `*` to get all geoip database configurations
2828
# @option arguments [Hash] :headers Custom HTTP headers
2929
#
30-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.15/TODO.html
30+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.15/get-geoip-database-api.html
3131
#
3232
def get_geoip_database(arguments = {})
3333
request_opts = { endpoint: arguments[:endpoint] || 'ingest.get_geoip_database' }

elasticsearch-api/lib/elasticsearch/api/actions/ingest/put_geoip_database.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module Actions
2828
# @option arguments [Hash] :headers Custom HTTP headers
2929
# @option arguments [Hash] :body The database configuration definition (*Required*)
3030
#
31-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.15/TODO.html
31+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.15/put-geoip-database-api.html
3232
#
3333
def put_geoip_database(arguments = {})
3434
request_opts = { endpoint: arguments[:endpoint] || 'ingest.put_geoip_database' }

0 commit comments

Comments
 (0)