You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/OpenSearch/Namespaces/ClusterNamespace.php
+10-10
Original file line number
Diff line number
Diff line change
@@ -254,7 +254,7 @@ public function getDecommissionAwareness(array $params = [])
254
254
* Returns cluster settings.
255
255
*
256
256
* $params['cluster_manager_timeout'] = (string) The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
257
-
* $params['flat_settings'] = (boolean) When `true`, returns cluster settings in a flat format. (Default = false)
257
+
* $params['flat_settings'] = (boolean) Whether to return settings in the flat form, which can improve readability, especially for heavily nested settings.For example, the flat form of `"cluster": { "max_shards_per_node": 500 }` is `"cluster.max_shards_per_node": "500"`. (Default = false)
258
258
* $params['include_defaults'] = (boolean) When `true`, returns default cluster settings from the local node. (Default = false)
259
259
* $params['master_timeout'] = (string)
260
260
* $params['timeout'] = (string)
@@ -362,8 +362,8 @@ public function pendingTasks(array $params = [])
362
362
/**
363
363
* Updates the cluster voting configuration by excluding certain node IDs or names.
364
364
*
365
-
* $params['node_ids'] = (any) A comma-separated list of node IDs to excludefrom the voting configuration. When using this setting, you cannot also specify `node_names`.
366
-
* $params['node_names'] = (any) A comma-separated list of node names to exclude from thevoting configuration. When using this setting, you cannot also specify `node_ids`.
365
+
* $params['node_ids'] = (any) A comma-separated list of node IDs to excludefrom the voting configuration. When using this setting, you cannot also specify `node_names`. Either `node_ids` or `node_names` are required to receive a valid response.
366
+
* $params['node_names'] = (any) A comma-separated list of node names to exclude from thevoting configuration. When using this setting, you cannot also specify `node_ids`. Either `node_ids` or `node_names` are required to receive a valid response.
367
367
* $params['timeout'] = (string) When adding a voting configuration exclusion, the API waits for thespecified nodes to be excluded from the voting configuration beforereturning a response. If the timeout expires before the appropriate conditionis satisfied, the request fails and returns an error.
368
368
* $params['pretty'] = (boolean) Whether to pretty format the returned JSON response. (Default = false)
369
369
* $params['human'] = (boolean) Whether to return human readable values for statistics. (Default = true)
@@ -385,7 +385,7 @@ public function postVotingConfigExclusions(array $params = [])
385
385
/**
386
386
* Creates or updates a component template.
387
387
*
388
-
* $params['name'] = (string) The name of the component template to create. OpenSearch includes the following built-in component templates: `logs-mappings`; `logs-settings`; `metrics-mappings`; `metrics-settings`; `synthetics-mapping`; `synthetics-settings`. OpenSearch uses these templates to configure backing indexes for its data streams. If you want to overwrite one of these templates, set the replacement template `version` to a higher value than the current version. If you want to disable all built-in component and index templates, set `stack.templates.enabled` to `false` using the Cluster Update Settings API.
388
+
* $params['name'] = (string) The name of the component template to create. OpenSearch includes the following built-in component templates: `logs-mappings`, `logs-settings`, `metrics-mappings`, `metrics-settings`, `synthetics-mapping`, and `synthetics-settings`. OpenSearch uses these templates to configure backing indexes for its data streams. If you want to overwrite one of these templates, set the replacement template `version` to a higher value than the current version. If you want to disable all built-in component and index templates, set `stack.templates.enabled` to `false` using the [Cluster Update Settings API](https://opensearch.org/docs/latest/api-reference/cluster-api/cluster-settings/).
389
389
* $params['cluster_manager_timeout'] = (string) The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
390
390
* $params['create'] = (boolean) When `true`, this request cannot replace or update existing component templates. (Default = false)
391
391
* $params['master_timeout'] = (string)
@@ -444,7 +444,7 @@ public function putDecommissionAwareness(array $params = [])
444
444
* Updates the cluster settings.
445
445
*
446
446
* $params['cluster_manager_timeout'] = (string) The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
447
-
* $params['flat_settings'] = (boolean) Returns settings in a flat format. (Default = false)
447
+
* $params['flat_settings'] = (boolean) Whether to return settings in the flat form, which can improve readability, especially for heavily nested settings.For example, the flat form of `"cluster": { "max_shards_per_node": 500 }` is `"cluster.max_shards_per_node": "500"`. (Default = false)
448
448
* $params['master_timeout'] = (string)
449
449
* $params['timeout'] = (string)
450
450
* $params['pretty'] = (boolean) Whether to pretty format the returned JSON response. (Default = false)
@@ -548,12 +548,12 @@ public function reroute(array $params = [])
548
548
/**
549
549
* Returns comprehensive information about the state of the cluster.
550
550
*
551
-
* $params['metric'] = (array) Limits the information returned to only the specified metrics.
551
+
* $params['metric'] = (array) Limits the information returned to only the [specified metric groups](https://opensearch.org/docs/latest/api-reference/cluster-api/cluster-stats/#metric-groups).
552
552
* $params['index'] = (array)
553
553
* $params['allow_no_indices'] = (boolean) Whether to ignore a wildcard index expression that resolves into no concrete indexes. This includes the `_all` string or when no indexes have been specified.
554
-
* $params['cluster_manager_timeout'] = (string) The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters]({https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
554
+
* $params['cluster_manager_timeout'] = (string) The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
555
555
* $params['expand_wildcards'] = (any)
556
-
* $params['flat_settings'] = (boolean) Returns settings in a flat format. (Default = false)
556
+
* $params['flat_settings'] = (boolean) Whether to return settings in the flat form, which can improve readability, especially for heavily nested settings.For example, the flat form of `"cluster": { "max_shards_per_node": 500 }` is `"cluster.max_shards_per_node": "500"`. (Default = false)
557
557
* $params['ignore_unavailable'] = (boolean) Whether the specified concrete indexes should be ignored when unavailable (missing or closed).
558
558
* $params['local'] = (boolean) Whether to return information from the local node only instead of from the cluster manager node. (Default = false)
559
559
* $params['master_timeout'] = (string)
@@ -584,10 +584,10 @@ public function state(array $params = [])
584
584
/**
585
585
* Returns a high-level overview of cluster statistics.
586
586
*
587
-
* $params['index_metric'] = (array) A comma-separated list of index metric groups, for example, `docs,store`.
587
+
* $params['index_metric'] = (array) A comma-separated list of [index metric groups](https://opensearch.org/docs/latest/api-reference/cluster-api/cluster-stats/#index-metric-groups), for example, `docs,store`.
588
588
* $params['metric'] = (array) Limit the information returned to the specified metrics.
589
589
* $params['node_id'] = (array)
590
-
* $params['flat_settings'] = (boolean) When `true`, returns settings in a flat format. (Default = false)
590
+
* $params['flat_settings'] = (boolean) Whether to return settings in the flat form, which can improve readability, especially for heavily nested settings.For example, the flat form of `"cluster": { "max_shards_per_node": 500 }` is `"cluster.max_shards_per_node": "500"`. (Default = false)
591
591
* $params['timeout'] = (string) The amount of time to wait for each node to respond.If a node does not respond before its timeout expires, the response does not include its stats.However, timed out nodes are included in the response's `_nodes.failed` property. Defaults to no timeout.
592
592
* $params['pretty'] = (boolean) Whether to pretty format the returned JSON response. (Default = false)
593
593
* $params['human'] = (boolean) Whether to return human readable values for statistics. (Default = true)
Copy file name to clipboardexpand all lines: src/OpenSearch/Namespaces/IngestNamespace.php
+17-17
Original file line number
Diff line number
Diff line change
@@ -35,12 +35,12 @@
35
35
class IngestNamespace extends AbstractNamespace
36
36
{
37
37
/**
38
-
* Deletes a pipeline.
38
+
* Deletes an ingest pipeline.
39
39
*
40
-
* $params['id'] = (string) Pipeline ID or wildcard expression of pipeline IDs used to limit the request. To delete all ingest pipelines in a cluster, use a value of `*`.
41
-
* $params['cluster_manager_timeout'] = (string) Operation timeout for connection to cluster-manager node.
40
+
* $params['id'] = (string) The pipeline ID or wildcard expression of pipeline IDs used to limit the request. To delete all ingest pipelines in a cluster, use a value of `*`.
41
+
* $params['cluster_manager_timeout'] = (string) The amount of time allowed to establish a connection to the clustermanager node.
42
42
* $params['master_timeout'] = (string) Period to wait for a connection to the cluster-manager node.If no response is received before the timeout expires, the request fails and returns an error.
43
-
* $params['timeout'] = (string) Period to wait for a response.If no response is received before the timeout expires, the request fails and returns an error.
43
+
* $params['timeout'] = (string) The amount of time to wait for a response.
44
44
* $params['pretty'] = (boolean) Whether to pretty format the returned JSON response. (Default = false)
45
45
* $params['human'] = (boolean) Whether to return human readable values for statistics. (Default = true)
46
46
* $params['error_trace'] = (boolean) Whether to include the stack trace of returned errors. (Default = false)
@@ -62,10 +62,10 @@ public function deletePipeline(array $params = [])
62
62
}
63
63
64
64
/**
65
-
* Returns a pipeline.
65
+
* Returns an ingest pipeline.
66
66
*
67
-
* $params['id'] = (string) Comma-separated list of pipeline IDs to retrieve. Wildcard (`*`) expressions are supported. To get all ingest pipelines, omit this parameter or use `*`.
68
-
* $params['cluster_manager_timeout'] = (string) Operation timeout for connection to cluster-manager node.
67
+
* $params['id'] = (string) A comma-separated list of pipeline IDs to retrieve. Wildcard (`*`) expressions are supported. To get all ingest pipelines, omit this parameter or use `*`.
68
+
* $params['cluster_manager_timeout'] = (string) The amount of time allowed to establish a connection to the clustermanager node.
69
69
* $params['master_timeout'] = (string) Period to wait for a connection to the cluster-manager node.If no response is received before the timeout expires, the request fails and returns an error.
70
70
* $params['pretty'] = (boolean) Whether to pretty format the returned JSON response. (Default = false)
71
71
* $params['human'] = (boolean) Whether to return human readable values for statistics. (Default = true)
@@ -88,9 +88,9 @@ public function getPipeline(array $params = [])
88
88
}
89
89
90
90
/**
91
-
* Returns a list of the built-in patterns.
91
+
* Returns a list of built-in grok patterns.
92
92
*
93
-
* $params['s'] = (boolean) Sort returned patterns by key name. (Default = false)
93
+
* $params['s'] = (boolean) Determines how to sort returned grok patterns by key name. (Default = false)
94
94
* $params['pretty'] = (boolean) Whether to pretty format the returned JSON response. (Default = false)
95
95
* $params['human'] = (boolean) Whether to return human readable values for statistics. (Default = true)
96
96
* $params['error_trace'] = (boolean) Whether to include the stack trace of returned errors. (Default = false)
@@ -109,18 +109,18 @@ public function processorGrok(array $params = [])
109
109
}
110
110
111
111
/**
112
-
* Creates or updates a pipeline.
112
+
* Creates or updates an ingest pipeline.
113
113
*
114
-
* $params['id'] = (string) ID of the ingest pipeline to create or update.
115
-
* $params['cluster_manager_timeout'] = (string) Operation timeout for connection to cluster-manager node.
114
+
* $params['id'] = (string) The ID of the ingest pipeline.
115
+
* $params['cluster_manager_timeout'] = (string) The amount of time allowed to establish a connection to the clustermanager node.
116
116
* $params['master_timeout'] = (string) Period to wait for a connection to the cluster-manager node. If no response is received before the timeout expires, the request fails and returns an error.
117
-
* $params['timeout'] = (string) Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.
117
+
* $params['timeout'] = (string) The amount of time to wait for a response.
118
118
* $params['pretty'] = (boolean) Whether to pretty format the returned JSON response. (Default = false)
119
119
* $params['human'] = (boolean) Whether to return human readable values for statistics. (Default = true)
120
120
* $params['error_trace'] = (boolean) Whether to include the stack trace of returned errors. (Default = false)
121
121
* $params['source'] = (string) The URL-encoded request definition. Useful for libraries that do not accept a request body for non-POST requests.
122
122
* $params['filter_path'] = (any) Used to reduce the response. This parameter takes a comma-separated list of filters. It supports using wildcards to match any field or part of a field’s name. You can also exclude fields with "-".
123
-
* $params['body'] = (array) The ingest definition (Required)
123
+
* $params['body'] = (array) The ingest definition. (Required)
124
124
*
125
125
* @param array $params Associative array of parameters
126
126
* @return array
@@ -139,10 +139,10 @@ public function putPipeline(array $params = [])
139
139
}
140
140
141
141
/**
142
-
* Allows to simulate a pipeline with example documents.
142
+
* Simulates an ingest pipeline with example documents.
143
143
*
144
-
* $params['id'] = (string) Pipeline to test. If you don't specify a `pipeline` in the request body, this parameter is required.
145
-
* $params['verbose'] = (boolean) If `true`, the response includes output data for each processor in the executed pipeline. (Default = false)
144
+
* $params['id'] = (string) The pipeline to test. If you don't specify a `pipeline` in the request body, this parameter is required.
145
+
* $params['verbose'] = (boolean) When `true`, the response includes output data for each processor in the pipeline (Default = false)
146
146
* $params['pretty'] = (boolean) Whether to pretty format the returned JSON response. (Default = false)
147
147
* $params['human'] = (boolean) Whether to return human readable values for statistics. (Default = true)
148
148
* $params['error_trace'] = (boolean) Whether to include the stack trace of returned errors. (Default = false)
0 commit comments