Skip to content

Auto-generated code for main #110

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions elasticsearch_serverless/_async/client/indices.py
Original file line number Diff line number Diff line change
Expand Up @@ -1567,7 +1567,7 @@ async def migrate_to_data_stream(
The write index for the alias becomes the write index for the stream.</p>


`<https://www.elastic.co/guide/en/elasticsearch/reference/master/data-streams.html>`_
`<https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-migrate-to-data-stream>`_

:param name: Name of the index alias to convert to a data stream.
:param master_timeout: Period to wait for a connection to the master node. If
Expand Down Expand Up @@ -1623,7 +1623,7 @@ async def modify_data_stream(
Performs one or more data stream modification actions in a single atomic operation.</p>


`<https://www.elastic.co/guide/en/elasticsearch/reference/master/data-streams.html>`_
`<https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-modify-data-stream>`_

:param actions: Actions to perform.
"""
Expand Down Expand Up @@ -1689,7 +1689,7 @@ async def put_alias(
Adds a data stream or index to an alias.</p>


`<https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-aliases.html>`_
`<https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-put-alias>`_

:param index: Comma-separated list of data streams or indices to add. Supports
wildcards (`*`). Wildcard patterns that match both data streams and indices
Expand Down Expand Up @@ -1796,7 +1796,7 @@ async def put_data_lifecycle(
Update the data stream lifecycle of the specified data streams.</p>


`<https://www.elastic.co/guide/en/elasticsearch/reference/master/data-streams-put-lifecycle.html>`_
`<https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-put-data-lifecycle>`_

:param name: Comma-separated list of data streams used to limit the request.
Supports wildcards (`*`). To target all data streams use `*` or `_all`.
Expand Down Expand Up @@ -1924,7 +1924,7 @@ async def put_index_template(
If an entry already exists with the same key, then it is overwritten by the new definition.</p>


`<https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-put-template.html>`_
`<https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-put-index-template>`_

:param name: Index or template name
:param allow_auto_create: This setting overrides the value of the `action.auto_create_index`
Expand Down Expand Up @@ -2845,7 +2845,7 @@ async def update_aliases(
Adds a data stream or index to an alias.</p>


`<https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-aliases.html>`_
`<https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-update-aliases>`_

:param actions: Actions to perform.
:param master_timeout: Period to wait for a connection to the master node. If
Expand Down Expand Up @@ -2924,7 +2924,7 @@ async def validate_query(
Validates a query without running it.</p>


`<https://www.elastic.co/guide/en/elasticsearch/reference/master/search-validate.html>`_
`<https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-validate-query>`_

:param index: Comma-separated list of data streams, indices, and aliases to search.
Supports wildcards (`*`). To search all data streams or indices, omit this
Expand Down
Loading