From 3f6103e48d75a644cbdaaf8231c8998d131e46bb Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Fri, 23 Apr 2021 09:06:14 +0200 Subject: [PATCH 01/81] Fixed issue on wipeSnapshots + removed TEST_SUITE in getHost() --- tests/Elasticsearch/Tests/Utility.php | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/tests/Elasticsearch/Tests/Utility.php b/tests/Elasticsearch/Tests/Utility.php index 65489b030..67e593926 100644 --- a/tests/Elasticsearch/Tests/Utility.php +++ b/tests/Elasticsearch/Tests/Utility.php @@ -39,13 +39,7 @@ public static function getHost(): ?string if (false !== $url) { return $url; } - switch (getenv('TEST_SUITE')) { - case 'free': - return 'http://localhost:9200'; - case 'platinum': - return 'https://elastic:changeme@localhost:9200'; - } - return null; + return 'https://elastic:changeme@localhost:9200'; } /** @@ -62,9 +56,7 @@ public static function getClient(): Client ] ] ]); - if (getenv('TEST_SUITE') === 'platinum') { - $clientBuilder->setSSLVerification(false); - } + $clientBuilder->setSSLVerification(false); return $clientBuilder->build(); } @@ -208,17 +200,20 @@ private static function wipeSnapshots(Client $client): void $repos = $client->snapshot()->getRepository([ 'repository' => '_all' ]); - foreach ($repos as $name => $value) { + foreach ($repos as $repository => $value) { if ($value['type'] === 'fs') { $response = $client->snapshot()->get([ - 'repository' => $name, + 'repository' => $repository, 'snapshot' => '_all', 'ignore_unavailable' => true ]); + if (isset($response['responses'])) { + $response = $response['responses'][0]; + } if (isset($response['snapshots'])) { foreach ($response['snapshots'] as $snapshot) { $client->snapshot()->delete([ - 'repository' => $name, + 'repository' => $repository, 'snapshot' => $snapshot['snapshot'], 'client' => [ 'ignore' => 404 @@ -228,7 +223,7 @@ private static function wipeSnapshots(Client $client): void } } $client->snapshot()->deleteRepository([ - 'repository' => $name, + 'repository' => $repository, 'client' => [ 'ignore' => 404 ] From 68a6a0a6b3ee014eaecaf7461f7c20604765a727 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Fri, 23 Apr 2021 09:07:16 +0200 Subject: [PATCH 02/81] Running elasticsearch only with platinum settings --- .ci/functions/imports.sh | 3 --- .ci/run-elasticsearch.sh | 44 ++++++++++++++++------------------------ 2 files changed, 18 insertions(+), 29 deletions(-) diff --git a/.ci/functions/imports.sh b/.ci/functions/imports.sh index 3fb28cc38..13f681967 100644 --- a/.ci/functions/imports.sh +++ b/.ci/functions/imports.sh @@ -27,9 +27,6 @@ if [[ -z $es_node_name ]]; then export elastic_password=changeme export elasticsearch_image=elasticsearch export elasticsearch_url=https://elastic:${elastic_password}@${es_node_name}:9200 - if [[ $TEST_SUITE != "platinum" ]]; then - export elasticsearch_url=http://${es_node_name}:9200 - fi export external_elasticsearch_url=${elasticsearch_url/$es_node_name/localhost} export elasticsearch_container="${elasticsearch_image}:${STACK_VERSION}" diff --git a/.ci/run-elasticsearch.sh b/.ci/run-elasticsearch.sh index 3f3796fb6..4d127cd5c 100755 --- a/.ci/run-elasticsearch.sh +++ b/.ci/run-elasticsearch.sh @@ -40,37 +40,29 @@ environment=($(cat <<-END --env path.repo=/tmp --env repositories.url.allowed_urls=http://snapshot.test* --env action.destructive_requires_name=false + --env ELASTIC_PASSWORD=$elastic_password + --env xpack.license.self_generated.type=trial + --env xpack.security.enabled=true + --env xpack.security.http.ssl.enabled=true + --env xpack.security.http.ssl.verification_mode=certificate + --env xpack.security.http.ssl.key=certs/testnode.key + --env xpack.security.http.ssl.certificate=certs/testnode.crt + --env xpack.security.http.ssl.certificate_authorities=certs/ca.crt + --env xpack.security.transport.ssl.enabled=true + --env xpack.security.transport.ssl.verification_mode=certificate + --env xpack.security.transport.ssl.key=certs/testnode.key + --env xpack.security.transport.ssl.certificate=certs/testnode.crt + --env xpack.security.transport.ssl.certificate_authorities=certs/ca.crt END )) -if [[ "$TEST_SUITE" == "platinum" ]]; then - environment+=($(cat <<-END - --env ELASTIC_PASSWORD=$elastic_password - --env xpack.license.self_generated.type=trial - --env xpack.security.enabled=true - --env xpack.security.http.ssl.enabled=true - --env xpack.security.http.ssl.verification_mode=certificate - --env xpack.security.http.ssl.key=certs/testnode.key - --env xpack.security.http.ssl.certificate=certs/testnode.crt - --env xpack.security.http.ssl.certificate_authorities=certs/ca.crt - --env xpack.security.transport.ssl.enabled=true - --env xpack.security.transport.ssl.verification_mode=certificate - --env xpack.security.transport.ssl.key=certs/testnode.key - --env xpack.security.transport.ssl.certificate=certs/testnode.crt - --env xpack.security.transport.ssl.certificate_authorities=certs/ca.crt -END -)) - volumes+=($(cat <<-END - --volume $ssl_cert:/usr/share/elasticsearch/config/certs/testnode.crt - --volume $ssl_key:/usr/share/elasticsearch/config/certs/testnode.key - --volume $ssl_ca:/usr/share/elasticsearch/config/certs/ca.crt +volumes+=($(cat <<-END + --volume $ssl_cert:/usr/share/elasticsearch/config/certs/testnode.crt + --volume $ssl_key:/usr/share/elasticsearch/config/certs/testnode.key + --volume $ssl_ca:/usr/share/elasticsearch/config/certs/ca.crt END )) -fi -cert_validation_flags="" -if [[ "$TEST_SUITE" == "platinum" ]]; then - cert_validation_flags="--insecure --cacert /usr/share/elasticsearch/config/certs/ca.crt --resolve ${es_node_name}:443:127.0.0.1" -fi +cert_validation_flags="--insecure --cacert /usr/share/elasticsearch/config/certs/ca.crt --resolve ${es_node_name}:443:127.0.0.1" # Pull the container, retry on failures up to 5 times with # short delays between each attempt. Fixes most transient network errors. From 97ef119b022f1a5c2d4e3ccfc0f26ac45af73722 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Fri, 23 Apr 2021 09:08:50 +0200 Subject: [PATCH 03/81] Updated util/run_es_docker --- util/run_es_docker.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/run_es_docker.sh b/util/run_es_docker.sh index 0c3a3c7ba..b65b82b75 100755 --- a/util/run_es_docker.sh +++ b/util/run_es_docker.sh @@ -22,6 +22,7 @@ if [ "$TEST_SUITE" = "free" ]; then --env "repositories.url.allowed_urls=http://snapshot.*" \ --env "discovery.type=single-node" \ --env "ES_JAVA_OPTS=-Xms1g -Xmx1g" \ + --env "action.destructive_requires_name=false" \ --network=esnet \ --name=elasticsearch \ --health-interval=2s \ @@ -47,6 +48,7 @@ else --env "repositories.url.allowed_urls=http://snapshot.*" \ --env "discovery.type=single-node" \ --env "ES_JAVA_OPTS=-Xms1g -Xmx1g" \ + --env "action.destructive_requires_name=false" \ --env "ELASTIC_PASSWORD=changeme" \ --env "xpack.security.enabled=true" \ --env "xpack.license.self_generated.type=trial" \ From 5eb56c38e5e083a89572ccd1f126636d4d0f569a Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Mon, 26 Apr 2021 16:29:27 +0200 Subject: [PATCH 04/81] Usage of PHPUnit 9 only + migrated xml configurations --- composer.json | 2 +- phpunit-integration-tests.xml | 41 +++++++++--------------- phpunit-yaml-free-tests.xml | 57 ++++++++++++++------------------- phpunit-yaml-platinum-tests.xml | 57 ++++++++++++++------------------- phpunit.xml.dist | 45 +++++++++++--------------- 5 files changed, 83 insertions(+), 119 deletions(-) diff --git a/composer.json b/composer.json index 83cd0e1c5..4986c8d72 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,7 @@ "doctrine/inflector": "^1.3", "mockery/mockery": "^1.2", "phpstan/phpstan": "^0.12", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", + "phpunit/phpunit": "^9.3", "squizlabs/php_codesniffer": "^3.4", "symfony/finder": "~4.0", "symfony/yaml": "~4.0" diff --git a/phpunit-integration-tests.xml b/phpunit-integration-tests.xml index ea7662d5c..2c83e3ccc 100644 --- a/phpunit-integration-tests.xml +++ b/phpunit-integration-tests.xml @@ -1,27 +1,18 @@ - - - - tests - - - - - Integration - - - - - src - - + + + + src + + + + + tests + + + + + Integration + + diff --git a/phpunit-yaml-free-tests.xml b/phpunit-yaml-free-tests.xml index 8ffdaf036..67e80cfd8 100644 --- a/phpunit-yaml-free-tests.xml +++ b/phpunit-yaml-free-tests.xml @@ -1,35 +1,26 @@ - - - - - - - - - tests/Elasticsearch/Tests/Yaml/Free - - - - - free - - - - - src - - - - - + + + + src + + + + + + + + + + tests/Elasticsearch/Tests/Yaml/Free + + + + + free + + + + + diff --git a/phpunit-yaml-platinum-tests.xml b/phpunit-yaml-platinum-tests.xml index 87bf8e8fb..4c2e5187d 100644 --- a/phpunit-yaml-platinum-tests.xml +++ b/phpunit-yaml-platinum-tests.xml @@ -1,35 +1,26 @@ - - - - - - - - - tests/Elasticsearch/Tests/Yaml/Platinum - - - - - platinum - - - - - src - - - - - + + + + src + + + + + + + + + + tests/Elasticsearch/Tests/Yaml/Platinum + + + + + platinum + + + + + diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 1fa63af22..354208118 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,29 +1,20 @@ - - - - tests - - - - - Integration - free - platinum - - - - - src - - + + + + src + + + + + tests + + + + + Integration + free + platinum + + From a116bbf6040326fd6dc48634732b040240f93e45 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Mon, 26 Apr 2021 16:30:07 +0200 Subject: [PATCH 05/81] Removed wait for completion in deleteAllTasks --- tests/Elasticsearch/Tests/Utility.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/Elasticsearch/Tests/Utility.php b/tests/Elasticsearch/Tests/Utility.php index 67e593926..550814453 100644 --- a/tests/Elasticsearch/Tests/Utility.php +++ b/tests/Elasticsearch/Tests/Utility.php @@ -118,7 +118,6 @@ private static function wipeCluster(Client $client): void self::wipeRollupJobs($client); self::waitForPendingRollupTasks($client); } - if (version_compare(self::getVersion($client), '7.3.99') > 0) { self::deleteAllSLMPolicies($client); } @@ -556,8 +555,7 @@ private static function deleteAllTasks(Client $client): void foreach ($tasks['nodes'] as $node => $value) { foreach ($value['tasks'] as $id => $data) { $client->tasks()->cancel([ - 'task_id' => $id, - 'wait_for_completion' => true + 'task_id' => $id ]); } } From f7fa640213a4882e76a3a588e5416d9348324026 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Mon, 26 Apr 2021 16:30:48 +0200 Subject: [PATCH 06/81] Added skip on classname + updated skip YAML set --- util/YamlTests.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/util/YamlTests.php b/util/YamlTests.php index 868bee677..7b01431be 100644 --- a/util/YamlTests.php +++ b/util/YamlTests.php @@ -74,14 +74,12 @@ class YamlTests 'RuntimeFields\_50_IpTest::GetMapping' => 'String mismatch', 'RuntimeFields\_60_BooleanTest::GetMapping' => 'String mismatch', 'SearchableSnapshots\_10_UsageTest::TestsSearchableSnapshotsUsageStatsWithFull_copyAndShared_cacheIndices' => 'Mismatch values', + 'ServiceAccounts\_10_BasicTest::TestServiceAccountTokens' => 'Count mismatch', 'Snapshot\_10_BasicTest::CreateASourceOnlySnapshotAndThenRestoreIt' => 'Snapshot name already exists', 'Snapshot\_20_Operator_Privileges_DisabledTest::OperatorOnlySettingsCanBeSetAndRestoredByNonoperatorUserWhenOperatorPrivilegesIsDisabled' => 'Count mismatch', 'Ssl\_10_BasicTest::TestGetSSLCertificates' => 'Mismatch values', 'Transform\_Transforms_CrudTest::TestDeleteTransformWhenItDoesNotExist' => 'Invalid version format: TRANSFORM HTTP/1.1', - 'UnsignedLong\_10_BasicTest::*' => 'Skipped all tests', - 'UnsignedLong\_20_Null_ValueTest::*' => 'Skipped all tests', - 'UnsignedLong\_30_Multi_FieldsTest::*' => 'Skipped all tests', - 'UnsignedLong\_50_Script_ValuesTest::*' => 'Skipped all tests', + 'UnsignedLong\*' => 'Skipped all tests', 'Vectors\_30_Sparse_Vector_BasicTest::DeprecatedFunctionSignature' => 'Failed asserting contains string', ]; @@ -189,10 +187,11 @@ public function build(): array $skippedTest = sprintf("%s\\%s::%s", $namespace, $testName, $functionName); $skippedAllTest = sprintf("%s\\%s::*", $namespace, $testName); + $skippedAllFiles = sprintf("%s\\*", $namespace); $skip = strtolower(self::$testSuite) === 'free' ? self::SKIPPED_TEST_OSS : self::SKIPPED_TEST_XPACK; - if (isset($skip[$skippedAllTest])) { + if (isset($skip[$skippedAllFiles]) || isset($skip[$skippedAllTest])) { $allSkipped = true; $functions .= self::render( self::TEMPLATE_FUNCTION_SKIPPED, From 143a616d11ca0ea97d7f26f37772509485912bd0 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Mon, 26 Apr 2021 16:45:04 +0200 Subject: [PATCH 07/81] Use of ELASTICSEARCH_URL for integration-test --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d1a7c5b41..b4f96fc7d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -76,4 +76,5 @@ jobs: run: | vendor/bin/phpunit -c phpunit-integration-tests.xml env: - TEST_SUITE: free + ELASTICSEARCH_URL: http://localhost:9200 + From 24c2bf498e08d0ab12a85d4856b7040d37f6227c Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 28 Apr 2021 14:35:18 +0200 Subject: [PATCH 08/81] Updated endpoints to 7.14.0-SNAPSHOT --- src/Elasticsearch/Client.php | 21 ++- .../Endpoints/AsyncSearch/Delete.php | 2 +- .../Endpoints/AsyncSearch/Get.php | 2 +- .../Endpoints/AsyncSearch/Status.php | 2 +- .../Endpoints/AsyncSearch/Submit.php | 2 +- .../Autoscaling/DeleteAutoscalingPolicy.php | 2 +- .../Autoscaling/GetAutoscalingCapacity.php | 2 +- .../Autoscaling/GetAutoscalingPolicy.php | 2 +- .../Autoscaling/PutAutoscalingPolicy.php | 2 +- src/Elasticsearch/Endpoints/Bulk.php | 2 +- src/Elasticsearch/Endpoints/Cat/Aliases.php | 2 +- .../Endpoints/Cat/Allocation.php | 2 +- src/Elasticsearch/Endpoints/Cat/Count.php | 2 +- src/Elasticsearch/Endpoints/Cat/Fielddata.php | 2 +- src/Elasticsearch/Endpoints/Cat/Health.php | 2 +- src/Elasticsearch/Endpoints/Cat/Help.php | 2 +- src/Elasticsearch/Endpoints/Cat/Indices.php | 2 +- src/Elasticsearch/Endpoints/Cat/Master.php | 2 +- .../Endpoints/Cat/MlDataFrameAnalytics.php | 2 +- .../Endpoints/Cat/MlDatafeeds.php | 2 +- src/Elasticsearch/Endpoints/Cat/MlJobs.php | 2 +- .../Endpoints/Cat/MlTrainedModels.php | 2 +- src/Elasticsearch/Endpoints/Cat/NodeAttrs.php | 2 +- src/Elasticsearch/Endpoints/Cat/Nodes.php | 2 +- .../Endpoints/Cat/PendingTasks.php | 2 +- src/Elasticsearch/Endpoints/Cat/Plugins.php | 2 +- src/Elasticsearch/Endpoints/Cat/Recovery.php | 2 +- .../Endpoints/Cat/Repositories.php | 2 +- src/Elasticsearch/Endpoints/Cat/Segments.php | 2 +- src/Elasticsearch/Endpoints/Cat/Shards.php | 2 +- src/Elasticsearch/Endpoints/Cat/Snapshots.php | 2 +- src/Elasticsearch/Endpoints/Cat/Tasks.php | 2 +- src/Elasticsearch/Endpoints/Cat/Templates.php | 2 +- .../Endpoints/Cat/ThreadPool.php | 2 +- .../Endpoints/Cat/Transforms.php | 2 +- .../Endpoints/Ccr/DeleteAutoFollowPattern.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Follow.php | 2 +- .../Endpoints/Ccr/FollowInfo.php | 2 +- .../Endpoints/Ccr/FollowStats.php | 2 +- .../Endpoints/Ccr/ForgetFollower.php | 2 +- .../Endpoints/Ccr/GetAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/PauseAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/PauseFollow.php | 2 +- .../Endpoints/Ccr/PutAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/ResumeAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/ResumeFollow.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Stats.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Unfollow.php | 2 +- src/Elasticsearch/Endpoints/ClearScroll.php | 2 +- .../Endpoints/ClosePointInTime.php | 2 +- .../Endpoints/Cluster/AllocationExplain.php | 2 +- .../Cluster/DeleteComponentTemplate.php | 2 +- .../Cluster/DeleteVotingConfigExclusions.php | 2 +- .../Cluster/ExistsComponentTemplate.php | 2 +- .../Cluster/GetComponentTemplate.php | 2 +- .../Endpoints/Cluster/GetSettings.php | 2 +- .../Endpoints/Cluster/Health.php | 2 +- .../Endpoints/Cluster/PendingTasks.php | 2 +- .../Cluster/PostVotingConfigExclusions.php | 2 +- .../Cluster/PutComponentTemplate.php | 2 +- .../Endpoints/Cluster/PutSettings.php | 2 +- .../Endpoints/Cluster/RemoteInfo.php | 2 +- .../Endpoints/Cluster/Reroute.php | 2 +- src/Elasticsearch/Endpoints/Cluster/State.php | 2 +- src/Elasticsearch/Endpoints/Cluster/Stats.php | 2 +- src/Elasticsearch/Endpoints/Count.php | 2 +- src/Elasticsearch/Endpoints/Create.php | 2 +- .../DanglingIndices/DeleteDanglingIndex.php | 2 +- .../DanglingIndices/ImportDanglingIndex.php | 2 +- .../DanglingIndices/ListDanglingIndices.php | 2 +- .../DeleteTransform.php | 2 +- .../GetTransform.php | 2 +- .../GetTransformStats.php | 2 +- .../PreviewTransform.php | 2 +- .../PutTransform.php | 2 +- .../StartTransform.php | 2 +- .../StopTransform.php | 2 +- .../UpdateTransform.php | 2 +- src/Elasticsearch/Endpoints/Delete.php | 2 +- src/Elasticsearch/Endpoints/DeleteByQuery.php | 2 +- .../Endpoints/DeleteByQueryRethrottle.php | 2 +- src/Elasticsearch/Endpoints/DeleteScript.php | 2 +- .../Endpoints/Enrich/DeletePolicy.php | 2 +- .../Endpoints/Enrich/ExecutePolicy.php | 2 +- .../Endpoints/Enrich/GetPolicy.php | 2 +- .../Endpoints/Enrich/PutPolicy.php | 2 +- src/Elasticsearch/Endpoints/Enrich/Stats.php | 2 +- src/Elasticsearch/Endpoints/Eql/Delete.php | 2 +- src/Elasticsearch/Endpoints/Eql/Get.php | 2 +- src/Elasticsearch/Endpoints/Eql/GetStatus.php | 2 +- src/Elasticsearch/Endpoints/Eql/Search.php | 2 +- src/Elasticsearch/Endpoints/Exists.php | 2 +- src/Elasticsearch/Endpoints/ExistsSource.php | 2 +- src/Elasticsearch/Endpoints/Explain.php | 2 +- .../Endpoints/Features/GetFeatures.php | 2 +- .../Endpoints/Features/ResetFeatures.php | 2 +- src/Elasticsearch/Endpoints/FieldCaps.php | 2 +- .../Endpoints/Fleet/GlobalCheckpoints.php | 56 ++++++++ src/Elasticsearch/Endpoints/Get.php | 2 +- src/Elasticsearch/Endpoints/GetScript.php | 2 +- .../Endpoints/GetScriptContext.php | 2 +- .../Endpoints/GetScriptLanguages.php | 2 +- src/Elasticsearch/Endpoints/GetSource.php | 2 +- src/Elasticsearch/Endpoints/Graph/Explore.php | 2 +- .../Endpoints/Ilm/DeleteLifecycle.php | 2 +- .../Endpoints/Ilm/ExplainLifecycle.php | 2 +- .../Endpoints/Ilm/GetLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Ilm/GetStatus.php | 2 +- .../Endpoints/Ilm/MoveToStep.php | 2 +- .../Endpoints/Ilm/PutLifecycle.php | 2 +- .../Endpoints/Ilm/RemovePolicy.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Retry.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Start.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Stop.php | 2 +- src/Elasticsearch/Endpoints/Index.php | 2 +- .../Endpoints/Indices/AddBlock.php | 2 +- .../Endpoints/Indices/Analyze.php | 2 +- .../Endpoints/Indices/ClearCache.php | 2 +- .../Endpoints/Indices/CloneIndices.php | 2 +- src/Elasticsearch/Endpoints/Indices/Close.php | 2 +- .../Endpoints/Indices/Create.php | 2 +- .../Endpoints/Indices/CreateDataStream.php | 2 +- .../Endpoints/Indices/DataStreamsStats.php | 2 +- .../Endpoints/Indices/Delete.php | 2 +- .../Endpoints/Indices/DeleteAlias.php | 2 +- .../Endpoints/Indices/DeleteDataStream.php | 2 +- .../Endpoints/Indices/DeleteIndexTemplate.php | 2 +- .../Endpoints/Indices/DeleteTemplate.php | 2 +- .../Endpoints/Indices/Exists.php | 2 +- .../Endpoints/Indices/ExistsAlias.php | 2 +- .../Endpoints/Indices/ExistsIndexTemplate.php | 2 +- .../Endpoints/Indices/ExistsTemplate.php | 2 +- .../Endpoints/Indices/ExistsType.php | 2 +- src/Elasticsearch/Endpoints/Indices/Flush.php | 2 +- .../Endpoints/Indices/FlushSynced.php | 2 +- .../Endpoints/Indices/ForceMerge.php | 2 +- .../Endpoints/Indices/Freeze.php | 2 +- src/Elasticsearch/Endpoints/Indices/Get.php | 2 +- .../Endpoints/Indices/GetAlias.php | 2 +- .../Endpoints/Indices/GetDataStream.php | 2 +- .../Endpoints/Indices/GetFieldMapping.php | 2 +- .../Endpoints/Indices/GetIndexTemplate.php | 2 +- .../Endpoints/Indices/GetMapping.php | 2 +- .../Endpoints/Indices/GetSettings.php | 2 +- .../Endpoints/Indices/GetTemplate.php | 2 +- .../Endpoints/Indices/GetUpgrade.php | 2 +- .../Endpoints/Indices/MigrateToDataStream.php | 2 +- src/Elasticsearch/Endpoints/Indices/Open.php | 2 +- .../Endpoints/Indices/PromoteDataStream.php | 2 +- .../Endpoints/Indices/PutAlias.php | 2 +- .../Endpoints/Indices/PutIndexTemplate.php | 2 +- .../Endpoints/Indices/PutMapping.php | 2 +- .../Endpoints/Indices/PutSettings.php | 2 +- .../Endpoints/Indices/PutTemplate.php | 2 +- .../Endpoints/Indices/Recovery.php | 2 +- .../Endpoints/Indices/Refresh.php | 2 +- .../Indices/ReloadSearchAnalyzers.php | 2 +- .../Endpoints/Indices/ResolveIndex.php | 2 +- .../Endpoints/Indices/Rollover.php | 2 +- .../Endpoints/Indices/Segments.php | 2 +- .../Endpoints/Indices/ShardStores.php | 2 +- .../Endpoints/Indices/Shrink.php | 2 +- .../Indices/SimulateIndexTemplate.php | 2 +- .../Endpoints/Indices/SimulateTemplate.php | 2 +- src/Elasticsearch/Endpoints/Indices/Split.php | 2 +- src/Elasticsearch/Endpoints/Indices/Stats.php | 2 +- .../Endpoints/Indices/Unfreeze.php | 2 +- .../Endpoints/Indices/UpdateAliases.php | 2 +- .../Endpoints/Indices/Upgrade.php | 2 +- .../Endpoints/Indices/ValidateQuery.php | 2 +- src/Elasticsearch/Endpoints/Info.php | 2 +- .../Endpoints/Ingest/DeletePipeline.php | 2 +- .../Endpoints/Ingest/GeoIpStats.php | 2 +- .../Endpoints/Ingest/GetPipeline.php | 2 +- .../Endpoints/Ingest/ProcessorGrok.php | 2 +- .../Endpoints/Ingest/PutPipeline.php | 2 +- .../Endpoints/Ingest/Simulate.php | 2 +- .../Endpoints/License/Delete.php | 2 +- src/Elasticsearch/Endpoints/License/Get.php | 2 +- .../Endpoints/License/GetBasicStatus.php | 2 +- .../Endpoints/License/GetTrialStatus.php | 2 +- src/Elasticsearch/Endpoints/License/Post.php | 2 +- .../Endpoints/License/PostStartBasic.php | 2 +- .../Endpoints/License/PostStartTrial.php | 2 +- .../Endpoints/Logstash/DeletePipeline.php | 2 +- .../Endpoints/Logstash/GetPipeline.php | 2 +- .../Endpoints/Logstash/PutPipeline.php | 2 +- src/Elasticsearch/Endpoints/MTermVectors.php | 2 +- src/Elasticsearch/Endpoints/Mget.php | 2 +- .../Endpoints/Migration/Deprecations.php | 2 +- src/Elasticsearch/Endpoints/Ml/CloseJob.php | 2 +- .../Endpoints/Ml/DeleteCalendar.php | 2 +- .../Endpoints/Ml/DeleteCalendarEvent.php | 2 +- .../Endpoints/Ml/DeleteCalendarJob.php | 2 +- .../Endpoints/Ml/DeleteDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/DeleteDatafeed.php | 2 +- .../Endpoints/Ml/DeleteExpiredData.php | 2 +- .../Endpoints/Ml/DeleteFilter.php | 2 +- .../Endpoints/Ml/DeleteForecast.php | 2 +- src/Elasticsearch/Endpoints/Ml/DeleteJob.php | 2 +- .../Endpoints/Ml/DeleteModelSnapshot.php | 2 +- .../Endpoints/Ml/DeleteTrainedModel.php | 2 +- .../Endpoints/Ml/DeleteTrainedModelAlias.php | 2 +- .../Endpoints/Ml/EstimateModelMemory.php | 2 +- .../Endpoints/Ml/EvaluateDataFrame.php | 2 +- .../Ml/ExplainDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/FindFileStructure.php | 2 +- src/Elasticsearch/Endpoints/Ml/FlushJob.php | 2 +- src/Elasticsearch/Endpoints/Ml/Forecast.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetBuckets.php | 2 +- .../Endpoints/Ml/GetCalendarEvents.php | 2 +- .../Endpoints/Ml/GetCalendars.php | 2 +- .../Endpoints/Ml/GetCategories.php | 2 +- .../Endpoints/Ml/GetDataFrameAnalytics.php | 2 +- .../Ml/GetDataFrameAnalyticsStats.php | 2 +- .../Endpoints/Ml/GetDatafeedStats.php | 2 +- .../Endpoints/Ml/GetDatafeeds.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetFilters.php | 2 +- .../Endpoints/Ml/GetInfluencers.php | 2 +- .../Endpoints/Ml/GetJobStats.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetJobs.php | 2 +- .../Endpoints/Ml/GetModelSnapshots.php | 2 +- .../Endpoints/Ml/GetOverallBuckets.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetRecords.php | 2 +- .../Endpoints/Ml/GetTrainedModels.php | 2 +- .../Endpoints/Ml/GetTrainedModelsStats.php | 2 +- src/Elasticsearch/Endpoints/Ml/Info.php | 2 +- src/Elasticsearch/Endpoints/Ml/OpenJob.php | 2 +- .../Endpoints/Ml/PostCalendarEvents.php | 2 +- src/Elasticsearch/Endpoints/Ml/PostData.php | 3 +- .../Ml/PreviewDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/PreviewDatafeed.php | 2 +- .../Endpoints/Ml/PutCalendar.php | 2 +- .../Endpoints/Ml/PutCalendarJob.php | 2 +- .../Endpoints/Ml/PutDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/PutDatafeed.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutFilter.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutJob.php | 2 +- .../Endpoints/Ml/PutTrainedModel.php | 2 +- .../Endpoints/Ml/PutTrainedModelAlias.php | 2 +- .../Endpoints/Ml/RevertModelSnapshot.php | 2 +- .../Endpoints/Ml/SetUpgradeMode.php | 2 +- .../Endpoints/Ml/StartDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/StartDatafeed.php | 2 +- .../Endpoints/Ml/StopDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/StopDatafeed.php | 2 +- .../Endpoints/Ml/UpdateDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/UpdateDatafeed.php | 2 +- .../Endpoints/Ml/UpdateFilter.php | 2 +- src/Elasticsearch/Endpoints/Ml/UpdateJob.php | 2 +- .../Endpoints/Ml/UpdateModelSnapshot.php | 2 +- .../Endpoints/Ml/UpgradeJobSnapshot.php | 2 +- src/Elasticsearch/Endpoints/Ml/Validate.php | 2 +- .../Endpoints/Ml/ValidateDetector.php | 2 +- .../Endpoints/Monitoring/Bulk.php | 2 +- src/Elasticsearch/Endpoints/Msearch.php | 2 +- .../Endpoints/MsearchTemplate.php | 2 +- .../Endpoints/Nodes/HotThreads.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Info.php | 2 +- .../Endpoints/Nodes/ReloadSecureSettings.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Stats.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Usage.php | 2 +- .../Endpoints/OpenPointInTime.php | 2 +- src/Elasticsearch/Endpoints/Ping.php | 2 +- src/Elasticsearch/Endpoints/PutScript.php | 2 +- src/Elasticsearch/Endpoints/RankEval.php | 2 +- src/Elasticsearch/Endpoints/Reindex.php | 2 +- .../Endpoints/ReindexRethrottle.php | 2 +- .../Endpoints/RenderSearchTemplate.php | 2 +- .../Endpoints/Rollup/DeleteJob.php | 2 +- .../Endpoints/Rollup/GetJobs.php | 2 +- .../Endpoints/Rollup/GetRollupCaps.php | 2 +- .../Endpoints/Rollup/GetRollupIndexCaps.php | 2 +- src/Elasticsearch/Endpoints/Rollup/PutJob.php | 2 +- src/Elasticsearch/Endpoints/Rollup/Rollup.php | 2 +- .../Endpoints/Rollup/RollupSearch.php | 2 +- .../Endpoints/Rollup/StartJob.php | 2 +- .../Endpoints/Rollup/StopJob.php | 2 +- .../Endpoints/ScriptsPainlessExecute.php | 2 +- src/Elasticsearch/Endpoints/Scroll.php | 2 +- src/Elasticsearch/Endpoints/Search.php | 2 +- src/Elasticsearch/Endpoints/SearchShards.php | 2 +- .../Endpoints/SearchTemplate.php | 2 +- .../SearchableSnapshots/CacheStats.php | 64 +++++++++ .../SearchableSnapshots/ClearCache.php | 2 +- .../Endpoints/SearchableSnapshots/Mount.php | 2 +- .../SearchableSnapshots/RepositoryStats.php | 2 +- .../Endpoints/SearchableSnapshots/Stats.php | 2 +- .../Endpoints/Security/Authenticate.php | 2 +- .../Endpoints/Security/ChangePassword.php | 2 +- .../Endpoints/Security/ClearApiKeyCache.php | 2 +- .../Security/ClearCachedPrivileges.php | 2 +- .../Endpoints/Security/ClearCachedRealms.php | 2 +- .../Endpoints/Security/ClearCachedRoles.php | 2 +- .../Security/ClearCachedServiceTokens.php | 91 ++++++++++++ .../Endpoints/Security/CreateApiKey.php | 2 +- .../Endpoints/Security/CreateServiceToken.php | 98 +++++++++++++ .../Endpoints/Security/DeletePrivileges.php | 2 +- .../Endpoints/Security/DeleteRole.php | 2 +- .../Endpoints/Security/DeleteRoleMapping.php | 2 +- .../Endpoints/Security/DeleteServiceToken.php | 88 ++++++++++++ .../Endpoints/Security/DeleteUser.php | 2 +- .../Endpoints/Security/DisableUser.php | 2 +- .../Endpoints/Security/EnableUser.php | 2 +- .../Endpoints/Security/GetApiKey.php | 2 +- .../Security/GetBuiltinPrivileges.php | 2 +- .../Endpoints/Security/GetPrivileges.php | 2 +- .../Endpoints/Security/GetRole.php | 2 +- .../Endpoints/Security/GetRoleMapping.php | 2 +- .../Endpoints/Security/GetServiceAccounts.php | 78 ++++++++++ .../Security/GetServiceCredentials.php | 76 ++++++++++ .../Endpoints/Security/GetToken.php | 2 +- .../Endpoints/Security/GetUser.php | 2 +- .../Endpoints/Security/GetUserPrivileges.php | 2 +- .../Endpoints/Security/GrantApiKey.php | 2 +- .../Endpoints/Security/HasPrivileges.php | 2 +- .../Endpoints/Security/InvalidateApiKey.php | 2 +- .../Endpoints/Security/InvalidateToken.php | 2 +- .../Endpoints/Security/PutPrivileges.php | 2 +- .../Endpoints/Security/PutRole.php | 2 +- .../Endpoints/Security/PutRoleMapping.php | 2 +- .../Endpoints/Security/PutUser.php | 2 +- .../Endpoints/Shutdown/DeleteNode.php | 2 +- .../Endpoints/Shutdown/GetNode.php | 2 +- .../Endpoints/Shutdown/PutNode.php | 2 +- .../Endpoints/Slm/DeleteLifecycle.php | 2 +- .../Endpoints/Slm/ExecuteLifecycle.php | 2 +- .../Endpoints/Slm/ExecuteRetention.php | 2 +- .../Endpoints/Slm/GetLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Slm/GetStats.php | 2 +- src/Elasticsearch/Endpoints/Slm/GetStatus.php | 2 +- .../Endpoints/Slm/PutLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Slm/Start.php | 2 +- src/Elasticsearch/Endpoints/Slm/Stop.php | 2 +- .../Endpoints/Snapshot/CleanupRepository.php | 2 +- .../Endpoints/Snapshot/CloneSnapshot.php | 2 +- .../Endpoints/Snapshot/Create.php | 2 +- .../Endpoints/Snapshot/CreateRepository.php | 2 +- .../Endpoints/Snapshot/Delete.php | 2 +- .../Endpoints/Snapshot/DeleteRepository.php | 2 +- src/Elasticsearch/Endpoints/Snapshot/Get.php | 3 +- .../Endpoints/Snapshot/GetRepository.php | 2 +- .../Endpoints/Snapshot/Restore.php | 2 +- .../Endpoints/Snapshot/Status.php | 2 +- .../Endpoints/Snapshot/VerifyRepository.php | 2 +- .../Endpoints/Sql/ClearCursor.php | 2 +- src/Elasticsearch/Endpoints/Sql/Query.php | 2 +- src/Elasticsearch/Endpoints/Sql/Translate.php | 2 +- .../Endpoints/Ssl/Certificates.php | 2 +- src/Elasticsearch/Endpoints/Tasks/Cancel.php | 2 +- src/Elasticsearch/Endpoints/Tasks/Get.php | 2 +- .../Endpoints/Tasks/ListTasks.php | 2 +- src/Elasticsearch/Endpoints/TermVectors.php | 2 +- .../Endpoints/TextStructure/FindStructure.php | 2 +- .../Endpoints/Transform/DeleteTransform.php | 2 +- .../Endpoints/Transform/GetTransform.php | 2 +- .../Endpoints/Transform/GetTransformStats.php | 2 +- .../Endpoints/Transform/PreviewTransform.php | 2 +- .../Endpoints/Transform/PutTransform.php | 2 +- .../Endpoints/Transform/StartTransform.php | 2 +- .../Endpoints/Transform/StopTransform.php | 2 +- .../Endpoints/Transform/UpdateTransform.php | 2 +- src/Elasticsearch/Endpoints/Update.php | 2 +- src/Elasticsearch/Endpoints/UpdateByQuery.php | 2 +- .../Endpoints/UpdateByQueryRethrottle.php | 2 +- .../Endpoints/Watcher/AckWatch.php | 2 +- .../Endpoints/Watcher/ActivateWatch.php | 2 +- .../Endpoints/Watcher/DeactivateWatch.php | 2 +- .../Endpoints/Watcher/DeleteWatch.php | 2 +- .../Endpoints/Watcher/ExecuteWatch.php | 2 +- .../Endpoints/Watcher/GetWatch.php | 2 +- .../Endpoints/Watcher/PutWatch.php | 2 +- .../Endpoints/Watcher/QueryWatches.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Start.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Stats.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Stop.php | 2 +- src/Elasticsearch/Endpoints/Xpack/Info.php | 2 +- src/Elasticsearch/Endpoints/Xpack/Usage.php | 2 +- .../Namespaces/AsyncSearchNamespace.php | 2 +- .../Namespaces/AutoscalingNamespace.php | 2 +- src/Elasticsearch/Namespaces/CatNamespace.php | 2 +- src/Elasticsearch/Namespaces/CcrNamespace.php | 2 +- .../Namespaces/ClusterNamespace.php | 4 +- .../Namespaces/DanglingIndicesNamespace.php | 2 +- .../DataFrameTransformDeprecatedNamespace.php | 2 +- .../Namespaces/EnrichNamespace.php | 2 +- src/Elasticsearch/Namespaces/EqlNamespace.php | 2 +- .../Namespaces/FeaturesNamespace.php | 2 +- .../Namespaces/FleetNamespace.php | 54 +++++++ .../Namespaces/GraphNamespace.php | 2 +- src/Elasticsearch/Namespaces/IlmNamespace.php | 2 +- .../Namespaces/IndicesNamespace.php | 2 +- .../Namespaces/IngestNamespace.php | 2 +- .../Namespaces/LicenseNamespace.php | 2 +- .../Namespaces/LogstashNamespace.php | 2 +- .../Namespaces/MigrationNamespace.php | 2 +- src/Elasticsearch/Namespaces/MlNamespace.php | 47 +------ .../Namespaces/MonitoringNamespace.php | 2 +- .../Namespaces/NodesNamespace.php | 2 +- .../Namespaces/RollupNamespace.php | 2 +- .../SearchableSnapshotsNamespace.php | 23 ++- .../Namespaces/SecurityNamespace.php | 133 +++++++++++++++++- .../Namespaces/ShutdownNamespace.php | 2 +- src/Elasticsearch/Namespaces/SlmNamespace.php | 2 +- .../Namespaces/SnapshotNamespace.php | 3 +- src/Elasticsearch/Namespaces/SqlNamespace.php | 2 +- src/Elasticsearch/Namespaces/SslNamespace.php | 2 +- .../Namespaces/TasksNamespace.php | 2 +- .../Namespaces/TextStructureNamespace.php | 2 +- .../Namespaces/TransformNamespace.php | 2 +- .../Namespaces/WatcherNamespace.php | 2 +- .../Namespaces/XpackNamespace.php | 2 +- 412 files changed, 1180 insertions(+), 454 deletions(-) create mode 100644 src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php create mode 100644 src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php create mode 100644 src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php create mode 100644 src/Elasticsearch/Endpoints/Security/CreateServiceToken.php create mode 100644 src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php create mode 100644 src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php create mode 100644 src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php create mode 100644 src/Elasticsearch/Namespaces/FleetNamespace.php diff --git a/src/Elasticsearch/Client.php b/src/Elasticsearch/Client.php index 26d9acaf6..a9f2351a0 100644 --- a/src/Elasticsearch/Client.php +++ b/src/Elasticsearch/Client.php @@ -36,6 +36,7 @@ use Elasticsearch\Namespaces\EnrichNamespace; use Elasticsearch\Namespaces\EqlNamespace; use Elasticsearch\Namespaces\FeaturesNamespace; +use Elasticsearch\Namespaces\FleetNamespace; use Elasticsearch\Namespaces\GraphNamespace; use Elasticsearch\Namespaces\IlmNamespace; use Elasticsearch\Namespaces\IndicesNamespace; @@ -64,11 +65,11 @@ * Class Client * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Client { - const VERSION = '7.13.0-SNAPSHOT'; + const VERSION = '7.14.0-SNAPSHOT'; /** * @var Transport @@ -140,6 +141,11 @@ class Client */ protected $features; + /** + * @var FleetNamespace + */ + protected $fleet; + /** * @var GraphNamespace */ @@ -277,6 +283,7 @@ public function __construct(Transport $transport, callable $endpoint, array $reg $this->enrich = new EnrichNamespace($transport, $endpoint); $this->eql = new EqlNamespace($transport, $endpoint); $this->features = new FeaturesNamespace($transport, $endpoint); + $this->fleet = new FleetNamespace($transport, $endpoint); $this->graph = new GraphNamespace($transport, $endpoint); $this->ilm = new IlmNamespace($transport, $endpoint); $this->indices = new IndicesNamespace($transport, $endpoint); @@ -924,7 +931,7 @@ public function mget(array $params = []) /** * $params['index'] = (list) A comma-separated list of index names to use as default * $params['type'] = DEPRECATED (list) A comma-separated list of document types to use as default - * $params['search_type'] = (enum) Search operation type (Options = query_then_fetch,query_and_fetch,dfs_query_then_fetch,dfs_query_and_fetch) + * $params['search_type'] = (enum) Search operation type (Options = query_then_fetch,dfs_query_then_fetch) * $params['max_concurrent_searches'] = (number) Controls the maximum number of concurrent searches the multi search api will execute * $params['typed_keys'] = (boolean) Specify whether aggregation and suggester names should be prefixed by their respective types in the response * $params['pre_filter_shard_size'] = (number) A threshold that enforces a pre-filter roundtrip to prefilter search shards based on query rewriting if the number of shards the search request expands to exceeds the threshold. This filter roundtrip can limit the number of shards significantly if for instance a shard can not match any documents based on its rewrite method ie. if date filters are mandatory to match but the shard bounds and the query are disjoint. @@ -955,7 +962,7 @@ public function msearch(array $params = []) /** * $params['index'] = (list) A comma-separated list of index names to use as default * $params['type'] = DEPRECATED (list) A comma-separated list of document types to use as default - * $params['search_type'] = (enum) Search operation type (Options = query_then_fetch,query_and_fetch,dfs_query_then_fetch,dfs_query_and_fetch) + * $params['search_type'] = (enum) Search operation type (Options = query_then_fetch,dfs_query_then_fetch) * $params['typed_keys'] = (boolean) Specify whether aggregation and suggester names should be prefixed by their respective types in the response * $params['max_concurrent_searches'] = (number) Controls the maximum number of concurrent searches the multi search api will execute * $params['rest_total_hits_as_int'] = (boolean) Indicates whether hits.total should be rendered as an integer or an object in the rest search response (Default = false) @@ -1323,7 +1330,7 @@ public function searchShards(array $params = []) * $params['preference'] = (string) Specify the node or shard the operation should be performed on (default: random) * $params['routing'] = (list) A comma-separated list of specific routing values * $params['scroll'] = (time) Specify how long a consistent view of the index should be maintained for scrolled search - * $params['search_type'] = (enum) Search operation type (Options = query_then_fetch,query_and_fetch,dfs_query_then_fetch,dfs_query_and_fetch) + * $params['search_type'] = (enum) Search operation type (Options = query_then_fetch,dfs_query_then_fetch) * $params['explain'] = (boolean) Specify whether to return detailed information about score computation as part of a hit * $params['profile'] = (boolean) Specify whether to profile the query execution * $params['typed_keys'] = (boolean) Specify whether aggregation and suggester names should be prefixed by their respective types in the response @@ -1545,6 +1552,10 @@ public function features(): FeaturesNamespace { return $this->features; } + public function fleet(): FleetNamespace + { + return $this->fleet; + } public function graph(): GraphNamespace { return $this->graph; diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php b/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php index 0d6f5c564..6f4e34ce7 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Get.php b/src/Elasticsearch/Endpoints/AsyncSearch/Get.php index 423c830c2..d43e1f590 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Get.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Status.php b/src/Elasticsearch/Endpoints/AsyncSearch/Status.php index f2d00de48..940de46ad 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Status.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Status.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Status extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php b/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php index 8c875400c..2045826e9 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php @@ -23,7 +23,7 @@ * Elasticsearch API name async_search.submit * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Submit extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php index 5e375a97e..1cdcc59ac 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.delete_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php index 1baca22be..26ff8d88d 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php @@ -23,7 +23,7 @@ * Elasticsearch API name autoscaling.get_autoscaling_capacity * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetAutoscalingCapacity extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php index ecc68df33..44ff77261 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.get_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php index 59b2b487d..d96b0e8fe 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.put_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Bulk.php b/src/Elasticsearch/Endpoints/Bulk.php index c8eb5468e..345ddcd88 100644 --- a/src/Elasticsearch/Endpoints/Bulk.php +++ b/src/Elasticsearch/Endpoints/Bulk.php @@ -26,7 +26,7 @@ * Elasticsearch API name bulk * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Bulk extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Aliases.php b/src/Elasticsearch/Endpoints/Cat/Aliases.php index 2ab259c07..3b3cc81a9 100644 --- a/src/Elasticsearch/Endpoints/Cat/Aliases.php +++ b/src/Elasticsearch/Endpoints/Cat/Aliases.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.aliases * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Aliases extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Allocation.php b/src/Elasticsearch/Endpoints/Cat/Allocation.php index ec5982c7b..f201bca26 100644 --- a/src/Elasticsearch/Endpoints/Cat/Allocation.php +++ b/src/Elasticsearch/Endpoints/Cat/Allocation.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.allocation * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Allocation extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Count.php b/src/Elasticsearch/Endpoints/Cat/Count.php index a6dd04fa8..097334921 100644 --- a/src/Elasticsearch/Endpoints/Cat/Count.php +++ b/src/Elasticsearch/Endpoints/Cat/Count.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.count * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Count extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Fielddata.php b/src/Elasticsearch/Endpoints/Cat/Fielddata.php index c9abc4d7a..ea1bb4059 100644 --- a/src/Elasticsearch/Endpoints/Cat/Fielddata.php +++ b/src/Elasticsearch/Endpoints/Cat/Fielddata.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.fielddata * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Fielddata extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Health.php b/src/Elasticsearch/Endpoints/Cat/Health.php index 0bb925170..9b6d677bb 100644 --- a/src/Elasticsearch/Endpoints/Cat/Health.php +++ b/src/Elasticsearch/Endpoints/Cat/Health.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.health * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Health extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Help.php b/src/Elasticsearch/Endpoints/Cat/Help.php index 8ed948ea4..b375fb059 100644 --- a/src/Elasticsearch/Endpoints/Cat/Help.php +++ b/src/Elasticsearch/Endpoints/Cat/Help.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.help * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Help extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Indices.php b/src/Elasticsearch/Endpoints/Cat/Indices.php index 8ac17c683..9ef7a46a6 100644 --- a/src/Elasticsearch/Endpoints/Cat/Indices.php +++ b/src/Elasticsearch/Endpoints/Cat/Indices.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.indices * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Indices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Master.php b/src/Elasticsearch/Endpoints/Cat/Master.php index 5e16f0320..74471fc8e 100644 --- a/src/Elasticsearch/Endpoints/Cat/Master.php +++ b/src/Elasticsearch/Endpoints/Cat/Master.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.master * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Master extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php index 4adbb91f7..163cb6ffe 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class MlDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php b/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php index 11cdb7e99..a122738f5 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php +++ b/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_datafeeds * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class MlDatafeeds extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlJobs.php b/src/Elasticsearch/Endpoints/Cat/MlJobs.php index aaf85994d..e8c74df25 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlJobs.php +++ b/src/Elasticsearch/Endpoints/Cat/MlJobs.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_jobs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class MlJobs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php b/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php index abcfa19a2..4985bfde8 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php +++ b/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_trained_models * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class MlTrainedModels extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php b/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php index aca2b2d88..7fa72ed51 100644 --- a/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php +++ b/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.nodeattrs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class NodeAttrs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Nodes.php b/src/Elasticsearch/Endpoints/Cat/Nodes.php index b94b698c6..5c6dafe12 100644 --- a/src/Elasticsearch/Endpoints/Cat/Nodes.php +++ b/src/Elasticsearch/Endpoints/Cat/Nodes.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.nodes * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Nodes extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/PendingTasks.php b/src/Elasticsearch/Endpoints/Cat/PendingTasks.php index c2cf1e79f..abfdc3b36 100644 --- a/src/Elasticsearch/Endpoints/Cat/PendingTasks.php +++ b/src/Elasticsearch/Endpoints/Cat/PendingTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.pending_tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PendingTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Plugins.php b/src/Elasticsearch/Endpoints/Cat/Plugins.php index 6929db9ab..2fd7a498e 100644 --- a/src/Elasticsearch/Endpoints/Cat/Plugins.php +++ b/src/Elasticsearch/Endpoints/Cat/Plugins.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.plugins * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Plugins extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Recovery.php b/src/Elasticsearch/Endpoints/Cat/Recovery.php index ad3127959..19254e274 100644 --- a/src/Elasticsearch/Endpoints/Cat/Recovery.php +++ b/src/Elasticsearch/Endpoints/Cat/Recovery.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.recovery * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Recovery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Repositories.php b/src/Elasticsearch/Endpoints/Cat/Repositories.php index 11c615afb..96eb6e196 100644 --- a/src/Elasticsearch/Endpoints/Cat/Repositories.php +++ b/src/Elasticsearch/Endpoints/Cat/Repositories.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.repositories * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Repositories extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Segments.php b/src/Elasticsearch/Endpoints/Cat/Segments.php index efcf9ec16..77eb2c076 100644 --- a/src/Elasticsearch/Endpoints/Cat/Segments.php +++ b/src/Elasticsearch/Endpoints/Cat/Segments.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.segments * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Segments extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Shards.php b/src/Elasticsearch/Endpoints/Cat/Shards.php index 0ea33b9b6..e2767ee78 100644 --- a/src/Elasticsearch/Endpoints/Cat/Shards.php +++ b/src/Elasticsearch/Endpoints/Cat/Shards.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.shards * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Shards extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Snapshots.php b/src/Elasticsearch/Endpoints/Cat/Snapshots.php index 352a53453..3577d283c 100644 --- a/src/Elasticsearch/Endpoints/Cat/Snapshots.php +++ b/src/Elasticsearch/Endpoints/Cat/Snapshots.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.snapshots * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Snapshots extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Tasks.php b/src/Elasticsearch/Endpoints/Cat/Tasks.php index dd180cb33..cf3cc815f 100644 --- a/src/Elasticsearch/Endpoints/Cat/Tasks.php +++ b/src/Elasticsearch/Endpoints/Cat/Tasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Tasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Templates.php b/src/Elasticsearch/Endpoints/Cat/Templates.php index 9d3d9374b..a66525e74 100644 --- a/src/Elasticsearch/Endpoints/Cat/Templates.php +++ b/src/Elasticsearch/Endpoints/Cat/Templates.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.templates * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Templates extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/ThreadPool.php b/src/Elasticsearch/Endpoints/Cat/ThreadPool.php index 918d9c582..ba7f9c932 100644 --- a/src/Elasticsearch/Endpoints/Cat/ThreadPool.php +++ b/src/Elasticsearch/Endpoints/Cat/ThreadPool.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.thread_pool * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ThreadPool extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Transforms.php b/src/Elasticsearch/Endpoints/Cat/Transforms.php index 63b574dd3..51016b196 100644 --- a/src/Elasticsearch/Endpoints/Cat/Transforms.php +++ b/src/Elasticsearch/Endpoints/Cat/Transforms.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.transforms * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Transforms extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php index b633a1b16..bddf74860 100644 --- a/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.delete_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Follow.php b/src/Elasticsearch/Endpoints/Ccr/Follow.php index 7e8f27c78..60aceb19a 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Follow.php +++ b/src/Elasticsearch/Endpoints/Ccr/Follow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Follow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php b/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php index 77556e2a4..0b9c3022e 100644 --- a/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php +++ b/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow_info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class FollowInfo extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/FollowStats.php b/src/Elasticsearch/Endpoints/Ccr/FollowStats.php index 2567d6091..485de09e7 100644 --- a/src/Elasticsearch/Endpoints/Ccr/FollowStats.php +++ b/src/Elasticsearch/Endpoints/Ccr/FollowStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class FollowStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php b/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php index b16438a05..8b48a69e4 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php +++ b/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.forget_follower * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ForgetFollower extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php index b402914d9..f8171991f 100644 --- a/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php @@ -23,7 +23,7 @@ * Elasticsearch API name ccr.get_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php index e9372170a..94e05170e 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.pause_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PauseAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php b/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php index 8029604e7..b58841256 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.pause_follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PauseFollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php index 5357709cf..6788c9775 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.put_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php index fee41c1ac..2433ec999 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.resume_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ResumeAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php b/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php index 3c2caede4..e6d87f831 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.resume_follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ResumeFollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Stats.php b/src/Elasticsearch/Endpoints/Ccr/Stats.php index 710316b13..3311ecea6 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Stats.php +++ b/src/Elasticsearch/Endpoints/Ccr/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ccr.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Unfollow.php b/src/Elasticsearch/Endpoints/Ccr/Unfollow.php index 94c9519c0..aba92f8d9 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Unfollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/Unfollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.unfollow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Unfollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ClearScroll.php b/src/Elasticsearch/Endpoints/ClearScroll.php index 6416f70a3..de40ec44f 100644 --- a/src/Elasticsearch/Endpoints/ClearScroll.php +++ b/src/Elasticsearch/Endpoints/ClearScroll.php @@ -23,7 +23,7 @@ * Elasticsearch API name clear_scroll * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ClearScroll extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ClosePointInTime.php b/src/Elasticsearch/Endpoints/ClosePointInTime.php index f47313099..6c5484923 100644 --- a/src/Elasticsearch/Endpoints/ClosePointInTime.php +++ b/src/Elasticsearch/Endpoints/ClosePointInTime.php @@ -23,7 +23,7 @@ * Elasticsearch API name close_point_in_time * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ClosePointInTime extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php b/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php index fb095e2ae..e34e118e7 100644 --- a/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php +++ b/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.allocation_explain * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class AllocationExplain extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php index 8bbd8e82f..e73403ae3 100644 --- a/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.delete_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php b/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php index 995961077..9cc1003e3 100644 --- a/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php +++ b/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.delete_voting_config_exclusions * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteVotingConfigExclusions extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php index 627b69c1f..4abff6de2 100644 --- a/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.exists_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ExistsComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php index 81522a22f..94d47b5de 100644 --- a/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.get_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/GetSettings.php b/src/Elasticsearch/Endpoints/Cluster/GetSettings.php index a66c3cf28..b633428d1 100644 --- a/src/Elasticsearch/Endpoints/Cluster/GetSettings.php +++ b/src/Elasticsearch/Endpoints/Cluster/GetSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.get_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Health.php b/src/Elasticsearch/Endpoints/Cluster/Health.php index caa7d9643..f8dcdfc84 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Health.php +++ b/src/Elasticsearch/Endpoints/Cluster/Health.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.health * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Health extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php b/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php index 8bb913f3e..40ea2b71d 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php +++ b/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.pending_tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PendingTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php b/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php index 6bf140245..a08c8374b 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php +++ b/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.post_voting_config_exclusions * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PostVotingConfigExclusions extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php index 4dae6eecb..82444da0f 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.put_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PutSettings.php b/src/Elasticsearch/Endpoints/Cluster/PutSettings.php index d910ddacf..cbd435d0e 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PutSettings.php +++ b/src/Elasticsearch/Endpoints/Cluster/PutSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.put_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php b/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php index cc502f472..33a457d8c 100644 --- a/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php +++ b/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.remote_info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class RemoteInfo extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Reroute.php b/src/Elasticsearch/Endpoints/Cluster/Reroute.php index a13014313..fd5d5bc03 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Reroute.php +++ b/src/Elasticsearch/Endpoints/Cluster/Reroute.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.reroute * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Reroute extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/State.php b/src/Elasticsearch/Endpoints/Cluster/State.php index 063ec2d3f..6519ec076 100644 --- a/src/Elasticsearch/Endpoints/Cluster/State.php +++ b/src/Elasticsearch/Endpoints/Cluster/State.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.state * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class State extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Stats.php b/src/Elasticsearch/Endpoints/Cluster/Stats.php index ed6b296fe..779ae7171 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Stats.php +++ b/src/Elasticsearch/Endpoints/Cluster/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Count.php b/src/Elasticsearch/Endpoints/Count.php index c3c3a6478..6ab3590f1 100644 --- a/src/Elasticsearch/Endpoints/Count.php +++ b/src/Elasticsearch/Endpoints/Count.php @@ -23,7 +23,7 @@ * Elasticsearch API name count * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Count extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Create.php b/src/Elasticsearch/Endpoints/Create.php index f7d36c8fb..76ad5ff46 100644 --- a/src/Elasticsearch/Endpoints/Create.php +++ b/src/Elasticsearch/Endpoints/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php b/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php index cd54a0005..5b63c32e1 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name dangling_indices.delete_dangling_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteDanglingIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php b/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php index 5a1959840..8d3ac6abd 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name dangling_indices.import_dangling_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ImportDanglingIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php b/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php index 18b862748..423306ffb 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php @@ -23,7 +23,7 @@ * Elasticsearch API name dangling_indices.list_dangling_indices * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ListDanglingIndices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php index 186df2460..428bafcdc 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.delete_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php index 4173eb139..6033bb070 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name data_frame_transform_deprecated.get_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php index 694571a62..bf98ac6b6 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.get_transform_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetTransformStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php index 2d9b49c88..f66009144 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name data_frame_transform_deprecated.preview_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PreviewTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php index 156f08455..e33e3b666 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.put_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php index 2607ec452..c363df019 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.start_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class StartTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php index 1ee544025..041bcd5f8 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.stop_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class StopTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php index e703be1d0..d678c7a31 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.update_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class UpdateTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Delete.php b/src/Elasticsearch/Endpoints/Delete.php index 027514e44..1076ac296 100644 --- a/src/Elasticsearch/Endpoints/Delete.php +++ b/src/Elasticsearch/Endpoints/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteByQuery.php b/src/Elasticsearch/Endpoints/DeleteByQuery.php index b230d1433..79a57641c 100644 --- a/src/Elasticsearch/Endpoints/DeleteByQuery.php +++ b/src/Elasticsearch/Endpoints/DeleteByQuery.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_by_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteByQuery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php b/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php index 7bd25c0a1..508ccb33b 100644 --- a/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php +++ b/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_by_query_rethrottle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteByQueryRethrottle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteScript.php b/src/Elasticsearch/Endpoints/DeleteScript.php index be174a11d..113c2d51c 100644 --- a/src/Elasticsearch/Endpoints/DeleteScript.php +++ b/src/Elasticsearch/Endpoints/DeleteScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php b/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php index 3a60a00e3..15c4ee84f 100644 --- a/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.delete_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeletePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php b/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php index 04ea6f4ea..9e19c11ec 100644 --- a/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.execute_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ExecutePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php b/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php index 08e0242c7..d2e96499a 100644 --- a/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php @@ -23,7 +23,7 @@ * Elasticsearch API name enrich.get_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php b/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php index 156428803..8ec49afea 100644 --- a/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.put_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/Stats.php b/src/Elasticsearch/Endpoints/Enrich/Stats.php index 5897b856d..66f13fe58 100644 --- a/src/Elasticsearch/Endpoints/Enrich/Stats.php +++ b/src/Elasticsearch/Endpoints/Enrich/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name enrich.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Delete.php b/src/Elasticsearch/Endpoints/Eql/Delete.php index 38af62d8e..72f40447d 100644 --- a/src/Elasticsearch/Endpoints/Eql/Delete.php +++ b/src/Elasticsearch/Endpoints/Eql/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Get.php b/src/Elasticsearch/Endpoints/Eql/Get.php index d920f692d..1cdf9ff6c 100644 --- a/src/Elasticsearch/Endpoints/Eql/Get.php +++ b/src/Elasticsearch/Endpoints/Eql/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/GetStatus.php b/src/Elasticsearch/Endpoints/Eql/GetStatus.php index 54367ae3a..a1fe3fe87 100644 --- a/src/Elasticsearch/Endpoints/Eql/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Eql/GetStatus.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Search.php b/src/Elasticsearch/Endpoints/Eql/Search.php index 5e6253a1a..b5df8f1e4 100644 --- a/src/Elasticsearch/Endpoints/Eql/Search.php +++ b/src/Elasticsearch/Endpoints/Eql/Search.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Search extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Exists.php b/src/Elasticsearch/Endpoints/Exists.php index dd743157f..dafe6db23 100644 --- a/src/Elasticsearch/Endpoints/Exists.php +++ b/src/Elasticsearch/Endpoints/Exists.php @@ -24,7 +24,7 @@ * Elasticsearch API name exists * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Exists extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ExistsSource.php b/src/Elasticsearch/Endpoints/ExistsSource.php index 3771612ed..0dafac44e 100644 --- a/src/Elasticsearch/Endpoints/ExistsSource.php +++ b/src/Elasticsearch/Endpoints/ExistsSource.php @@ -24,7 +24,7 @@ * Elasticsearch API name exists_source * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ExistsSource extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Explain.php b/src/Elasticsearch/Endpoints/Explain.php index f2cfe2423..5f16a0b1f 100644 --- a/src/Elasticsearch/Endpoints/Explain.php +++ b/src/Elasticsearch/Endpoints/Explain.php @@ -24,7 +24,7 @@ * Elasticsearch API name explain * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Explain extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Features/GetFeatures.php b/src/Elasticsearch/Endpoints/Features/GetFeatures.php index 576d389fc..6199d4978 100644 --- a/src/Elasticsearch/Endpoints/Features/GetFeatures.php +++ b/src/Elasticsearch/Endpoints/Features/GetFeatures.php @@ -23,7 +23,7 @@ * Elasticsearch API name features.get_features * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetFeatures extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Features/ResetFeatures.php b/src/Elasticsearch/Endpoints/Features/ResetFeatures.php index f12da097e..8b226b50f 100644 --- a/src/Elasticsearch/Endpoints/Features/ResetFeatures.php +++ b/src/Elasticsearch/Endpoints/Features/ResetFeatures.php @@ -23,7 +23,7 @@ * Elasticsearch API name features.reset_features * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ResetFeatures extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/FieldCaps.php b/src/Elasticsearch/Endpoints/FieldCaps.php index 7997fe8f2..25f991448 100644 --- a/src/Elasticsearch/Endpoints/FieldCaps.php +++ b/src/Elasticsearch/Endpoints/FieldCaps.php @@ -23,7 +23,7 @@ * Elasticsearch API name field_caps * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class FieldCaps extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php b/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php new file mode 100644 index 000000000..1d6aacabb --- /dev/null +++ b/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php @@ -0,0 +1,56 @@ +index ?? null; + + if (isset($index)) { + return "/$index/_fleet/global_checkpoints"; + } + throw new RuntimeException('Missing parameter for the endpoint fleet.global_checkpoints'); + } + + public function getParamWhitelist(): array + { + return [ + 'wait_for_advance', + 'wait_for_index', + 'checkpoints', + 'timeout' + ]; + } + + public function getMethod(): string + { + return 'GET'; + } +} diff --git a/src/Elasticsearch/Endpoints/Get.php b/src/Elasticsearch/Endpoints/Get.php index 49326f8e8..83afa2581 100644 --- a/src/Elasticsearch/Endpoints/Get.php +++ b/src/Elasticsearch/Endpoints/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScript.php b/src/Elasticsearch/Endpoints/GetScript.php index a63e4ebbb..98e3c7c6d 100644 --- a/src/Elasticsearch/Endpoints/GetScript.php +++ b/src/Elasticsearch/Endpoints/GetScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name get_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScriptContext.php b/src/Elasticsearch/Endpoints/GetScriptContext.php index b9e29f31d..40151d5fd 100644 --- a/src/Elasticsearch/Endpoints/GetScriptContext.php +++ b/src/Elasticsearch/Endpoints/GetScriptContext.php @@ -23,7 +23,7 @@ * Elasticsearch API name get_script_context * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetScriptContext extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScriptLanguages.php b/src/Elasticsearch/Endpoints/GetScriptLanguages.php index a7fe861ff..b33ee7dd3 100644 --- a/src/Elasticsearch/Endpoints/GetScriptLanguages.php +++ b/src/Elasticsearch/Endpoints/GetScriptLanguages.php @@ -23,7 +23,7 @@ * Elasticsearch API name get_script_languages * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetScriptLanguages extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetSource.php b/src/Elasticsearch/Endpoints/GetSource.php index 6273d0fe8..9985a0142 100644 --- a/src/Elasticsearch/Endpoints/GetSource.php +++ b/src/Elasticsearch/Endpoints/GetSource.php @@ -24,7 +24,7 @@ * Elasticsearch API name get_source * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetSource extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Graph/Explore.php b/src/Elasticsearch/Endpoints/Graph/Explore.php index b1158ce06..c7df00a78 100644 --- a/src/Elasticsearch/Endpoints/Graph/Explore.php +++ b/src/Elasticsearch/Endpoints/Graph/Explore.php @@ -24,7 +24,7 @@ * Elasticsearch API name graph.explore * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Explore extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php index 7d05569f0..be23e76cd 100644 --- a/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.delete_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php index 576244953..31f02f935 100644 --- a/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.explain_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ExplainLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php index 6c57a5f5b..083aefcbb 100644 --- a/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.get_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/GetStatus.php b/src/Elasticsearch/Endpoints/Ilm/GetStatus.php index 2c979ce5c..de50060ad 100644 --- a/src/Elasticsearch/Endpoints/Ilm/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Ilm/GetStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php b/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php index 5d6db6810..6c85168db 100644 --- a/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php +++ b/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.move_to_step * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class MoveToStep extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php index 0ea5d0f88..e70d0354a 100644 --- a/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.put_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php b/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php index 8cacdccdd..69923cd33 100644 --- a/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php +++ b/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.remove_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class RemovePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Retry.php b/src/Elasticsearch/Endpoints/Ilm/Retry.php index 63106953e..73dd60c48 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Retry.php +++ b/src/Elasticsearch/Endpoints/Ilm/Retry.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.retry * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Retry extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Start.php b/src/Elasticsearch/Endpoints/Ilm/Start.php index b82aca11b..698bc7ca5 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Start.php +++ b/src/Elasticsearch/Endpoints/Ilm/Start.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.start * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Start extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Stop.php b/src/Elasticsearch/Endpoints/Ilm/Stop.php index f9f3c78f0..3b50d206a 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Stop.php +++ b/src/Elasticsearch/Endpoints/Ilm/Stop.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.stop * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Stop extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Index.php b/src/Elasticsearch/Endpoints/Index.php index d7ded5578..a5d1ea6e4 100644 --- a/src/Elasticsearch/Endpoints/Index.php +++ b/src/Elasticsearch/Endpoints/Index.php @@ -24,7 +24,7 @@ * Elasticsearch API name index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Index extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/AddBlock.php b/src/Elasticsearch/Endpoints/Indices/AddBlock.php index 6f3bcd1b5..b8a0ed462 100644 --- a/src/Elasticsearch/Endpoints/Indices/AddBlock.php +++ b/src/Elasticsearch/Endpoints/Indices/AddBlock.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.add_block * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class AddBlock extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Analyze.php b/src/Elasticsearch/Endpoints/Indices/Analyze.php index d9845154e..49669e13c 100644 --- a/src/Elasticsearch/Endpoints/Indices/Analyze.php +++ b/src/Elasticsearch/Endpoints/Indices/Analyze.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.analyze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Analyze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ClearCache.php b/src/Elasticsearch/Endpoints/Indices/ClearCache.php index b2517826b..9c1f2c40e 100644 --- a/src/Elasticsearch/Endpoints/Indices/ClearCache.php +++ b/src/Elasticsearch/Endpoints/Indices/ClearCache.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.clear_cache * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ClearCache extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/CloneIndices.php b/src/Elasticsearch/Endpoints/Indices/CloneIndices.php index a31b6efc4..13caf6099 100644 --- a/src/Elasticsearch/Endpoints/Indices/CloneIndices.php +++ b/src/Elasticsearch/Endpoints/Indices/CloneIndices.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.clone * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class CloneIndices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Close.php b/src/Elasticsearch/Endpoints/Indices/Close.php index 7fc56f45a..cd198a1e8 100644 --- a/src/Elasticsearch/Endpoints/Indices/Close.php +++ b/src/Elasticsearch/Endpoints/Indices/Close.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.close * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Close extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Create.php b/src/Elasticsearch/Endpoints/Indices/Create.php index 83f541e48..50ae55b0e 100644 --- a/src/Elasticsearch/Endpoints/Indices/Create.php +++ b/src/Elasticsearch/Endpoints/Indices/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php b/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php index 669299fc5..34520a46b 100644 --- a/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.create_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class CreateDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php b/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php index 2b6f0a8dd..fc0ed1399 100644 --- a/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php +++ b/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.data_streams_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DataStreamsStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Delete.php b/src/Elasticsearch/Endpoints/Indices/Delete.php index 95360b1f9..62d2a71e8 100644 --- a/src/Elasticsearch/Endpoints/Indices/Delete.php +++ b/src/Elasticsearch/Endpoints/Indices/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php b/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php index d42f296d6..a4f267794 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php b/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php index f5ac8d0a2..eb839c87e 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php index 5a5324043..043ec2aa1 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php b/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php index b8f964561..27f157d78 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Exists.php b/src/Elasticsearch/Endpoints/Indices/Exists.php index b585eb5b2..d4821c03c 100644 --- a/src/Elasticsearch/Endpoints/Indices/Exists.php +++ b/src/Elasticsearch/Endpoints/Indices/Exists.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Exists extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php b/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php index bc47b0dec..2c34b3791 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ExistsAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php index 83708829b..ffd051974 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ExistsIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php b/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php index 3f4d53272..bbff4ebf4 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ExistsTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsType.php b/src/Elasticsearch/Endpoints/Indices/ExistsType.php index 993e6eb80..ce71b578a 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsType.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsType.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_type * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ExistsType extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Flush.php b/src/Elasticsearch/Endpoints/Indices/Flush.php index 5bd62a9b2..8e6a94c83 100644 --- a/src/Elasticsearch/Endpoints/Indices/Flush.php +++ b/src/Elasticsearch/Endpoints/Indices/Flush.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.flush * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Flush extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/FlushSynced.php b/src/Elasticsearch/Endpoints/Indices/FlushSynced.php index fb3b4bd40..65959a72e 100644 --- a/src/Elasticsearch/Endpoints/Indices/FlushSynced.php +++ b/src/Elasticsearch/Endpoints/Indices/FlushSynced.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.flush_synced * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class FlushSynced extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ForceMerge.php b/src/Elasticsearch/Endpoints/Indices/ForceMerge.php index af7a4bfac..04474d432 100644 --- a/src/Elasticsearch/Endpoints/Indices/ForceMerge.php +++ b/src/Elasticsearch/Endpoints/Indices/ForceMerge.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.forcemerge * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ForceMerge extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Freeze.php b/src/Elasticsearch/Endpoints/Indices/Freeze.php index b60f1959d..f011a437a 100644 --- a/src/Elasticsearch/Endpoints/Indices/Freeze.php +++ b/src/Elasticsearch/Endpoints/Indices/Freeze.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.freeze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Freeze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Get.php b/src/Elasticsearch/Endpoints/Indices/Get.php index 7ccd65323..8d143ead3 100644 --- a/src/Elasticsearch/Endpoints/Indices/Get.php +++ b/src/Elasticsearch/Endpoints/Indices/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetAlias.php b/src/Elasticsearch/Endpoints/Indices/GetAlias.php index 0bb6aecd5..602a9b45e 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/GetAlias.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetDataStream.php b/src/Elasticsearch/Endpoints/Indices/GetDataStream.php index abc8ac4f3..143311f9a 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/GetDataStream.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php b/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php index e46860aef..7bbe5f680 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.get_field_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetFieldMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php index e5a84e825..6ed1ae04f 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetMapping.php b/src/Elasticsearch/Endpoints/Indices/GetMapping.php index 479176859..baf6daf39 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/GetMapping.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetSettings.php b/src/Elasticsearch/Endpoints/Indices/GetSettings.php index e06cf8e42..8e365b25a 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetSettings.php +++ b/src/Elasticsearch/Endpoints/Indices/GetSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetTemplate.php b/src/Elasticsearch/Endpoints/Indices/GetTemplate.php index 6e341e397..cb1c5331e 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/GetTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php b/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php index c019146c4..bdb3847a7 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php +++ b/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_upgrade * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetUpgrade extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php b/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php index 31ea70ca2..a7b71c03b 100644 --- a/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.migrate_to_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class MigrateToDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Open.php b/src/Elasticsearch/Endpoints/Indices/Open.php index d58f11407..a497894c7 100644 --- a/src/Elasticsearch/Endpoints/Indices/Open.php +++ b/src/Elasticsearch/Endpoints/Indices/Open.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.open * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Open extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php b/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php index ebe42becc..49e6e6644 100644 --- a/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.promote_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PromoteDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutAlias.php b/src/Elasticsearch/Endpoints/Indices/PutAlias.php index e327bba43..46d8b2ed6 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/PutAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php index 1979e31aa..d469da185 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutMapping.php b/src/Elasticsearch/Endpoints/Indices/PutMapping.php index 8c4f8a116..7958b0382 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/PutMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutSettings.php b/src/Elasticsearch/Endpoints/Indices/PutSettings.php index 9a4694cb1..4cf74a24d 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutSettings.php +++ b/src/Elasticsearch/Endpoints/Indices/PutSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.put_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutTemplate.php b/src/Elasticsearch/Endpoints/Indices/PutTemplate.php index bc9f3bf39..9fb15f20e 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/PutTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Recovery.php b/src/Elasticsearch/Endpoints/Indices/Recovery.php index 4e7f313ef..6669b3e15 100644 --- a/src/Elasticsearch/Endpoints/Indices/Recovery.php +++ b/src/Elasticsearch/Endpoints/Indices/Recovery.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.recovery * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Recovery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Refresh.php b/src/Elasticsearch/Endpoints/Indices/Refresh.php index 5eb1640a8..0bfcc9fbf 100644 --- a/src/Elasticsearch/Endpoints/Indices/Refresh.php +++ b/src/Elasticsearch/Endpoints/Indices/Refresh.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.refresh * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Refresh extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php b/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php index 77830a58d..d0edae83b 100644 --- a/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php +++ b/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.reload_search_analyzers * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ReloadSearchAnalyzers extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php b/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php index 67a7696a9..8ff39a0d9 100644 --- a/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php +++ b/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.resolve_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ResolveIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Rollover.php b/src/Elasticsearch/Endpoints/Indices/Rollover.php index 90c38628e..44d77ca1e 100644 --- a/src/Elasticsearch/Endpoints/Indices/Rollover.php +++ b/src/Elasticsearch/Endpoints/Indices/Rollover.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.rollover * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Rollover extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Segments.php b/src/Elasticsearch/Endpoints/Indices/Segments.php index 224c500ae..b3a374692 100644 --- a/src/Elasticsearch/Endpoints/Indices/Segments.php +++ b/src/Elasticsearch/Endpoints/Indices/Segments.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.segments * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Segments extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ShardStores.php b/src/Elasticsearch/Endpoints/Indices/ShardStores.php index f39d62711..1227231c9 100644 --- a/src/Elasticsearch/Endpoints/Indices/ShardStores.php +++ b/src/Elasticsearch/Endpoints/Indices/ShardStores.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.shard_stores * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ShardStores extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Shrink.php b/src/Elasticsearch/Endpoints/Indices/Shrink.php index d394780b3..d4744c866 100644 --- a/src/Elasticsearch/Endpoints/Indices/Shrink.php +++ b/src/Elasticsearch/Endpoints/Indices/Shrink.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.shrink * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Shrink extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php index 81a90ed13..ab48ef688 100644 --- a/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.simulate_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class SimulateIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php b/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php index bb3a2e63d..9db30439d 100644 --- a/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.simulate_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class SimulateTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Split.php b/src/Elasticsearch/Endpoints/Indices/Split.php index a733be80a..a75b2fa8e 100644 --- a/src/Elasticsearch/Endpoints/Indices/Split.php +++ b/src/Elasticsearch/Endpoints/Indices/Split.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.split * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Split extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Stats.php b/src/Elasticsearch/Endpoints/Indices/Stats.php index e86d5d29f..d1baf8660 100644 --- a/src/Elasticsearch/Endpoints/Indices/Stats.php +++ b/src/Elasticsearch/Endpoints/Indices/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Unfreeze.php b/src/Elasticsearch/Endpoints/Indices/Unfreeze.php index 8efd193f9..d5bda9e97 100644 --- a/src/Elasticsearch/Endpoints/Indices/Unfreeze.php +++ b/src/Elasticsearch/Endpoints/Indices/Unfreeze.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.unfreeze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Unfreeze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php b/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php index a39859605..ca87d8370 100644 --- a/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php +++ b/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.update_aliases * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class UpdateAliases extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Upgrade.php b/src/Elasticsearch/Endpoints/Indices/Upgrade.php index 1584027c7..ac2a2490b 100644 --- a/src/Elasticsearch/Endpoints/Indices/Upgrade.php +++ b/src/Elasticsearch/Endpoints/Indices/Upgrade.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.upgrade * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Upgrade extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php b/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php index e4276b795..5f7684541 100644 --- a/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php +++ b/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.validate_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ValidateQuery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Info.php b/src/Elasticsearch/Endpoints/Info.php index 1c96cac08..c02bcc146 100644 --- a/src/Elasticsearch/Endpoints/Info.php +++ b/src/Elasticsearch/Endpoints/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php b/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php index 1d3f3599b..3cfd4e0b1 100644 --- a/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name ingest.delete_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeletePipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php b/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php index 18e63a43b..83fb8f8d0 100644 --- a/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php +++ b/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.geo_ip_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GeoIpStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php b/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php index cc74d8466..3757b09fe 100644 --- a/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.get_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php b/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php index f18837248..811fbf034 100644 --- a/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php +++ b/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.processor_grok * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ProcessorGrok extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php b/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php index 11da0dbb9..8e7f27c8f 100644 --- a/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name ingest.put_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/Simulate.php b/src/Elasticsearch/Endpoints/Ingest/Simulate.php index 87554b5fd..8ce54fa9b 100644 --- a/src/Elasticsearch/Endpoints/Ingest/Simulate.php +++ b/src/Elasticsearch/Endpoints/Ingest/Simulate.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.simulate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Simulate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Delete.php b/src/Elasticsearch/Endpoints/License/Delete.php index 6c57408f0..a886c5c0d 100644 --- a/src/Elasticsearch/Endpoints/License/Delete.php +++ b/src/Elasticsearch/Endpoints/License/Delete.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Get.php b/src/Elasticsearch/Endpoints/License/Get.php index d90f206d3..93a8c84d8 100644 --- a/src/Elasticsearch/Endpoints/License/Get.php +++ b/src/Elasticsearch/Endpoints/License/Get.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/GetBasicStatus.php b/src/Elasticsearch/Endpoints/License/GetBasicStatus.php index c090b54ea..44670024f 100644 --- a/src/Elasticsearch/Endpoints/License/GetBasicStatus.php +++ b/src/Elasticsearch/Endpoints/License/GetBasicStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get_basic_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetBasicStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/GetTrialStatus.php b/src/Elasticsearch/Endpoints/License/GetTrialStatus.php index 457d6d67e..0c8a48126 100644 --- a/src/Elasticsearch/Endpoints/License/GetTrialStatus.php +++ b/src/Elasticsearch/Endpoints/License/GetTrialStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get_trial_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetTrialStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Post.php b/src/Elasticsearch/Endpoints/License/Post.php index 976febfd8..b5b3296e0 100644 --- a/src/Elasticsearch/Endpoints/License/Post.php +++ b/src/Elasticsearch/Endpoints/License/Post.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Post extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/PostStartBasic.php b/src/Elasticsearch/Endpoints/License/PostStartBasic.php index 7711f2c55..35a7c9a0a 100644 --- a/src/Elasticsearch/Endpoints/License/PostStartBasic.php +++ b/src/Elasticsearch/Endpoints/License/PostStartBasic.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post_start_basic * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PostStartBasic extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/PostStartTrial.php b/src/Elasticsearch/Endpoints/License/PostStartTrial.php index 9c8828b55..4259a0e51 100644 --- a/src/Elasticsearch/Endpoints/License/PostStartTrial.php +++ b/src/Elasticsearch/Endpoints/License/PostStartTrial.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post_start_trial * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PostStartTrial extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php b/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php index 8991a809e..95451b6ca 100644 --- a/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.delete_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeletePipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php b/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php index 22b2c63bb..0cdf701fb 100644 --- a/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.get_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php b/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php index 406691570..6d35b8c21 100644 --- a/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.put_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/MTermVectors.php b/src/Elasticsearch/Endpoints/MTermVectors.php index a0bbf4c40..d31d997d2 100644 --- a/src/Elasticsearch/Endpoints/MTermVectors.php +++ b/src/Elasticsearch/Endpoints/MTermVectors.php @@ -23,7 +23,7 @@ * Elasticsearch API name mtermvectors * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class MTermVectors extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Mget.php b/src/Elasticsearch/Endpoints/Mget.php index 01d6763c9..4bd8eba10 100644 --- a/src/Elasticsearch/Endpoints/Mget.php +++ b/src/Elasticsearch/Endpoints/Mget.php @@ -23,7 +23,7 @@ * Elasticsearch API name mget * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Mget extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Migration/Deprecations.php b/src/Elasticsearch/Endpoints/Migration/Deprecations.php index b670e8fdf..9cc60f6c2 100644 --- a/src/Elasticsearch/Endpoints/Migration/Deprecations.php +++ b/src/Elasticsearch/Endpoints/Migration/Deprecations.php @@ -23,7 +23,7 @@ * Elasticsearch API name migration.deprecations * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Deprecations extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/CloseJob.php b/src/Elasticsearch/Endpoints/Ml/CloseJob.php index 136268ece..fbf61d392 100644 --- a/src/Elasticsearch/Endpoints/Ml/CloseJob.php +++ b/src/Elasticsearch/Endpoints/Ml/CloseJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.close_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class CloseJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php b/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php index ecc98c324..8c564c7b0 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_calendar * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteCalendar extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php index d4f0f02b5..2bd987b17 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_calendar_event * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteCalendarEvent extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php index 9b30849e9..d21e58ba5 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_calendar_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteCalendarJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php index 7a854f82c..4e6f655a9 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php b/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php index 06d7c605a..4cf1b635d 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php b/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php index 085d1b8a5..786f17652 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.delete_expired_data * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteExpiredData extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php b/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php index ac8c31de0..b8978859b 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_filter * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteFilter extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php b/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php index 6f3ad100c..5f80a1072 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_forecast * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteForecast extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteJob.php b/src/Elasticsearch/Endpoints/Ml/DeleteJob.php index 8d9c6ed07..824749065 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteJob.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php b/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php index 26858b83c..5a695f559 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_model_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteModelSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php index da2aa5bc0..b78626aad 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_trained_model * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteTrainedModel extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php index b87e73b5f..527abfbf3 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_trained_model_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteTrainedModelAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php b/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php index b20afafa5..5a275ca52 100644 --- a/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php +++ b/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.estimate_model_memory * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class EstimateModelMemory extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php b/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php index 847800cf3..83b84da62 100644 --- a/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php +++ b/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.evaluate_data_frame * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class EvaluateDataFrame extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php index 4f840fcf1..332c0a8b8 100644 --- a/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.explain_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ExplainDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php b/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php index ba04b2427..67c19fd63 100644 --- a/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php +++ b/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php @@ -26,7 +26,7 @@ * Elasticsearch API name ml.find_file_structure * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class FindFileStructure extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/FlushJob.php b/src/Elasticsearch/Endpoints/Ml/FlushJob.php index 7dd6c409a..d23b1c1da 100644 --- a/src/Elasticsearch/Endpoints/Ml/FlushJob.php +++ b/src/Elasticsearch/Endpoints/Ml/FlushJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.flush_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class FlushJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/Forecast.php b/src/Elasticsearch/Endpoints/Ml/Forecast.php index ecb4047c4..77a03be28 100644 --- a/src/Elasticsearch/Endpoints/Ml/Forecast.php +++ b/src/Elasticsearch/Endpoints/Ml/Forecast.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.forecast * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Forecast extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetBuckets.php b/src/Elasticsearch/Endpoints/Ml/GetBuckets.php index 77c883725..960d0c9b1 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetBuckets.php +++ b/src/Elasticsearch/Endpoints/Ml/GetBuckets.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_buckets * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetBuckets extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php b/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php index 894378376..f7f8d0072 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php +++ b/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_calendar_events * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetCalendarEvents extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetCalendars.php b/src/Elasticsearch/Endpoints/Ml/GetCalendars.php index 26cc27cfa..67384d0ba 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetCalendars.php +++ b/src/Elasticsearch/Endpoints/Ml/GetCalendars.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_calendars * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetCalendars extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetCategories.php b/src/Elasticsearch/Endpoints/Ml/GetCategories.php index 46075b28f..e955c4d2e 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetCategories.php +++ b/src/Elasticsearch/Endpoints/Ml/GetCategories.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_categories * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetCategories extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php index 9cb3d90f9..ce212a4b9 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php index 93fb22769..8f4987e83 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_data_frame_analytics_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetDataFrameAnalyticsStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php b/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php index 8c045f293..23db76a83 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_datafeed_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetDatafeedStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php b/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php index 90a956095..1dcc21954 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_datafeeds * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetDatafeeds extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetFilters.php b/src/Elasticsearch/Endpoints/Ml/GetFilters.php index c145d3201..525a8a342 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetFilters.php +++ b/src/Elasticsearch/Endpoints/Ml/GetFilters.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_filters * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetFilters extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php b/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php index 285e80f82..b69636e83 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php +++ b/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_influencers * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetInfluencers extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetJobStats.php b/src/Elasticsearch/Endpoints/Ml/GetJobStats.php index cc6cbd905..c570a3ade 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetJobStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetJobStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_job_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetJobStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetJobs.php b/src/Elasticsearch/Endpoints/Ml/GetJobs.php index 911128f85..3841ca791 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetJobs.php +++ b/src/Elasticsearch/Endpoints/Ml/GetJobs.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_jobs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetJobs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php b/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php index 0a5002108..a828d8ecc 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php +++ b/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_model_snapshots * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetModelSnapshots extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php b/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php index 9898e807b..0af3c4fd8 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php +++ b/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_overall_buckets * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetOverallBuckets extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetRecords.php b/src/Elasticsearch/Endpoints/Ml/GetRecords.php index 50b7d8623..dbcfb8eec 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetRecords.php +++ b/src/Elasticsearch/Endpoints/Ml/GetRecords.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_records * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetRecords extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php b/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php index 1967643bc..2ee51b799 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php +++ b/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_trained_models * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetTrainedModels extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php b/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php index 2576fcf1b..e3ecc1f1f 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_trained_models_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetTrainedModelsStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/Info.php b/src/Elasticsearch/Endpoints/Ml/Info.php index 40a6f9034..8499edb16 100644 --- a/src/Elasticsearch/Endpoints/Ml/Info.php +++ b/src/Elasticsearch/Endpoints/Ml/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/OpenJob.php b/src/Elasticsearch/Endpoints/Ml/OpenJob.php index edaa52436..b8714db8d 100644 --- a/src/Elasticsearch/Endpoints/Ml/OpenJob.php +++ b/src/Elasticsearch/Endpoints/Ml/OpenJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.open_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class OpenJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php b/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php index d3fc89ec0..502533c96 100644 --- a/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php +++ b/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.post_calendar_events * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PostCalendarEvents extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PostData.php b/src/Elasticsearch/Endpoints/Ml/PostData.php index 392093413..96491375e 100644 --- a/src/Elasticsearch/Endpoints/Ml/PostData.php +++ b/src/Elasticsearch/Endpoints/Ml/PostData.php @@ -27,7 +27,7 @@ * Elasticsearch API name ml.post_data * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PostData extends AbstractEndpoint { @@ -89,4 +89,5 @@ public function setJobId($job_id): PostData return $this; } + } diff --git a/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php index b7b56cf0e..895607eb1 100644 --- a/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.preview_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PreviewDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php b/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php index 4103445fa..d1509053b 100644 --- a/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.preview_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PreviewDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutCalendar.php b/src/Elasticsearch/Endpoints/Ml/PutCalendar.php index a858e44ee..11a875597 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutCalendar.php +++ b/src/Elasticsearch/Endpoints/Ml/PutCalendar.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_calendar * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutCalendar extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php b/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php index 51ed81bc9..e4565553a 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php +++ b/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_calendar_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutCalendarJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php index e038fc5ed..7d2bb38c9 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php b/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php index 32b7e006e..fa79dd533 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutFilter.php b/src/Elasticsearch/Endpoints/Ml/PutFilter.php index 2afe2c7e0..61591a3ce 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutFilter.php +++ b/src/Elasticsearch/Endpoints/Ml/PutFilter.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_filter * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutFilter extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutJob.php b/src/Elasticsearch/Endpoints/Ml/PutJob.php index bedebcbb5..a3fb4fd16 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutJob.php +++ b/src/Elasticsearch/Endpoints/Ml/PutJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php b/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php index 1db3d6133..b890e54f2 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php +++ b/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_trained_model * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutTrainedModel extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php b/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php index f460b379a..622367a8c 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php +++ b/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_trained_model_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutTrainedModelAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php b/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php index 800d791ac..37a9660ee 100644 --- a/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.revert_model_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class RevertModelSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php b/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php index a9cfe1cf4..706e63454 100644 --- a/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php +++ b/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.set_upgrade_mode * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class SetUpgradeMode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php index 5a4cfa0b3..4a28e0bd9 100644 --- a/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.start_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class StartDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php b/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php index 6d4c12c83..d92a84871 100644 --- a/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.start_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class StartDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php index 61d031bb3..cae4c6a9b 100644 --- a/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.stop_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class StopDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php b/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php index e3d5222f1..49a376747 100644 --- a/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.stop_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class StopDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php index 21ddcfb7e..852165086 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class UpdateDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php b/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php index 828ef7577..c55c9a5d6 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class UpdateDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php b/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php index 01ce5171c..359713923 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_filter * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class UpdateFilter extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateJob.php b/src/Elasticsearch/Endpoints/Ml/UpdateJob.php index 33ffe783b..8512cf78a 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateJob.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class UpdateJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php b/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php index fe8ea125f..153d82d57 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_model_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class UpdateModelSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php b/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php index a7f84f78d..383f4449c 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.upgrade_job_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class UpgradeJobSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/Validate.php b/src/Elasticsearch/Endpoints/Ml/Validate.php index c72fa9f74..185a920c8 100644 --- a/src/Elasticsearch/Endpoints/Ml/Validate.php +++ b/src/Elasticsearch/Endpoints/Ml/Validate.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.validate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Validate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php b/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php index 2e582d8a2..e945d9659 100644 --- a/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php +++ b/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.validate_detector * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ValidateDetector extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Monitoring/Bulk.php b/src/Elasticsearch/Endpoints/Monitoring/Bulk.php index af90aec51..fa482bc27 100644 --- a/src/Elasticsearch/Endpoints/Monitoring/Bulk.php +++ b/src/Elasticsearch/Endpoints/Monitoring/Bulk.php @@ -26,7 +26,7 @@ * Elasticsearch API name monitoring.bulk * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Bulk extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Msearch.php b/src/Elasticsearch/Endpoints/Msearch.php index cc0bb21e8..199725a54 100644 --- a/src/Elasticsearch/Endpoints/Msearch.php +++ b/src/Elasticsearch/Endpoints/Msearch.php @@ -26,7 +26,7 @@ * Elasticsearch API name msearch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Msearch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/MsearchTemplate.php b/src/Elasticsearch/Endpoints/MsearchTemplate.php index 8121fc82e..e2703497b 100644 --- a/src/Elasticsearch/Endpoints/MsearchTemplate.php +++ b/src/Elasticsearch/Endpoints/MsearchTemplate.php @@ -26,7 +26,7 @@ * Elasticsearch API name msearch_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class MsearchTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/HotThreads.php b/src/Elasticsearch/Endpoints/Nodes/HotThreads.php index 5c62b2d77..87caef3e3 100644 --- a/src/Elasticsearch/Endpoints/Nodes/HotThreads.php +++ b/src/Elasticsearch/Endpoints/Nodes/HotThreads.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.hot_threads * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class HotThreads extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/Info.php b/src/Elasticsearch/Endpoints/Nodes/Info.php index c8967e722..8b438f856 100644 --- a/src/Elasticsearch/Endpoints/Nodes/Info.php +++ b/src/Elasticsearch/Endpoints/Nodes/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php b/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php index ebc8945ad..1b03c17d3 100644 --- a/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php +++ b/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.reload_secure_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ReloadSecureSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/Stats.php b/src/Elasticsearch/Endpoints/Nodes/Stats.php index 60e476018..96f3e5378 100644 --- a/src/Elasticsearch/Endpoints/Nodes/Stats.php +++ b/src/Elasticsearch/Endpoints/Nodes/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/Usage.php b/src/Elasticsearch/Endpoints/Nodes/Usage.php index 742243096..9391499c6 100644 --- a/src/Elasticsearch/Endpoints/Nodes/Usage.php +++ b/src/Elasticsearch/Endpoints/Nodes/Usage.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.usage * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Usage extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/OpenPointInTime.php b/src/Elasticsearch/Endpoints/OpenPointInTime.php index de5f5b664..f51161748 100644 --- a/src/Elasticsearch/Endpoints/OpenPointInTime.php +++ b/src/Elasticsearch/Endpoints/OpenPointInTime.php @@ -23,7 +23,7 @@ * Elasticsearch API name open_point_in_time * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class OpenPointInTime extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ping.php b/src/Elasticsearch/Endpoints/Ping.php index abbd5f62a..0b0aa1705 100644 --- a/src/Elasticsearch/Endpoints/Ping.php +++ b/src/Elasticsearch/Endpoints/Ping.php @@ -23,7 +23,7 @@ * Elasticsearch API name ping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Ping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/PutScript.php b/src/Elasticsearch/Endpoints/PutScript.php index 4fdb09009..a4fc6ac7f 100644 --- a/src/Elasticsearch/Endpoints/PutScript.php +++ b/src/Elasticsearch/Endpoints/PutScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name put_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/RankEval.php b/src/Elasticsearch/Endpoints/RankEval.php index 52f68d951..b1e24ca50 100644 --- a/src/Elasticsearch/Endpoints/RankEval.php +++ b/src/Elasticsearch/Endpoints/RankEval.php @@ -23,7 +23,7 @@ * Elasticsearch API name rank_eval * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class RankEval extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Reindex.php b/src/Elasticsearch/Endpoints/Reindex.php index 181aa1e64..bab3642d8 100644 --- a/src/Elasticsearch/Endpoints/Reindex.php +++ b/src/Elasticsearch/Endpoints/Reindex.php @@ -23,7 +23,7 @@ * Elasticsearch API name reindex * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Reindex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ReindexRethrottle.php b/src/Elasticsearch/Endpoints/ReindexRethrottle.php index 76db82278..120fb8b86 100644 --- a/src/Elasticsearch/Endpoints/ReindexRethrottle.php +++ b/src/Elasticsearch/Endpoints/ReindexRethrottle.php @@ -24,7 +24,7 @@ * Elasticsearch API name reindex_rethrottle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ReindexRethrottle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/RenderSearchTemplate.php b/src/Elasticsearch/Endpoints/RenderSearchTemplate.php index 64fd0a8c3..202509260 100644 --- a/src/Elasticsearch/Endpoints/RenderSearchTemplate.php +++ b/src/Elasticsearch/Endpoints/RenderSearchTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name render_search_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class RenderSearchTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php b/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php index 7d687e96b..13e9057a2 100644 --- a/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.delete_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/GetJobs.php b/src/Elasticsearch/Endpoints/Rollup/GetJobs.php index dd6e20b70..59f48e4aa 100644 --- a/src/Elasticsearch/Endpoints/Rollup/GetJobs.php +++ b/src/Elasticsearch/Endpoints/Rollup/GetJobs.php @@ -23,7 +23,7 @@ * Elasticsearch API name rollup.get_jobs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetJobs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php b/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php index 65a532140..1e532271e 100644 --- a/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php +++ b/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php @@ -23,7 +23,7 @@ * Elasticsearch API name rollup.get_rollup_caps * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetRollupCaps extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php b/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php index 634a04365..f1ee2e649 100644 --- a/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php +++ b/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.get_rollup_index_caps * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetRollupIndexCaps extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/PutJob.php b/src/Elasticsearch/Endpoints/Rollup/PutJob.php index a86ee9adb..4bd2cafde 100644 --- a/src/Elasticsearch/Endpoints/Rollup/PutJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/PutJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.put_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/Rollup.php b/src/Elasticsearch/Endpoints/Rollup/Rollup.php index a5c955629..4542f2239 100644 --- a/src/Elasticsearch/Endpoints/Rollup/Rollup.php +++ b/src/Elasticsearch/Endpoints/Rollup/Rollup.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.rollup * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Rollup extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php b/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php index ce17693dd..f64811a33 100644 --- a/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php +++ b/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.rollup_search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class RollupSearch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/StartJob.php b/src/Elasticsearch/Endpoints/Rollup/StartJob.php index f386d7e91..084c16d23 100644 --- a/src/Elasticsearch/Endpoints/Rollup/StartJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/StartJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.start_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class StartJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/StopJob.php b/src/Elasticsearch/Endpoints/Rollup/StopJob.php index 5b6b7347e..941182cf2 100644 --- a/src/Elasticsearch/Endpoints/Rollup/StopJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/StopJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.stop_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class StopJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php b/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php index bb60792bb..788536bf6 100644 --- a/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php +++ b/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php @@ -23,7 +23,7 @@ * Elasticsearch API name scripts_painless_execute * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ScriptsPainlessExecute extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Scroll.php b/src/Elasticsearch/Endpoints/Scroll.php index 804795be0..0c40017a1 100644 --- a/src/Elasticsearch/Endpoints/Scroll.php +++ b/src/Elasticsearch/Endpoints/Scroll.php @@ -23,7 +23,7 @@ * Elasticsearch API name scroll * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Scroll extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Search.php b/src/Elasticsearch/Endpoints/Search.php index 00f259bba..c0d486490 100644 --- a/src/Elasticsearch/Endpoints/Search.php +++ b/src/Elasticsearch/Endpoints/Search.php @@ -23,7 +23,7 @@ * Elasticsearch API name search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Search extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchShards.php b/src/Elasticsearch/Endpoints/SearchShards.php index 293938998..d8fde6c94 100644 --- a/src/Elasticsearch/Endpoints/SearchShards.php +++ b/src/Elasticsearch/Endpoints/SearchShards.php @@ -23,7 +23,7 @@ * Elasticsearch API name search_shards * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class SearchShards extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchTemplate.php b/src/Elasticsearch/Endpoints/SearchTemplate.php index efd35f838..b18cfc21a 100644 --- a/src/Elasticsearch/Endpoints/SearchTemplate.php +++ b/src/Elasticsearch/Endpoints/SearchTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name search_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class SearchTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php new file mode 100644 index 000000000..48d298b27 --- /dev/null +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php @@ -0,0 +1,64 @@ +node_id ?? null; + + if (isset($node_id)) { + return "/_searchable_snapshots/$node_id/cache/stats"; + } + return "/_searchable_snapshots/cache/stats"; + } + + public function getParamWhitelist(): array + { + return []; + } + + public function getMethod(): string + { + return 'GET'; + } + + public function setNodeId($node_id): CacheStats + { + if (isset($node_id) !== true) { + return $this; + } + if (is_array($node_id) === true) { + $node_id = implode(",", $node_id); + } + $this->node_id = $node_id; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php index f2062d88e..4697072bb 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php @@ -23,7 +23,7 @@ * Elasticsearch API name searchable_snapshots.clear_cache * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ClearCache extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php index 2fdd5105b..47bdcfd40 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php @@ -24,7 +24,7 @@ * Elasticsearch API name searchable_snapshots.mount * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Mount extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php index 913e4646c..d6886de96 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name searchable_snapshots.repository_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class RepositoryStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php index 967d2ade9..17369b01d 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name searchable_snapshots.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/Authenticate.php b/src/Elasticsearch/Endpoints/Security/Authenticate.php index 58f7c9c6b..f1d742bcb 100644 --- a/src/Elasticsearch/Endpoints/Security/Authenticate.php +++ b/src/Elasticsearch/Endpoints/Security/Authenticate.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.authenticate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Authenticate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ChangePassword.php b/src/Elasticsearch/Endpoints/Security/ChangePassword.php index 903a87a8b..c30117c02 100644 --- a/src/Elasticsearch/Endpoints/Security/ChangePassword.php +++ b/src/Elasticsearch/Endpoints/Security/ChangePassword.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.change_password * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ChangePassword extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php b/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php index f6fc2b8e6..fb1f352fe 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php +++ b/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_api_key_cache * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ClearApiKeyCache extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php b/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php index ccd371af0..52e77a487 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ClearCachedPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php b/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php index 094d59fc0..006004776 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_realms * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ClearCachedRealms extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php b/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php index e6c5c41cb..1f3be3f76 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_roles * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ClearCachedRoles extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php b/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php new file mode 100644 index 000000000..ee3b0c0e3 --- /dev/null +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php @@ -0,0 +1,91 @@ +namespace ?? null; + $service = $this->service ?? null; + $name = $this->name ?? null; + + if (isset($namespace) && isset($service) && isset($name)) { + return "/_security/service/$namespace/$service/credential/token/$name/_clear_cache"; + } + throw new RuntimeException('Missing parameter for the endpoint security.clear_cached_service_tokens'); + } + + public function getParamWhitelist(): array + { + return [ + + ]; + } + + public function getMethod(): string + { + return 'POST'; + } + + public function setNamespace($namespace): ClearCachedServiceTokens + { + if (isset($namespace) !== true) { + return $this; + } + $this->namespace = $namespace; + + return $this; + } + + public function setService($service): ClearCachedServiceTokens + { + if (isset($service) !== true) { + return $this; + } + $this->service = $service; + + return $this; + } + + public function setName($name): ClearCachedServiceTokens + { + if (isset($name) !== true) { + return $this; + } + if (is_array($name) === true) { + $name = implode(",", $name); + } + $this->name = $name; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Security/CreateApiKey.php b/src/Elasticsearch/Endpoints/Security/CreateApiKey.php index b7321e2a0..9cb47ec8e 100644 --- a/src/Elasticsearch/Endpoints/Security/CreateApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/CreateApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.create_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class CreateApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php b/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php new file mode 100644 index 000000000..5dc2541f6 --- /dev/null +++ b/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php @@ -0,0 +1,98 @@ +namespace) !== true) { + throw new RuntimeException( + 'namespace is required for create_service_token' + ); + } + $namespace = $this->namespace; + if (isset($this->service) !== true) { + throw new RuntimeException( + 'service is required for create_service_token' + ); + } + $service = $this->service; + $name = $this->name ?? null; + + if (isset($name)) { + return "/_security/service/$namespace/$service/credential/token/$name"; + } + return "/_security/service/$namespace/$service/credential/token"; + } + + public function getParamWhitelist(): array + { + return [ + 'refresh' + ]; + } + + public function getMethod(): string + { + return 'POST'; + } + + public function setNamespace($namespace): CreateServiceToken + { + if (isset($namespace) !== true) { + return $this; + } + $this->namespace = $namespace; + + return $this; + } + + public function setService($service): CreateServiceToken + { + if (isset($service) !== true) { + return $this; + } + $this->service = $service; + + return $this; + } + + public function setName($name): CreateServiceToken + { + if (isset($name) !== true) { + return $this; + } + $this->name = $name; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php b/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php index 6680b7226..fc709daf5 100644 --- a/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeletePrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteRole.php b/src/Elasticsearch/Endpoints/Security/DeleteRole.php index 23de86f54..b189e70d3 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteRole.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteRole.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_role * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteRole extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php b/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php index 290227be8..d3820daf8 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_role_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteRoleMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php b/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php new file mode 100644 index 000000000..3739ced1f --- /dev/null +++ b/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php @@ -0,0 +1,88 @@ +namespace ?? null; + $service = $this->service ?? null; + $name = $this->name ?? null; + + if (isset($namespace) && isset($service) && isset($name)) { + return "/_security/service/$namespace/$service/credential/token/$name"; + } + throw new RuntimeException('Missing parameter for the endpoint security.delete_service_token'); + } + + public function getParamWhitelist(): array + { + return [ + 'refresh' + ]; + } + + public function getMethod(): string + { + return 'DELETE'; + } + + public function setNamespace($namespace): DeleteServiceToken + { + if (isset($namespace) !== true) { + return $this; + } + $this->namespace = $namespace; + + return $this; + } + + public function setService($service): DeleteServiceToken + { + if (isset($service) !== true) { + return $this; + } + $this->service = $service; + + return $this; + } + + public function setName($name): DeleteServiceToken + { + if (isset($name) !== true) { + return $this; + } + $this->name = $name; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Security/DeleteUser.php b/src/Elasticsearch/Endpoints/Security/DeleteUser.php index 9a3a83c82..4231c1a15 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteUser.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DisableUser.php b/src/Elasticsearch/Endpoints/Security/DisableUser.php index 91737d846..574f5e982 100644 --- a/src/Elasticsearch/Endpoints/Security/DisableUser.php +++ b/src/Elasticsearch/Endpoints/Security/DisableUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.disable_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DisableUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/EnableUser.php b/src/Elasticsearch/Endpoints/Security/EnableUser.php index 1ef5f9052..ec3f83219 100644 --- a/src/Elasticsearch/Endpoints/Security/EnableUser.php +++ b/src/Elasticsearch/Endpoints/Security/EnableUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.enable_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class EnableUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetApiKey.php b/src/Elasticsearch/Endpoints/Security/GetApiKey.php index 79321bbd1..044306531 100644 --- a/src/Elasticsearch/Endpoints/Security/GetApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/GetApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php b/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php index 716d89575..f5014cd27 100644 --- a/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_builtin_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetBuiltinPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetPrivileges.php b/src/Elasticsearch/Endpoints/Security/GetPrivileges.php index 2a3335185..1970f0d13 100644 --- a/src/Elasticsearch/Endpoints/Security/GetPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/GetPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetRole.php b/src/Elasticsearch/Endpoints/Security/GetRole.php index 74a805684..0bfea076c 100644 --- a/src/Elasticsearch/Endpoints/Security/GetRole.php +++ b/src/Elasticsearch/Endpoints/Security/GetRole.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_role * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetRole extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php b/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php index 23a2046ce..d7a5e5ecb 100644 --- a/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php +++ b/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_role_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetRoleMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php b/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php new file mode 100644 index 000000000..9b03b8638 --- /dev/null +++ b/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php @@ -0,0 +1,78 @@ +namespace ?? null; + $service = $this->service ?? null; + + if (isset($namespace) && isset($service)) { + return "/_security/service/$namespace/$service"; + } + if (isset($namespace)) { + return "/_security/service/$namespace"; + } + return "/_security/service"; + } + + public function getParamWhitelist(): array + { + return [ + + ]; + } + + public function getMethod(): string + { + return 'GET'; + } + + public function setNamespace($namespace): GetServiceAccounts + { + if (isset($namespace) !== true) { + return $this; + } + $this->namespace = $namespace; + + return $this; + } + + public function setService($service): GetServiceAccounts + { + if (isset($service) !== true) { + return $this; + } + $this->service = $service; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php b/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php new file mode 100644 index 000000000..667939683 --- /dev/null +++ b/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php @@ -0,0 +1,76 @@ +namespace ?? null; + $service = $this->service ?? null; + + if (isset($namespace) && isset($service)) { + return "/_security/service/$namespace/$service/credential"; + } + throw new RuntimeException('Missing parameter for the endpoint security.get_service_credentials'); + } + + public function getParamWhitelist(): array + { + return [ + + ]; + } + + public function getMethod(): string + { + return 'GET'; + } + + public function setNamespace($namespace): GetServiceCredentials + { + if (isset($namespace) !== true) { + return $this; + } + $this->namespace = $namespace; + + return $this; + } + + public function setService($service): GetServiceCredentials + { + if (isset($service) !== true) { + return $this; + } + $this->service = $service; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Security/GetToken.php b/src/Elasticsearch/Endpoints/Security/GetToken.php index 68308142f..6e157e620 100644 --- a/src/Elasticsearch/Endpoints/Security/GetToken.php +++ b/src/Elasticsearch/Endpoints/Security/GetToken.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetUser.php b/src/Elasticsearch/Endpoints/Security/GetUser.php index ee2898963..40d9aad46 100644 --- a/src/Elasticsearch/Endpoints/Security/GetUser.php +++ b/src/Elasticsearch/Endpoints/Security/GetUser.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php b/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php index 4128ceb17..e72b4b09b 100644 --- a/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_user_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetUserPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GrantApiKey.php b/src/Elasticsearch/Endpoints/Security/GrantApiKey.php index a2755b9cc..32395c8c5 100644 --- a/src/Elasticsearch/Endpoints/Security/GrantApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/GrantApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.grant_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GrantApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/HasPrivileges.php b/src/Elasticsearch/Endpoints/Security/HasPrivileges.php index bcd9a711f..83b36e8d5 100644 --- a/src/Elasticsearch/Endpoints/Security/HasPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/HasPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.has_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class HasPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php b/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php index 62089e026..532947bc2 100644 --- a/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.invalidate_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class InvalidateApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/InvalidateToken.php b/src/Elasticsearch/Endpoints/Security/InvalidateToken.php index 19cf4816b..8139838e7 100644 --- a/src/Elasticsearch/Endpoints/Security/InvalidateToken.php +++ b/src/Elasticsearch/Endpoints/Security/InvalidateToken.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.invalidate_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class InvalidateToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutPrivileges.php b/src/Elasticsearch/Endpoints/Security/PutPrivileges.php index 8ac738f72..4fe219902 100644 --- a/src/Elasticsearch/Endpoints/Security/PutPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/PutPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.put_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutRole.php b/src/Elasticsearch/Endpoints/Security/PutRole.php index 887dca0b4..bc98fb63e 100644 --- a/src/Elasticsearch/Endpoints/Security/PutRole.php +++ b/src/Elasticsearch/Endpoints/Security/PutRole.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.put_role * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutRole extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php b/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php index 4d61d7d91..a3cc8d62f 100644 --- a/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php +++ b/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.put_role_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutRoleMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutUser.php b/src/Elasticsearch/Endpoints/Security/PutUser.php index ccfef1c25..fce20a77a 100644 --- a/src/Elasticsearch/Endpoints/Security/PutUser.php +++ b/src/Elasticsearch/Endpoints/Security/PutUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.put_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php b/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php index ca339ddc6..af8d38f87 100644 --- a/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php +++ b/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php @@ -24,7 +24,7 @@ * Elasticsearch API name shutdown.delete_node * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteNode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Shutdown/GetNode.php b/src/Elasticsearch/Endpoints/Shutdown/GetNode.php index 14cff807d..80ce07b66 100644 --- a/src/Elasticsearch/Endpoints/Shutdown/GetNode.php +++ b/src/Elasticsearch/Endpoints/Shutdown/GetNode.php @@ -23,7 +23,7 @@ * Elasticsearch API name shutdown.get_node * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetNode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Shutdown/PutNode.php b/src/Elasticsearch/Endpoints/Shutdown/PutNode.php index b0825b95c..ab30d23b3 100644 --- a/src/Elasticsearch/Endpoints/Shutdown/PutNode.php +++ b/src/Elasticsearch/Endpoints/Shutdown/PutNode.php @@ -24,7 +24,7 @@ * Elasticsearch API name shutdown.put_node * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutNode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php b/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php index 6b567c546..2616ceaf9 100644 --- a/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name slm.delete_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php b/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php index 3c77d4c89..9ff0e7b4d 100644 --- a/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name slm.execute_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ExecuteLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php b/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php index 8c4ecc706..9d840549c 100644 --- a/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php +++ b/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.execute_retention * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ExecuteRetention extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php b/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php index 7cbbdf2c3..08d9d22e1 100644 --- a/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.get_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/GetStats.php b/src/Elasticsearch/Endpoints/Slm/GetStats.php index 4344e7885..30a3b0457 100644 --- a/src/Elasticsearch/Endpoints/Slm/GetStats.php +++ b/src/Elasticsearch/Endpoints/Slm/GetStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.get_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/GetStatus.php b/src/Elasticsearch/Endpoints/Slm/GetStatus.php index aed2d53fb..747d5dd6f 100644 --- a/src/Elasticsearch/Endpoints/Slm/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Slm/GetStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php b/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php index 747edb569..7e4e86df3 100644 --- a/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name slm.put_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/Start.php b/src/Elasticsearch/Endpoints/Slm/Start.php index 65fe2f9e4..60943f267 100644 --- a/src/Elasticsearch/Endpoints/Slm/Start.php +++ b/src/Elasticsearch/Endpoints/Slm/Start.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.start * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Start extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/Stop.php b/src/Elasticsearch/Endpoints/Slm/Stop.php index b353cbccc..02d800ef3 100644 --- a/src/Elasticsearch/Endpoints/Slm/Stop.php +++ b/src/Elasticsearch/Endpoints/Slm/Stop.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.stop * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Stop extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php b/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php index 2185a4644..db5cafc33 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.cleanup_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class CleanupRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php b/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php index 38edde7eb..27730a6ef 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php +++ b/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.clone * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class CloneSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Create.php b/src/Elasticsearch/Endpoints/Snapshot/Create.php index e64e8acb6..ee3e50b85 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Create.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php b/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php index aa056e8d0..8aa18f183 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.create_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class CreateRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Delete.php b/src/Elasticsearch/Endpoints/Snapshot/Delete.php index d04d86b3d..169ee906d 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Delete.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php b/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php index c80c6dd95..a6ea88124 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.delete_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Get.php b/src/Elasticsearch/Endpoints/Snapshot/Get.php index 2e1732e34..553346e7b 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Get.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Get extends AbstractEndpoint { @@ -47,6 +47,7 @@ public function getParamWhitelist(): array return [ 'master_timeout', 'ignore_unavailable', + 'index_details', 'verbose' ]; } diff --git a/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php b/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php index 014201e30..253d44488 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php @@ -23,7 +23,7 @@ * Elasticsearch API name snapshot.get_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Restore.php b/src/Elasticsearch/Endpoints/Snapshot/Restore.php index a250a8637..1c2a1f3ea 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Restore.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Restore.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.restore * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Restore extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Status.php b/src/Elasticsearch/Endpoints/Snapshot/Status.php index 05d572228..e50da98ed 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Status.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Status.php @@ -23,7 +23,7 @@ * Elasticsearch API name snapshot.status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Status extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php b/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php index 09aabc98a..8cfb72984 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.verify_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class VerifyRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/ClearCursor.php b/src/Elasticsearch/Endpoints/Sql/ClearCursor.php index fe962c913..a1e04175d 100644 --- a/src/Elasticsearch/Endpoints/Sql/ClearCursor.php +++ b/src/Elasticsearch/Endpoints/Sql/ClearCursor.php @@ -23,7 +23,7 @@ * Elasticsearch API name sql.clear_cursor * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ClearCursor extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/Query.php b/src/Elasticsearch/Endpoints/Sql/Query.php index a99fcc87b..dac890351 100644 --- a/src/Elasticsearch/Endpoints/Sql/Query.php +++ b/src/Elasticsearch/Endpoints/Sql/Query.php @@ -23,7 +23,7 @@ * Elasticsearch API name sql.query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Query extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/Translate.php b/src/Elasticsearch/Endpoints/Sql/Translate.php index e221e74a6..03016e3f4 100644 --- a/src/Elasticsearch/Endpoints/Sql/Translate.php +++ b/src/Elasticsearch/Endpoints/Sql/Translate.php @@ -23,7 +23,7 @@ * Elasticsearch API name sql.translate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Translate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ssl/Certificates.php b/src/Elasticsearch/Endpoints/Ssl/Certificates.php index 75afd8128..940eb845c 100644 --- a/src/Elasticsearch/Endpoints/Ssl/Certificates.php +++ b/src/Elasticsearch/Endpoints/Ssl/Certificates.php @@ -23,7 +23,7 @@ * Elasticsearch API name ssl.certificates * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Certificates extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Tasks/Cancel.php b/src/Elasticsearch/Endpoints/Tasks/Cancel.php index 7ad9ba29d..d45f431b4 100644 --- a/src/Elasticsearch/Endpoints/Tasks/Cancel.php +++ b/src/Elasticsearch/Endpoints/Tasks/Cancel.php @@ -23,7 +23,7 @@ * Elasticsearch API name tasks.cancel * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Cancel extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Tasks/Get.php b/src/Elasticsearch/Endpoints/Tasks/Get.php index b9f457f6e..d859dd22d 100644 --- a/src/Elasticsearch/Endpoints/Tasks/Get.php +++ b/src/Elasticsearch/Endpoints/Tasks/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name tasks.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Tasks/ListTasks.php b/src/Elasticsearch/Endpoints/Tasks/ListTasks.php index 735ebc6be..51b6b54e8 100644 --- a/src/Elasticsearch/Endpoints/Tasks/ListTasks.php +++ b/src/Elasticsearch/Endpoints/Tasks/ListTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name tasks.list * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ListTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/TermVectors.php b/src/Elasticsearch/Endpoints/TermVectors.php index 03c094497..811ff73f8 100644 --- a/src/Elasticsearch/Endpoints/TermVectors.php +++ b/src/Elasticsearch/Endpoints/TermVectors.php @@ -24,7 +24,7 @@ * Elasticsearch API name termvectors * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class TermVectors extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php b/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php index ccaa35783..d24f5108e 100644 --- a/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php +++ b/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php @@ -26,7 +26,7 @@ * Elasticsearch API name text_structure.find_structure * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class FindStructure extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php b/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php index e8fd98f7f..f0e47f142 100644 --- a/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.delete_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/GetTransform.php b/src/Elasticsearch/Endpoints/Transform/GetTransform.php index 295536abf..2c9664c48 100644 --- a/src/Elasticsearch/Endpoints/Transform/GetTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/GetTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name transform.get_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php b/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php index e4dbf0e30..3dd0a8a91 100644 --- a/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php +++ b/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.get_transform_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetTransformStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php b/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php index 43665c6e6..b5838add0 100644 --- a/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name transform.preview_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PreviewTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/PutTransform.php b/src/Elasticsearch/Endpoints/Transform/PutTransform.php index d91d47636..d253768a1 100644 --- a/src/Elasticsearch/Endpoints/Transform/PutTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/PutTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.put_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/StartTransform.php b/src/Elasticsearch/Endpoints/Transform/StartTransform.php index 6d4e4abf3..85280c79d 100644 --- a/src/Elasticsearch/Endpoints/Transform/StartTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/StartTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.start_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class StartTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/StopTransform.php b/src/Elasticsearch/Endpoints/Transform/StopTransform.php index 9b1271491..b1fceb760 100644 --- a/src/Elasticsearch/Endpoints/Transform/StopTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/StopTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.stop_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class StopTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php b/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php index b77b7da20..567c548a2 100644 --- a/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.update_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class UpdateTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Update.php b/src/Elasticsearch/Endpoints/Update.php index e0306395e..158f38770 100644 --- a/src/Elasticsearch/Endpoints/Update.php +++ b/src/Elasticsearch/Endpoints/Update.php @@ -24,7 +24,7 @@ * Elasticsearch API name update * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Update extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/UpdateByQuery.php b/src/Elasticsearch/Endpoints/UpdateByQuery.php index 07d97ce31..45ef5c6ef 100644 --- a/src/Elasticsearch/Endpoints/UpdateByQuery.php +++ b/src/Elasticsearch/Endpoints/UpdateByQuery.php @@ -24,7 +24,7 @@ * Elasticsearch API name update_by_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class UpdateByQuery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php b/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php index 3ff697c81..866bbb23e 100644 --- a/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php +++ b/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php @@ -24,7 +24,7 @@ * Elasticsearch API name update_by_query_rethrottle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class UpdateByQueryRethrottle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/AckWatch.php b/src/Elasticsearch/Endpoints/Watcher/AckWatch.php index 894a2a17a..2049db77d 100644 --- a/src/Elasticsearch/Endpoints/Watcher/AckWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/AckWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.ack_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class AckWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php b/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php index 2b031aed9..0c1b4a604 100644 --- a/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.activate_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ActivateWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php b/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php index 20bd3d9fd..f20e57fd9 100644 --- a/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.deactivate_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeactivateWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php b/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php index b6925eb32..2fe9f560d 100644 --- a/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.delete_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DeleteWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php b/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php index 2f5f066bd..87c13a2d4 100644 --- a/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.execute_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ExecuteWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/GetWatch.php b/src/Elasticsearch/Endpoints/Watcher/GetWatch.php index 93fa6a0f3..c21055eff 100644 --- a/src/Elasticsearch/Endpoints/Watcher/GetWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/GetWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.get_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GetWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/PutWatch.php b/src/Elasticsearch/Endpoints/Watcher/PutWatch.php index d0a53387c..f365448f2 100644 --- a/src/Elasticsearch/Endpoints/Watcher/PutWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/PutWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.put_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class PutWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php b/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php index 7182b4c8c..df3b2a8e8 100644 --- a/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php +++ b/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.query_watches * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class QueryWatches extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/Start.php b/src/Elasticsearch/Endpoints/Watcher/Start.php index 166425580..96eaace94 100644 --- a/src/Elasticsearch/Endpoints/Watcher/Start.php +++ b/src/Elasticsearch/Endpoints/Watcher/Start.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.start * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Start extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/Stats.php b/src/Elasticsearch/Endpoints/Watcher/Stats.php index 59096d40e..a45432bf2 100644 --- a/src/Elasticsearch/Endpoints/Watcher/Stats.php +++ b/src/Elasticsearch/Endpoints/Watcher/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/Stop.php b/src/Elasticsearch/Endpoints/Watcher/Stop.php index 7ebbd94bd..a6ee34b16 100644 --- a/src/Elasticsearch/Endpoints/Watcher/Stop.php +++ b/src/Elasticsearch/Endpoints/Watcher/Stop.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.stop * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Stop extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Xpack/Info.php b/src/Elasticsearch/Endpoints/Xpack/Info.php index e81800905..6ebfe5750 100644 --- a/src/Elasticsearch/Endpoints/Xpack/Info.php +++ b/src/Elasticsearch/Endpoints/Xpack/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name xpack.info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Xpack/Usage.php b/src/Elasticsearch/Endpoints/Xpack/Usage.php index c756d0895..4427868eb 100644 --- a/src/Elasticsearch/Endpoints/Xpack/Usage.php +++ b/src/Elasticsearch/Endpoints/Xpack/Usage.php @@ -23,7 +23,7 @@ * Elasticsearch API name xpack.usage * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class Usage extends AbstractEndpoint { diff --git a/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php b/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php index 91a48d301..056cb2639 100644 --- a/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php +++ b/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php @@ -22,7 +22,7 @@ * Class AsyncSearchNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class AsyncSearchNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/AutoscalingNamespace.php b/src/Elasticsearch/Namespaces/AutoscalingNamespace.php index a2b9daeff..9a48a022a 100644 --- a/src/Elasticsearch/Namespaces/AutoscalingNamespace.php +++ b/src/Elasticsearch/Namespaces/AutoscalingNamespace.php @@ -22,7 +22,7 @@ * Class AutoscalingNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class AutoscalingNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/CatNamespace.php b/src/Elasticsearch/Namespaces/CatNamespace.php index acf2a35f2..f47e444d1 100644 --- a/src/Elasticsearch/Namespaces/CatNamespace.php +++ b/src/Elasticsearch/Namespaces/CatNamespace.php @@ -22,7 +22,7 @@ * Class CatNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class CatNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/CcrNamespace.php b/src/Elasticsearch/Namespaces/CcrNamespace.php index 6e1c3e851..4d2cee109 100644 --- a/src/Elasticsearch/Namespaces/CcrNamespace.php +++ b/src/Elasticsearch/Namespaces/CcrNamespace.php @@ -22,7 +22,7 @@ * Class CcrNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class CcrNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/ClusterNamespace.php b/src/Elasticsearch/Namespaces/ClusterNamespace.php index 724bc5a2f..d1dfbd72c 100644 --- a/src/Elasticsearch/Namespaces/ClusterNamespace.php +++ b/src/Elasticsearch/Namespaces/ClusterNamespace.php @@ -22,7 +22,7 @@ * Class ClusterNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ClusterNamespace extends AbstractNamespace { @@ -134,7 +134,7 @@ public function getComponentTemplate(array $params = []) * * @param array $params Associative array of parameters * @return array - * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cluster-update-settings.html + * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cluster-get-settings.html */ public function getSettings(array $params = []) { diff --git a/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php b/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php index caeeecd75..94038d607 100644 --- a/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php +++ b/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php @@ -22,7 +22,7 @@ * Class DanglingIndicesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DanglingIndicesNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php b/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php index ecc2bcc38..6bb1d8cf9 100644 --- a/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php +++ b/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php @@ -22,7 +22,7 @@ * Class DataFrameTransformDeprecatedNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class DataFrameTransformDeprecatedNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/EnrichNamespace.php b/src/Elasticsearch/Namespaces/EnrichNamespace.php index 24c555b92..60e040650 100644 --- a/src/Elasticsearch/Namespaces/EnrichNamespace.php +++ b/src/Elasticsearch/Namespaces/EnrichNamespace.php @@ -22,7 +22,7 @@ * Class EnrichNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class EnrichNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/EqlNamespace.php b/src/Elasticsearch/Namespaces/EqlNamespace.php index 5e03b23a9..62add7256 100644 --- a/src/Elasticsearch/Namespaces/EqlNamespace.php +++ b/src/Elasticsearch/Namespaces/EqlNamespace.php @@ -22,7 +22,7 @@ * Class EqlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class EqlNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/FeaturesNamespace.php b/src/Elasticsearch/Namespaces/FeaturesNamespace.php index edb26a98e..26513d2c6 100644 --- a/src/Elasticsearch/Namespaces/FeaturesNamespace.php +++ b/src/Elasticsearch/Namespaces/FeaturesNamespace.php @@ -22,7 +22,7 @@ * Class FeaturesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class FeaturesNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/FleetNamespace.php b/src/Elasticsearch/Namespaces/FleetNamespace.php new file mode 100644 index 000000000..dea4a7032 --- /dev/null +++ b/src/Elasticsearch/Namespaces/FleetNamespace.php @@ -0,0 +1,54 @@ +extractArgument($params, 'index'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Fleet\GlobalCheckpoints'); + $endpoint->setParams($params); + $endpoint->setIndex($index); + + return $this->performRequest($endpoint); + } +} diff --git a/src/Elasticsearch/Namespaces/GraphNamespace.php b/src/Elasticsearch/Namespaces/GraphNamespace.php index bd25661b2..1efd1d2ab 100644 --- a/src/Elasticsearch/Namespaces/GraphNamespace.php +++ b/src/Elasticsearch/Namespaces/GraphNamespace.php @@ -22,7 +22,7 @@ * Class GraphNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class GraphNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/IlmNamespace.php b/src/Elasticsearch/Namespaces/IlmNamespace.php index 264b76e69..b798d0eb1 100644 --- a/src/Elasticsearch/Namespaces/IlmNamespace.php +++ b/src/Elasticsearch/Namespaces/IlmNamespace.php @@ -22,7 +22,7 @@ * Class IlmNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class IlmNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/IndicesNamespace.php b/src/Elasticsearch/Namespaces/IndicesNamespace.php index 50d60e030..a7700d94d 100644 --- a/src/Elasticsearch/Namespaces/IndicesNamespace.php +++ b/src/Elasticsearch/Namespaces/IndicesNamespace.php @@ -22,7 +22,7 @@ * Class IndicesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class IndicesNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/IngestNamespace.php b/src/Elasticsearch/Namespaces/IngestNamespace.php index edf0d29fb..16dfde4c3 100644 --- a/src/Elasticsearch/Namespaces/IngestNamespace.php +++ b/src/Elasticsearch/Namespaces/IngestNamespace.php @@ -22,7 +22,7 @@ * Class IngestNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class IngestNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/LicenseNamespace.php b/src/Elasticsearch/Namespaces/LicenseNamespace.php index dc9b06aa9..60439f31c 100644 --- a/src/Elasticsearch/Namespaces/LicenseNamespace.php +++ b/src/Elasticsearch/Namespaces/LicenseNamespace.php @@ -22,7 +22,7 @@ * Class LicenseNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class LicenseNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/LogstashNamespace.php b/src/Elasticsearch/Namespaces/LogstashNamespace.php index 951021767..54b54414b 100644 --- a/src/Elasticsearch/Namespaces/LogstashNamespace.php +++ b/src/Elasticsearch/Namespaces/LogstashNamespace.php @@ -22,7 +22,7 @@ * Class LogstashNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class LogstashNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/MigrationNamespace.php b/src/Elasticsearch/Namespaces/MigrationNamespace.php index 05d3c852f..c552285ca 100644 --- a/src/Elasticsearch/Namespaces/MigrationNamespace.php +++ b/src/Elasticsearch/Namespaces/MigrationNamespace.php @@ -22,7 +22,7 @@ * Class MigrationNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class MigrationNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/MlNamespace.php b/src/Elasticsearch/Namespaces/MlNamespace.php index b0e2b8e5c..5e2e45bc6 100644 --- a/src/Elasticsearch/Namespaces/MlNamespace.php +++ b/src/Elasticsearch/Namespaces/MlNamespace.php @@ -22,7 +22,7 @@ * Class MlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class MlNamespace extends AbstractNamespace { @@ -120,9 +120,6 @@ public function deleteCalendarJob(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-dfanalytics.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function deleteDataFrameAnalytics(array $params = []) { @@ -265,9 +262,6 @@ public function deleteModelSnapshot(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-trained-models.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function deleteTrainedModel(array $params = []) { @@ -287,9 +281,6 @@ public function deleteTrainedModel(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-trained-models-aliases.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function deleteTrainedModelAlias(array $params = []) { @@ -340,9 +331,6 @@ public function evaluateDataFrame(array $params = []) * @param array $params Associative array of parameters * @return array * @see http://www.elastic.co/guide/en/elasticsearch/reference/current/explain-dfanalytics.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function explainDataFrameAnalytics(array $params = []) { @@ -555,9 +543,6 @@ public function getCategories(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/get-dfanalytics.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function getDataFrameAnalytics(array $params = []) { @@ -580,9 +565,6 @@ public function getDataFrameAnalytics(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/get-dfanalytics-stats.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function getDataFrameAnalyticsStats(array $params = []) { @@ -828,9 +810,6 @@ public function getRecords(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/get-trained-models.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function getTrainedModels(array $params = []) { @@ -852,9 +831,6 @@ public function getTrainedModels(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/get-trained-models-stats.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function getTrainedModelsStats(array $params = []) { @@ -945,9 +921,6 @@ public function postData(array $params = []) * @param array $params Associative array of parameters * @return array * @see http://www.elastic.co/guide/en/elasticsearch/reference/current/preview-dfanalytics.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function previewDataFrameAnalytics(array $params = []) { @@ -1032,9 +1005,6 @@ public function putCalendarJob(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/put-dfanalytics.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function putDataFrameAnalytics(array $params = []) { @@ -1123,9 +1093,6 @@ public function putJob(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/put-trained-models.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function putTrainedModel(array $params = []) { @@ -1148,9 +1115,6 @@ public function putTrainedModel(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/put-trained-models-aliases.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function putTrainedModelAlias(array $params = []) { @@ -1215,9 +1179,6 @@ public function setUpgradeMode(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/start-dfanalytics.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function startDataFrameAnalytics(array $params = []) { @@ -1266,9 +1227,6 @@ public function startDatafeed(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/stop-dfanalytics.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function stopDataFrameAnalytics(array $params = []) { @@ -1315,9 +1273,6 @@ public function stopDatafeed(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/update-dfanalytics.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function updateDataFrameAnalytics(array $params = []) { diff --git a/src/Elasticsearch/Namespaces/MonitoringNamespace.php b/src/Elasticsearch/Namespaces/MonitoringNamespace.php index 1ded14aed..b1f0e36b1 100644 --- a/src/Elasticsearch/Namespaces/MonitoringNamespace.php +++ b/src/Elasticsearch/Namespaces/MonitoringNamespace.php @@ -22,7 +22,7 @@ * Class MonitoringNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class MonitoringNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/NodesNamespace.php b/src/Elasticsearch/Namespaces/NodesNamespace.php index de3426715..d1f35d219 100644 --- a/src/Elasticsearch/Namespaces/NodesNamespace.php +++ b/src/Elasticsearch/Namespaces/NodesNamespace.php @@ -22,7 +22,7 @@ * Class NodesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class NodesNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/RollupNamespace.php b/src/Elasticsearch/Namespaces/RollupNamespace.php index 9fc6bac7b..fcb73b6a4 100644 --- a/src/Elasticsearch/Namespaces/RollupNamespace.php +++ b/src/Elasticsearch/Namespaces/RollupNamespace.php @@ -22,7 +22,7 @@ * Class RollupNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class RollupNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php b/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php index c447d04cf..f8b3e065f 100644 --- a/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php +++ b/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php @@ -22,11 +22,32 @@ * Class SearchableSnapshotsNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class SearchableSnapshotsNamespace extends AbstractNamespace { + /** + * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/searchable-snapshots-apis.html + * + * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release + * + */ + public function cacheStats(array $params = []) + { + $node_id = $this->extractArgument($params, 'node_id'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('SearchableSnapshots\CacheStats'); + $endpoint->setParams($params); + $endpoint->setNodeId($node_id); + + return $this->performRequest($endpoint); + } /** * $params['index'] = (list) A comma-separated list of index names * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) diff --git a/src/Elasticsearch/Namespaces/SecurityNamespace.php b/src/Elasticsearch/Namespaces/SecurityNamespace.php index a9ae067b2..1fedf0c4a 100644 --- a/src/Elasticsearch/Namespaces/SecurityNamespace.php +++ b/src/Elasticsearch/Namespaces/SecurityNamespace.php @@ -22,7 +22,7 @@ * Class SecurityNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class SecurityNamespace extends AbstractNamespace { @@ -137,6 +137,33 @@ public function clearCachedRoles(array $params = []) return $this->performRequest($endpoint); } + /** + * $params['namespace'] = (string) An identifier for the namespace + * $params['service'] = (string) An identifier for the service name + * $params['name'] = (list) A comma-separated list of service token names + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-clear-service-token-caches.html + * + * @note This API is BETA and may change in ways that are not backwards compatible + * + */ + public function clearCachedServiceTokens(array $params = []) + { + $namespace = $this->extractArgument($params, 'namespace'); + $service = $this->extractArgument($params, 'service'); + $name = $this->extractArgument($params, 'name'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Security\ClearCachedServiceTokens'); + $endpoint->setParams($params); + $endpoint->setNamespace($namespace); + $endpoint->setService($service); + $endpoint->setName($name); + + return $this->performRequest($endpoint); + } /** * $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) * $params['body'] = (array) The api key request to create an API key (Required) @@ -156,6 +183,34 @@ public function createApiKey(array $params = []) return $this->performRequest($endpoint); } + /** + * $params['namespace'] = (string) An identifier for the namespace (Required) + * $params['service'] = (string) An identifier for the service name (Required) + * $params['name'] = (string) An identifier for the token name + * $params['refresh'] = (enum) 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) + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-create-service-token.html + * + * @note This API is BETA and may change in ways that are not backwards compatible + * + */ + public function createServiceToken(array $params = []) + { + $namespace = $this->extractArgument($params, 'namespace'); + $service = $this->extractArgument($params, 'service'); + $name = $this->extractArgument($params, 'name'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Security\CreateServiceToken'); + $endpoint->setParams($params); + $endpoint->setNamespace($namespace); + $endpoint->setService($service); + $endpoint->setName($name); + + return $this->performRequest($endpoint); + } /** * $params['application'] = (string) Application name * $params['name'] = (string) Privilege name @@ -216,6 +271,34 @@ public function deleteRoleMapping(array $params = []) return $this->performRequest($endpoint); } + /** + * $params['namespace'] = (string) An identifier for the namespace + * $params['service'] = (string) An identifier for the service name + * $params['name'] = (string) An identifier for the token name + * $params['refresh'] = (enum) 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) + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-delete-service-token.html + * + * @note This API is BETA and may change in ways that are not backwards compatible + * + */ + public function deleteServiceToken(array $params = []) + { + $namespace = $this->extractArgument($params, 'namespace'); + $service = $this->extractArgument($params, 'service'); + $name = $this->extractArgument($params, 'name'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Security\DeleteServiceToken'); + $endpoint->setParams($params); + $endpoint->setNamespace($namespace); + $endpoint->setService($service); + $endpoint->setName($name); + + return $this->performRequest($endpoint); + } /** * $params['username'] = (string) username * $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) @@ -365,6 +448,54 @@ public function getRoleMapping(array $params = []) return $this->performRequest($endpoint); } + /** + * $params['namespace'] = (string) An identifier for the namespace + * $params['service'] = (string) An identifier for the service name + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-get-service-accounts.html + * + * @note This API is BETA and may change in ways that are not backwards compatible + * + */ + public function getServiceAccounts(array $params = []) + { + $namespace = $this->extractArgument($params, 'namespace'); + $service = $this->extractArgument($params, 'service'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Security\GetServiceAccounts'); + $endpoint->setParams($params); + $endpoint->setNamespace($namespace); + $endpoint->setService($service); + + return $this->performRequest($endpoint); + } + /** + * $params['namespace'] = (string) An identifier for the namespace + * $params['service'] = (string) An identifier for the service name + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-get-service-credentials.html + * + * @note This API is BETA and may change in ways that are not backwards compatible + * + */ + public function getServiceCredentials(array $params = []) + { + $namespace = $this->extractArgument($params, 'namespace'); + $service = $this->extractArgument($params, 'service'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Security\GetServiceCredentials'); + $endpoint->setParams($params); + $endpoint->setNamespace($namespace); + $endpoint->setService($service); + + return $this->performRequest($endpoint); + } /** * $params['body'] = (array) The token request to get (Required) * diff --git a/src/Elasticsearch/Namespaces/ShutdownNamespace.php b/src/Elasticsearch/Namespaces/ShutdownNamespace.php index 1259ab8e2..0e15a0bdb 100644 --- a/src/Elasticsearch/Namespaces/ShutdownNamespace.php +++ b/src/Elasticsearch/Namespaces/ShutdownNamespace.php @@ -22,7 +22,7 @@ * Class ShutdownNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class ShutdownNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SlmNamespace.php b/src/Elasticsearch/Namespaces/SlmNamespace.php index a500b8445..f5c50b733 100644 --- a/src/Elasticsearch/Namespaces/SlmNamespace.php +++ b/src/Elasticsearch/Namespaces/SlmNamespace.php @@ -22,7 +22,7 @@ * Class SlmNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class SlmNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SnapshotNamespace.php b/src/Elasticsearch/Namespaces/SnapshotNamespace.php index 50ca489b2..f62b46c35 100644 --- a/src/Elasticsearch/Namespaces/SnapshotNamespace.php +++ b/src/Elasticsearch/Namespaces/SnapshotNamespace.php @@ -22,7 +22,7 @@ * Class SnapshotNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class SnapshotNamespace extends AbstractNamespace { @@ -172,6 +172,7 @@ public function deleteRepository(array $params = []) * $params['snapshot'] = (list) A comma-separated list of snapshot names * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node * $params['ignore_unavailable'] = (boolean) Whether to ignore unavailable snapshots, defaults to false which means a SnapshotMissingException is thrown + * $params['index_details'] = (boolean) Whether to include details of each index in the snapshot, if those details are available. Defaults to false. * $params['verbose'] = (boolean) Whether to show verbose snapshot info or only show the basic info found in the repository index blob * * @param array $params Associative array of parameters diff --git a/src/Elasticsearch/Namespaces/SqlNamespace.php b/src/Elasticsearch/Namespaces/SqlNamespace.php index 4c817cd93..b1fcd36af 100644 --- a/src/Elasticsearch/Namespaces/SqlNamespace.php +++ b/src/Elasticsearch/Namespaces/SqlNamespace.php @@ -22,7 +22,7 @@ * Class SqlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class SqlNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SslNamespace.php b/src/Elasticsearch/Namespaces/SslNamespace.php index ceae33e0a..73370d79c 100644 --- a/src/Elasticsearch/Namespaces/SslNamespace.php +++ b/src/Elasticsearch/Namespaces/SslNamespace.php @@ -22,7 +22,7 @@ * Class SslNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class SslNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/TasksNamespace.php b/src/Elasticsearch/Namespaces/TasksNamespace.php index d2e26435b..2b41f0d03 100644 --- a/src/Elasticsearch/Namespaces/TasksNamespace.php +++ b/src/Elasticsearch/Namespaces/TasksNamespace.php @@ -22,7 +22,7 @@ * Class TasksNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class TasksNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/TextStructureNamespace.php b/src/Elasticsearch/Namespaces/TextStructureNamespace.php index 508ee1cb8..fabd2567f 100644 --- a/src/Elasticsearch/Namespaces/TextStructureNamespace.php +++ b/src/Elasticsearch/Namespaces/TextStructureNamespace.php @@ -22,7 +22,7 @@ * Class TextStructureNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class TextStructureNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/TransformNamespace.php b/src/Elasticsearch/Namespaces/TransformNamespace.php index e9f5d6709..44f47838b 100644 --- a/src/Elasticsearch/Namespaces/TransformNamespace.php +++ b/src/Elasticsearch/Namespaces/TransformNamespace.php @@ -22,7 +22,7 @@ * Class TransformNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class TransformNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/WatcherNamespace.php b/src/Elasticsearch/Namespaces/WatcherNamespace.php index e7220d5f4..145071374 100644 --- a/src/Elasticsearch/Namespaces/WatcherNamespace.php +++ b/src/Elasticsearch/Namespaces/WatcherNamespace.php @@ -22,7 +22,7 @@ * Class WatcherNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class WatcherNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/XpackNamespace.php b/src/Elasticsearch/Namespaces/XpackNamespace.php index d7b5ff24a..b25803e12 100644 --- a/src/Elasticsearch/Namespaces/XpackNamespace.php +++ b/src/Elasticsearch/Namespaces/XpackNamespace.php @@ -22,7 +22,7 @@ * Class XpackNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d) + * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) */ class XpackNamespace extends AbstractNamespace { From 151f2f5a310a49f5c41c185e29509277e390e95d Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 28 Apr 2021 14:39:51 +0200 Subject: [PATCH 09/81] Fixed CS issue --- src/Elasticsearch/Endpoints/Ml/PostData.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Elasticsearch/Endpoints/Ml/PostData.php b/src/Elasticsearch/Endpoints/Ml/PostData.php index 96491375e..be1926759 100644 --- a/src/Elasticsearch/Endpoints/Ml/PostData.php +++ b/src/Elasticsearch/Endpoints/Ml/PostData.php @@ -89,5 +89,4 @@ public function setJobId($job_id): PostData return $this; } - } From 199ab7d441d7befcc1522bb734cddab4f8595046 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 28 Apr 2021 17:28:20 +0200 Subject: [PATCH 10/81] Added skip test for Indices\GetAlias\_10_BasicTest::GetAliasAgainstClosedIndices --- util/YamlTests.php | 1 + 1 file changed, 1 insertion(+) diff --git a/util/YamlTests.php b/util/YamlTests.php index 7b01431be..1da51231e 100644 --- a/util/YamlTests.php +++ b/util/YamlTests.php @@ -39,6 +39,7 @@ class YamlTests 'Cat\Nodeattrs\_10_BasicTest::TestCatNodesAttrsOutput' => 'Regexp error, it seems not compatible with PHP', 'Cat\Shards\_10_BasicTest::TestCatShardsOutput' => 'Regexp error, it seems not compatible with PHP', 'Indices\Create\_20_Mix_Typeless_TypefulTest::CreateATypedIndexWhileThereIsATypelessTemplate' => 'mismatch on warning header', + 'Indices\GetAlias\_10_BasicTest::GetAliasAgainstClosedIndices' => 'Mismatch values', 'Search\Aggregation\_10_HistogramTest::HistogramProfiler' => "Error reading 'n' field from YAML" ]; From 690870093b6b6d465387e90a9ba0cdffa775be60 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 28 Apr 2021 22:17:39 +0200 Subject: [PATCH 11/81] Add check license header github job --- .github/check-license-headers.sh | 43 ++++++++++++++++++++++++++++++++ .github/license-header.txt | 13 ++++++++++ .github/workflows/license.yml | 15 +++++++++++ 3 files changed, 71 insertions(+) create mode 100755 .github/check-license-headers.sh create mode 100644 .github/license-header.txt create mode 100644 .github/workflows/license.yml diff --git a/.github/check-license-headers.sh b/.github/check-license-headers.sh new file mode 100755 index 000000000..0b6a77fb7 --- /dev/null +++ b/.github/check-license-headers.sh @@ -0,0 +1,43 @@ +#!/usr/bin/env bash + +# Check that source code files in this repo have the appropriate license +# header. + +if [ "$TRACE" != "" ]; then + export PS4='${BASH_SOURCE}:${LINENO}: ${FUNCNAME[0]:+${FUNCNAME[0]}(): }' + set -o xtrace +fi +set -o errexit +set -o pipefail + +TOP=$(cd "$(dirname "$0")/.." >/dev/null && pwd) + +NLINES1=$(($(wc -l .github/license-header.txt | awk '{print $1}')+1)) +NLINES2=$((NLINES1 + 1)) + +function check_license_header { + local f + f=$1 + + if ! diff -w .github/license-header.txt <(head -$NLINES2 "$f" | tail -$NLINES1) >/dev/null; then + echo "check-license-headers: error: '$f' does not have required license header, see 'diff -w .github/license-header.txt <(head -$NLINES2 $f | tail -$NLINES1)'" + return 1 + else + return 0 + fi +} + + +cd "$TOP" +nErrors=0 +for f in $(git ls-files | grep '\.php$'); do + if ! check_license_header $f; then + nErrors=$((nErrors+1)) + fi +done + +if [[ $nErrors -eq 0 ]]; then + exit 0 +else + exit 1 +fi diff --git a/.github/license-header.txt b/.github/license-header.txt new file mode 100644 index 000000000..9af1e76de --- /dev/null +++ b/.github/license-header.txt @@ -0,0 +1,13 @@ +/** + * Elasticsearch PHP client + * + * @link https://github.com/elastic/elasticsearch-php/ + * @copyright Copyright (c) Elasticsearch B.V (https://www.elastic.co) + * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0 + * @license https://www.gnu.org/licenses/lgpl-2.1.html GNU Lesser General Public License, Version 2.1 + * + * Licensed to Elasticsearch B.V under one or more agreements. + * Elasticsearch B.V licenses this file to you under the Apache 2.0 License or + * the GNU Lesser General Public License, Version 2.1, at your option. + * See the LICENSE file in the project root for more information. + */ \ No newline at end of file diff --git a/.github/workflows/license.yml b/.github/workflows/license.yml new file mode 100644 index 000000000..8583ee456 --- /dev/null +++ b/.github/workflows/license.yml @@ -0,0 +1,15 @@ +name: License headers + +on: [pull_request] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Check license headers + run: | + ./.github/check-license-headers.sh From 62711c665e9e92c2af75d559be362c873d41a6bb Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 6 May 2021 14:51:18 +0200 Subject: [PATCH 12/81] Removed git submodule update --- .ci/Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/.ci/Dockerfile b/.ci/Dockerfile index 451830524..271de124d 100644 --- a/.ci/Dockerfile +++ b/.ci/Dockerfile @@ -34,7 +34,4 @@ RUN composer install COPY . . -# Updating elasticsearch submodule -RUN git submodule update --init --recursive - CMD ["bash", ".ci/yaml-tests.sh"] \ No newline at end of file From 7324ccdeebcc0ba8fcbb41a360ca0f3e2187a9b1 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 12 May 2021 15:48:43 +0200 Subject: [PATCH 13/81] Improved the phpdoc of ClientBuilder --- src/Elasticsearch/ClientBuilder.php | 92 ++++++++++++++++++++++++++++- 1 file changed, 89 insertions(+), 3 deletions(-) diff --git a/src/Elasticsearch/ClientBuilder.php b/src/Elasticsearch/ClientBuilder.php index ed7026dcf..844ff30e5 100644 --- a/src/Elasticsearch/ClientBuilder.php +++ b/src/Elasticsearch/ClientBuilder.php @@ -144,6 +144,9 @@ class ClientBuilder */ private $includePortInHostHeader = false; + /** + * Create an instance of ClientBuilder + */ public static function create(): ClientBuilder { return new static(); @@ -185,6 +188,7 @@ public function getRegisteredNamespacesBuilders(): array * Unknown keys will throw an exception by default, but this can be silenced * by setting `quiet` to true * + * @param array $config * @param bool $quiet False if unknown settings throw exception, true to silently * ignore unknown settings * @throws Common\Exceptions\RuntimeException @@ -214,6 +218,10 @@ public static function fromConfig(array $config, bool $quiet = false): Client } /** + * Get the default handler + * + * @param array $multiParams + * @param array $singleParams * @throws \RuntimeException */ public static function defaultHandler(array $multiParams = [], array $singleParams = []): callable @@ -235,6 +243,8 @@ public static function defaultHandler(array $multiParams = [], array $singlePara } /** + * Get the multi handler for async (CurlMultiHandler) + * * @throws \RuntimeException */ public static function multiHandler(array $params = []): CurlMultiHandler @@ -247,6 +257,8 @@ public static function multiHandler(array $params = []): CurlMultiHandler } /** + * Get the handler instance (CurlHandler) + * * @throws \RuntimeException */ public static function singleHandler(): CurlHandler @@ -258,6 +270,11 @@ public static function singleHandler(): CurlHandler } } + /** + * Set connection Factory + * + * @param ConnectionFactoryInterface $connectionFactory + */ public function setConnectionFactory(ConnectionFactoryInterface $connectionFactory): ClientBuilder { $this->connectionFactory = $connectionFactory; @@ -266,7 +283,10 @@ public function setConnectionFactory(ConnectionFactoryInterface $connectionFacto } /** + * Set the connection pool (default is StaticNoPingConnectionPool) + * * @param AbstractConnectionPool|string $connectionPool + * @param array $args * @throws \InvalidArgumentException */ public function setConnectionPool($connectionPool, array $args = []): ClientBuilder @@ -283,6 +303,11 @@ public function setConnectionPool($connectionPool, array $args = []): ClientBuil return $this; } + /** + * Set the endpoint + * + * @param callable $endpoint + */ public function setEndpoint(callable $endpoint): ClientBuilder { $this->endpoint = $endpoint; @@ -290,6 +315,11 @@ public function setEndpoint(callable $endpoint): ClientBuilder return $this; } + /** + * Register namespace + * + * @param NamespaceBuilderInterface $namespaceBuilder + */ public function registerNamespace(NamespaceBuilderInterface $namespaceBuilder): ClientBuilder { $this->registeredNamespacesBuilders[] = $namespaceBuilder; @@ -297,6 +327,11 @@ public function registerNamespace(NamespaceBuilderInterface $namespaceBuilder): return $this; } + /** + * Set the transport + * + * @param Transport $transport + */ public function setTransport(Transport $transport): ClientBuilder { $this->transport = $transport; @@ -305,8 +340,9 @@ public function setTransport(Transport $transport): ClientBuilder } /** + * Set the HTTP handler (cURL is default) + * * @param mixed $handler - * @return $this */ public function setHandler($handler): ClientBuilder { @@ -315,6 +351,11 @@ public function setHandler($handler): ClientBuilder return $this; } + /** + * Set the PSR-3 Logger + * + * @param LoggerInterface $logger + */ public function setLogger(LoggerInterface $logger): ClientBuilder { $this->logger = $logger; @@ -322,6 +363,11 @@ public function setLogger(LoggerInterface $logger): ClientBuilder return $this; } + /** + * Set the PSR-3 tracer + * + * @param LoggerInterface $tracer + */ public function setTracer(LoggerInterface $tracer): ClientBuilder { $this->tracer = $tracer; @@ -330,6 +376,8 @@ public function setTracer(LoggerInterface $tracer): ClientBuilder } /** + * Set the serializer + * * @param \Elasticsearch\Serializers\SerializerInterface|string $serializer */ public function setSerializer($serializer): ClientBuilder @@ -339,6 +387,11 @@ public function setSerializer($serializer): ClientBuilder return $this; } + /** + * Set the hosts (nodes) + * + * @param array $hosts + */ public function setHosts(array $hosts): ClientBuilder { $this->hosts = $hosts; @@ -365,8 +418,9 @@ public function setApiKey(string $id, string $apiKey): ClientBuilder } /** - * Set the APIKey Pair, consiting of the API Id and the ApiKey of the Response from /_security/api_key + * Set Basic access authentication * + * @see https://en.wikipedia.org/wiki/Basic_access_authentication * @param string $username * @param string $password * @@ -416,6 +470,11 @@ public function setElasticCloudId(string $cloudId): ClientBuilder return $this; } + /** + * Set connection parameters + * + * @param array $params + */ public function setConnectionParams(array $params): ClientBuilder { $this->connectionParams = $params; @@ -423,6 +482,14 @@ public function setConnectionParams(array $params): ClientBuilder return $this; } + /** + * Set number or retries (default is equal to number of nodes) + * + * @param int $retries + * @api $params = [ + * 'a' => 'b' + * ] + */ public function setRetries(int $retries): ClientBuilder { $this->retries = $retries; @@ -431,6 +498,8 @@ public function setRetries(int $retries): ClientBuilder } /** + * Set the selector algorithm + * * @param \Elasticsearch\ConnectionPool\Selectors\SelectorInterface|string $selector */ public function setSelector($selector): ClientBuilder @@ -440,6 +509,12 @@ public function setSelector($selector): ClientBuilder return $this; } + /** + * Set sniff on start + * + * @param bool $sniffOnStart enable or disable sniff on start + */ + public function setSniffOnStart(bool $sniffOnStart): ClientBuilder { $this->sniffOnStart = $sniffOnStart; @@ -448,7 +523,10 @@ public function setSniffOnStart(bool $sniffOnStart): ClientBuilder } /** + * Set SSL certificate + * * @param string $cert The name of a file containing a PEM formatted certificate. + * @param string $password if the certificate requires a password */ public function setSSLCert(string $cert, string $password = null): ClientBuilder { @@ -458,7 +536,10 @@ public function setSSLCert(string $cert, string $password = null): ClientBuilder } /** - * @param string $key The name of a file containing a private SSL key. + * Set SSL key + * + * @param string $key The name of a file containing a private SSL key + * @param string $password if the private key requires a password */ public function setSSLKey(string $key, string $password = null): ClientBuilder { @@ -468,6 +549,8 @@ public function setSSLKey(string $key, string $password = null): ClientBuilder } /** + * Set SSL verification + * * @param bool|string $value */ public function setSSLVerification($value = true): ClientBuilder @@ -499,6 +582,9 @@ public function includePortInHostHeader(bool $enable): ClientBuilder return $this; } + /** + * Build and returns the Client object + */ public function build(): Client { $this->buildLoggers(); From 93f050c4bd0e294efb0eb49dc36147fa00ee679f Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 12 May 2021 15:49:25 +0200 Subject: [PATCH 14/81] Fixed empty doc for API references --- util/docstheme/macros.twig | 32 +++++++++++++++++++++++++ util/docstheme/pages/class.twig | 29 +++++----------------- util/template/client-class | 2 ++ util/template/client-namespace-function | 3 +++ 4 files changed, 43 insertions(+), 23 deletions(-) diff --git a/util/docstheme/macros.twig b/util/docstheme/macros.twig index 9ea1834e8..ae5fa6a04 100644 --- a/util/docstheme/macros.twig +++ b/util/docstheme/macros.twig @@ -136,3 +136,35 @@ class {% if member.static %} static{% endif %} {% endspaceless %} {%- endmacro -%} + +{% macro method_parameters_signature(method) -%} + {%- from "macros.twig" import hint_link -%} + ( + {%- for parameter in method.parameters %} + {%- if parameter.hashint %}{{ hint_link(parameter.hint) }} {% endif -%} + {%- if parameter.variadic %}...{% endif %}${{ parameter.name|raw }} + {%- if parameter.default is not null %} = {{ parameter.default }}{% endif %} + {%- if not loop.last %}, {% endif %} + {%- endfor -%} + ) +{%- endmacro %} + +{% macro hint_link(hints) -%} + {%- from _self import class_link %} + + {%- if hints %} + {%- for hint in hints %} + {%- if hint.class %} + {{- class_link(hint.name) }} + {%- elseif hint.name %} + {{- abbr_class(hint.name) }} + {%- endif %} + {%- if hint.array %}[]{% endif %} + {%- if not loop.last %}|{% endif %} + {%- endfor %} + {%- endif %} +{%- endmacro %} + +{% macro class_link(class, absolute) -%} + {{- class }} +{%- endmacro %} \ No newline at end of file diff --git a/util/docstheme/pages/class.twig b/util/docstheme/pages/class.twig index 9011d7f5c..a53bc9ef6 100644 --- a/util/docstheme/pages/class.twig +++ b/util/docstheme/pages/class.twig @@ -36,7 +36,6 @@ The {{ class_type(class) }} defines the following methods: {% if method.name != "__construct" %} -{% if class.shortname != "ClientBuilder" %} [[{{ sanitize(replace_backslash(method)~"_"~method.name) }}]] .`{{ method.name }}()` {% if method.tags('note') %} @@ -44,42 +43,26 @@ The {{ class_type(class) }} defines the following methods: *NOTE:* {{ note|join(' ') }} {% endfor %} {% endif %} -**** -[source,php] ----- -/* -{% if method.shortdesc %} -{{ method.shortdesc|raw }} -{% endif %} -*/ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = {{ get_namespace(class) }}->{{ method.name }}({{ param_list(method)|trim(',') }}); ----- -**** -{% else %} [[{{ sanitize(replace_backslash(method)~"_"~method.name) }}]] -.`{{ method.name }}()` +.`{{ method.name }}{{ block('method_parameters_signature') }}` **** [source,php] ---- /* {% if method.shortdesc %} - {{ method.shortdesc|raw }} +{{ method.shortdesc|raw }} {% endif %} */ - ---- **** {% endif %} -{% endif %} {% endfor %} {% endif %} {% endblock %} +{% block method_parameters_signature -%} + {%- from "macros.twig" import method_parameters_signature -%} + {{ method_parameters_signature(method) }} +{%- endblock %} \ No newline at end of file diff --git a/util/template/client-class b/util/template/client-class index e14ac3670..7552962ee 100644 --- a/util/template/client-class +++ b/util/template/client-class @@ -89,6 +89,8 @@ class Client } /** + * Extract an argument from the array of parameters + * * @return null|mixed */ public function extractArgument(array &$params, string $arg) diff --git a/util/template/client-namespace-function b/util/template/client-namespace-function index a3d1a38ad..2f7ab1c11 100644 --- a/util/template/client-namespace-function +++ b/util/template/client-namespace-function @@ -1,3 +1,6 @@ + /** + * Returns the :name namespace + */ public function :name(): :namespace { return $this->:name; From 694a08a5d662c3c09d854671a43e0bfc4cd22c99 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 12 May 2021 15:50:05 +0200 Subject: [PATCH 15/81] Fixed docs for 7.12 --- docs/build/Elasticsearch/Client.asciidoc | 829 +++++++----------- .../Elasticsearch/ClientBuilder.asciidoc | 148 +++- .../Namespaces/AsyncSearchNamespace.asciidoc | 48 +- .../Namespaces/AutoscalingNamespace.asciidoc | 54 +- .../Namespaces/CatNamespace.asciidoc | 432 ++++----- .../Namespaces/CcrNamespace.asciidoc | 126 +-- .../Namespaces/ClusterNamespace.asciidoc | 149 +--- .../DanglingIndicesNamespace.asciidoc | 36 +- ...FrameTransformDeprecatedNamespace.asciidoc | 90 +- .../Namespaces/EnrichNamespace.asciidoc | 54 +- .../Namespaces/EqlNamespace.asciidoc | 51 +- .../Namespaces/FeaturesNamespace.asciidoc | 38 + .../Namespaces/GraphNamespace.asciidoc | 18 +- .../Namespaces/IlmNamespace.asciidoc | 99 +-- .../Namespaces/IndicesNamespace.asciidoc | 732 ++++++---------- .../Namespaces/IngestNamespace.asciidoc | 55 +- .../Namespaces/LicenseNamespace.asciidoc | 72 +- .../Namespaces/LogstashNamespace.asciidoc | 71 ++ .../Namespaces/MigrationNamespace.asciidoc | 18 +- .../Namespaces/MlNamespace.asciidoc | 630 ++++--------- .../Namespaces/MonitoringNamespace.asciidoc | 18 +- .../Namespaces/NodesNamespace.asciidoc | 55 +- .../Namespaces/RollupNamespace.asciidoc | 95 +- .../SearchableSnapshotsNamespace.asciidoc | 47 +- .../Namespaces/SecurityNamespace.asciidoc | 281 ++---- .../Namespaces/SlmNamespace.asciidoc | 90 +- .../Namespaces/SnapshotNamespace.asciidoc | 116 +-- .../Namespaces/SqlNamespace.asciidoc | 36 +- .../Namespaces/SslNamespace.asciidoc | 18 +- .../Namespaces/TasksNamespace.asciidoc | 49 +- .../TextStructureNamespace.asciidoc | 52 ++ .../Namespaces/TransformNamespace.asciidoc | 90 +- .../Namespaces/WatcherNamespace.asciidoc | 111 +-- .../Namespaces/XpackNamespace.asciidoc | 27 +- docs/build/classes.asciidoc | 9 +- docs/build/renderer.index | 2 +- 36 files changed, 1820 insertions(+), 3026 deletions(-) create mode 100644 docs/build/Elasticsearch/Namespaces/FeaturesNamespace.asciidoc create mode 100644 docs/build/Elasticsearch/Namespaces/LogstashNamespace.asciidoc create mode 100644 docs/build/Elasticsearch/Namespaces/TextStructureNamespace.asciidoc diff --git a/docs/build/Elasticsearch/Client.asciidoc b/docs/build/Elasticsearch/Client.asciidoc index 30143ca58..7034f962c 100644 --- a/docs/build/Elasticsearch/Client.asciidoc +++ b/docs/build/Elasticsearch/Client.asciidoc @@ -1,11 +1,17 @@ -[discrete] + + [[Elasticsearch_Client]] === Elasticsearch\Client Class Client -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -14,6 +20,7 @@ The class defines the following methods: * <> * <> +* <> * <> * <> * <> @@ -35,6 +42,7 @@ The class defines the following methods: * <> * <> * <> +* <> * <> * <> * <> @@ -50,32 +58,35 @@ The class defines the following methods: * <> * <> * <> -* <> -* <> -* <> -* <> -* <> -* <> -* <> -* <> * <> * <> +* <> * <> +* <> +* <> * <> * <> * <> +* <> * <> * <> +* <> +* <> * <> +* <> * <> * <> * <> +* <> * <> * <> * <> * <> +* <> * <> * <> +* <> +* <> * <> * <> * <> @@ -87,6 +98,8 @@ The class defines the following methods: [[Elasticsearch_Clientbulk_bulk]] .`bulk()` +[[Elasticsearch_Clientbulk_bulk]] +.`bulk(array $params = [])` **** [source,php] ---- @@ -101,15 +114,9 @@ $params['_source'] = (list) True or false to return the _source f $params['_source_excludes'] = (list) Default list of fields to exclude from the returned _source field, can be overridden on each sub-request $params['_source_includes'] = (list) Default list of fields to extract and return from the _source field, can be overridden on each sub-request $params['pipeline'] = (string) The pipeline id to preprocess incoming documents with +$params['require_alias'] = (boolean) Sets require_alias for all incoming documents. Defaults to unset (false) $params['body'] = (array) The operation definition and data (action-data pairs), separated by newlines (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->bulk($params); ---- **** @@ -117,6 +124,8 @@ $response = $client->bulk($params); [[Elasticsearch_ClientclearScroll_clearScroll]] .`clearScroll()` +[[Elasticsearch_ClientclearScroll_clearScroll]] +.`clearScroll(array $params = [])` **** [source,php] ---- @@ -124,13 +133,21 @@ $response = $client->bulk($params); $params['scroll_id'] = DEPRECATED (list) A comma-separated list of scroll IDs to clear $params['body'] = (array) A comma-separated list of scroll IDs to clear if none was specified via the scroll_id parameter */ +---- +**** -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->clearScroll($params); + +[[Elasticsearch_ClientclosePointInTime_closePointInTime]] +.`closePointInTime()` +[[Elasticsearch_ClientclosePointInTime_closePointInTime]] +.`closePointInTime(array $params = [])` +**** +[source,php] +---- +/* +$params['body'] = (array) a point-in-time id to close +*/ ---- **** @@ -138,6 +155,8 @@ $response = $client->clearScroll($params); [[Elasticsearch_Clientcount_count]] .`count()` +[[Elasticsearch_Clientcount_count]] +.`count(array $params = [])` **** [source,php] ---- @@ -160,13 +179,6 @@ $params['lenient'] = (boolean) Specify whether format-based query fai $params['terminate_after'] = (number) The maximum count for each shard, upon reaching which the query execution will terminate early $params['body'] = (array) A query to restrict the results specified with the Query DSL (optional) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->count($params); ---- **** @@ -174,6 +186,8 @@ $response = $client->count($params); [[Elasticsearch_Clientcreate_create]] .`create()` +[[Elasticsearch_Clientcreate_create]] +.`create(array $params = [])` **** [source,php] ---- @@ -190,13 +204,6 @@ $params['version_type'] = (enum) Specific version type (Options = inte $params['pipeline'] = (string) The pipeline id to preprocess incoming documents with $params['body'] = (array) The document (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->create($params); ---- **** @@ -204,6 +211,8 @@ $response = $client->create($params); [[Elasticsearch_Clientdelete_delete]] .`delete()` +[[Elasticsearch_Clientdelete_delete]] +.`delete(array $params = [])` **** [source,php] ---- @@ -220,13 +229,6 @@ $params['if_primary_term'] = (number) only perform the delete operation i $params['version'] = (number) Explicit version number for concurrency control $params['version_type'] = (enum) Specific version type (Options = internal,external,external_gte,force) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->delete($params); ---- **** @@ -234,6 +236,8 @@ $response = $client->delete($params); [[Elasticsearch_ClientdeleteByQuery_deleteByQuery]] .`deleteByQuery()` +[[Elasticsearch_ClientdeleteByQuery_deleteByQuery]] +.`deleteByQuery(array $params = [])` **** [source,php] ---- @@ -257,13 +261,6 @@ $params['scroll'] = (time) Specify how long a consistent view of $params['search_type'] = (enum) Search operation type (Options = query_then_fetch,dfs_query_then_fetch) $params['search_timeout'] = (time) Explicit timeout for each search request. Defaults to no timeout. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->deleteByQuery($params); ---- **** @@ -271,6 +268,8 @@ $response = $client->deleteByQuery($params); [[Elasticsearch_ClientdeleteByQueryRethrottle_deleteByQueryRethrottle]] .`deleteByQueryRethrottle()` +[[Elasticsearch_ClientdeleteByQueryRethrottle_deleteByQueryRethrottle]] +.`deleteByQueryRethrottle(array $params = [])` **** [source,php] ---- @@ -278,13 +277,6 @@ $response = $client->deleteByQuery($params); $params['task_id'] = (string) The task id to rethrottle $params['requests_per_second'] = (number) The throttle to set on this request in floating sub-requests per second. -1 means set no throttle. (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->deleteByQueryRethrottle($params); ---- **** @@ -292,6 +284,8 @@ $response = $client->deleteByQueryRethrottle($params); [[Elasticsearch_ClientdeleteScript_deleteScript]] .`deleteScript()` +[[Elasticsearch_ClientdeleteScript_deleteScript]] +.`deleteScript(array $params = [])` **** [source,php] ---- @@ -300,13 +294,6 @@ $params['id'] = (string) Script ID $params['timeout'] = (time) Explicit operation timeout $params['master_timeout'] = (time) Specify timeout for connection to master */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->deleteScript($params); ---- **** @@ -314,6 +301,8 @@ $response = $client->deleteScript($params); [[Elasticsearch_Clientexists_exists]] .`exists()` +[[Elasticsearch_Clientexists_exists]] +.`exists(array $params = [])` **** [source,php] ---- @@ -332,13 +321,6 @@ $params['_source_includes'] = (list) A list of fields to extract and return from $params['version'] = (number) Explicit version number for concurrency control $params['version_type'] = (enum) Specific version type (Options = internal,external,external_gte,force) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->exists($params); ---- **** @@ -346,6 +328,8 @@ $response = $client->exists($params); [[Elasticsearch_ClientexistsSource_existsSource]] .`existsSource()` +[[Elasticsearch_ClientexistsSource_existsSource]] +.`existsSource(array $params = [])` **** [source,php] ---- @@ -363,13 +347,6 @@ $params['_source_includes'] = (list) A list of fields to extract and return from $params['version'] = (number) Explicit version number for concurrency control $params['version_type'] = (enum) Specific version type (Options = internal,external,external_gte,force) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->existsSource($params); ---- **** @@ -377,6 +354,8 @@ $response = $client->existsSource($params); [[Elasticsearch_Clientexplain_explain]] .`explain()` +[[Elasticsearch_Clientexplain_explain]] +.`explain(array $params = [])` **** [source,php] ---- @@ -398,13 +377,6 @@ $params['_source_excludes'] = (list) A list of fields to exclude from the return $params['_source_includes'] = (list) A list of fields to extract and return from the _source field $params['body'] = (array) The query definition using the Query DSL */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->explain($params); ---- **** @@ -412,6 +384,8 @@ $response = $client->explain($params); [[Elasticsearch_ClientfieldCaps_fieldCaps]] .`fieldCaps()` +[[Elasticsearch_ClientfieldCaps_fieldCaps]] +.`fieldCaps(array $params = [])` **** [source,php] ---- @@ -424,13 +398,6 @@ $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to $params['include_unmapped'] = (boolean) Indicates whether unmapped fields should be included in the response. (Default = false) $params['body'] = (array) An index filter specified with the Query DSL */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->fieldCaps($params); ---- **** @@ -438,6 +405,8 @@ $response = $client->fieldCaps($params); [[Elasticsearch_Clientget_get]] .`get()` +[[Elasticsearch_Clientget_get]] +.`get(array $params = [])` **** [source,php] ---- @@ -456,13 +425,6 @@ $params['_source_includes'] = (list) A list of fields to extract and return from $params['version'] = (number) Explicit version number for concurrency control $params['version_type'] = (enum) Specific version type (Options = internal,external,external_gte,force) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->get($params); ---- **** @@ -470,6 +432,8 @@ $response = $client->get($params); [[Elasticsearch_ClientgetScript_getScript]] .`getScript()` +[[Elasticsearch_ClientgetScript_getScript]] +.`getScript(array $params = [])` **** [source,php] ---- @@ -477,13 +441,6 @@ $response = $client->get($params); $params['id'] = (string) Script ID $params['master_timeout'] = (time) Specify timeout for connection to master */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->getScript($params); ---- **** @@ -492,18 +449,13 @@ $response = $client->getScript($params); [[Elasticsearch_ClientgetScriptContext_getScriptContext]] .`getScriptContext()` *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_ClientgetScriptContext_getScriptContext]] +.`getScriptContext(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->getScriptContext($params); ---- **** @@ -512,18 +464,13 @@ $response = $client->getScriptContext($params); [[Elasticsearch_ClientgetScriptLanguages_getScriptLanguages]] .`getScriptLanguages()` *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_ClientgetScriptLanguages_getScriptLanguages]] +.`getScriptLanguages(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->getScriptLanguages($params); ---- **** @@ -531,6 +478,8 @@ $response = $client->getScriptLanguages($params); [[Elasticsearch_ClientgetSource_getSource]] .`getSource()` +[[Elasticsearch_ClientgetSource_getSource]] +.`getSource(array $params = [])` **** [source,php] ---- @@ -548,13 +497,6 @@ $params['_source_includes'] = (list) A list of fields to extract and return from $params['version'] = (number) Explicit version number for concurrency control $params['version_type'] = (enum) Specific version type (Options = internal,external,external_gte,force) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->getSource($params); ---- **** @@ -562,6 +504,8 @@ $response = $client->getSource($params); [[Elasticsearch_Clientindex_index]] .`index()` +[[Elasticsearch_Clientindex_index]] +.`index(array $params = [])` **** [source,php] ---- @@ -579,15 +523,9 @@ $params['version_type'] = (enum) Specific version type (Options = inte $params['if_seq_no'] = (number) only perform the index operation if the last operation that has changed the document has the specified sequence number $params['if_primary_term'] = (number) only perform the index operation if the last operation that has changed the document has the specified primary term $params['pipeline'] = (string) The pipeline id to preprocess incoming documents with +$params['require_alias'] = (boolean) When true, requires destination to be an alias. Default is false $params['body'] = (array) The document (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->index($params); ---- **** @@ -595,18 +533,13 @@ $response = $client->index($params); [[Elasticsearch_Clientinfo_info]] .`info()` +[[Elasticsearch_Clientinfo_info]] +.`info(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->info($params); ---- **** @@ -614,6 +547,8 @@ $response = $client->info($params); [[Elasticsearch_Clientmget_mget]] .`mget()` +[[Elasticsearch_Clientmget_mget]] +.`mget(array $params = [])` **** [source,php] ---- @@ -630,13 +565,6 @@ $params['_source_excludes'] = (list) A list of fields to exclude from the return $params['_source_includes'] = (list) A list of fields to extract and return from the _source field $params['body'] = (array) Document identifiers; can be either `docs` (containing full document information) or `ids` (when index and type is provided in the URL. (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->mget($params); ---- **** @@ -644,6 +572,8 @@ $response = $client->mget($params); [[Elasticsearch_Clientmsearch_msearch]] .`msearch()` +[[Elasticsearch_Clientmsearch_msearch]] +.`msearch(array $params = [])` **** [source,php] ---- @@ -655,13 +585,6 @@ $params['max_concurrent_searches'] = (number) Controls the maximum number $params['typed_keys'] = (boolean) Specify whether aggregation and suggester names should be prefixed by their respective types in the response $params['pre_filter_shard_size'] = (number) A threshold that enforces a pre-filter roundtrip to prefilter search shards based on query rewriting if the number of shards the search request expands to exceeds the threshold. This filter roundtrip can limit the number of shards significantly if for instance a shard can not match any documents based on its rewrite method ie. if date filters are mandatory to match but the shard bounds and the query are disjoint. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->msearch($params); ---- **** @@ -669,6 +592,8 @@ $response = $client->msearch($params); [[Elasticsearch_ClientmsearchTemplate_msearchTemplate]] .`msearchTemplate()` +[[Elasticsearch_ClientmsearchTemplate_msearchTemplate]] +.`msearchTemplate(array $params = [])` **** [source,php] ---- @@ -682,13 +607,6 @@ $params['rest_total_hits_as_int'] = (boolean) Indicates whether hits.total shou $params['ccs_minimize_roundtrips'] = (boolean) Indicates whether network round-trips should be minimized as part of cross-cluster search requests execution (Default = true) $params['body'] = (array) The request definitions (metadata-search request definition pairs), separated by newlines (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->msearchTemplate($params); ---- **** @@ -696,19 +614,34 @@ $response = $client->msearchTemplate($params); [[Elasticsearch_Clientmtermvectors_mtermvectors]] .`mtermvectors()` +[[Elasticsearch_Clientmtermvectors_mtermvectors]] +.`mtermvectors(array $params = [])` **** [source,php] ---- /* $params['index'] = (string) The index in which the document resides. */ +---- +**** + -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->mtermvectors($params); +[[Elasticsearch_ClientopenPointInTime_openPointInTime]] +.`openPointInTime()` +[[Elasticsearch_ClientopenPointInTime_openPointInTime]] +.`openPointInTime(array $params = [])` +**** +[source,php] +---- +/* +$params['index'] = (list) A comma-separated list of index names to open point in time; use `_all` or empty string to perform the operation on all indices +$params['preference'] = (string) Specify the node or shard the operation should be performed on (default: random) +$params['routing'] = (string) Specific routing value +$params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) +$params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open) +$params['keep_alive'] = (string) Specific the time to live for the point in time +*/ ---- **** @@ -716,18 +649,13 @@ $response = $client->mtermvectors($params); [[Elasticsearch_Clientping_ping]] .`ping()` +[[Elasticsearch_Clientping_ping]] +.`ping(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ping($params); ---- **** @@ -735,6 +663,8 @@ $response = $client->ping($params); [[Elasticsearch_ClientputScript_putScript]] .`putScript()` +[[Elasticsearch_ClientputScript_putScript]] +.`putScript(array $params = [])` **** [source,php] ---- @@ -745,13 +675,6 @@ $params['timeout'] = (time) Explicit operation timeout $params['master_timeout'] = (time) Specify timeout for connection to master $params['body'] = (array) The document (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->putScript($params); ---- **** @@ -760,6 +683,8 @@ $response = $client->putScript($params); [[Elasticsearch_ClientrankEval_rankEval]] .`rankEval()` *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_ClientrankEval_rankEval]] +.`rankEval(array $params = [])` **** [source,php] ---- @@ -771,13 +696,6 @@ $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to $params['search_type'] = (enum) Search operation type (Options = query_then_fetch,dfs_query_then_fetch) $params['body'] = (array) The ranking evaluation search definition, including search requests, document ratings and ranking metric definition. (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->rankEval($params); ---- **** @@ -785,6 +703,8 @@ $response = $client->rankEval($params); [[Elasticsearch_Clientreindex_reindex]] .`reindex()` +[[Elasticsearch_Clientreindex_reindex]] +.`reindex(array $params = [])` **** [source,php] ---- @@ -799,13 +719,6 @@ $params['slices'] = (number|string) The number of slices this ta $params['max_docs'] = (number) Maximum number of documents to process (default: all documents) $params['body'] = (array) The search definition using the Query DSL and the prototype for the index request. (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->reindex($params); ---- **** @@ -813,6 +726,8 @@ $response = $client->reindex($params); [[Elasticsearch_ClientreindexRethrottle_reindexRethrottle]] .`reindexRethrottle()` +[[Elasticsearch_ClientreindexRethrottle_reindexRethrottle]] +.`reindexRethrottle(array $params = [])` **** [source,php] ---- @@ -820,13 +735,6 @@ $response = $client->reindex($params); $params['task_id'] = (string) The task id to rethrottle $params['requests_per_second'] = (number) The throttle to set on this request in floating sub-requests per second. -1 means set no throttle. (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->reindexRethrottle($params); ---- **** @@ -834,6 +742,8 @@ $response = $client->reindexRethrottle($params); [[Elasticsearch_ClientrenderSearchTemplate_renderSearchTemplate]] .`renderSearchTemplate()` +[[Elasticsearch_ClientrenderSearchTemplate_renderSearchTemplate]] +.`renderSearchTemplate(array $params = [])` **** [source,php] ---- @@ -841,13 +751,6 @@ $response = $client->reindexRethrottle($params); $params['id'] = (string) The id of the stored search template $params['body'] = (array) The search definition template and its params */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->renderSearchTemplate($params); ---- **** @@ -856,19 +759,14 @@ $response = $client->renderSearchTemplate($params); [[Elasticsearch_ClientscriptsPainlessExecute_scriptsPainlessExecute]] .`scriptsPainlessExecute()` *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_ClientscriptsPainlessExecute_scriptsPainlessExecute]] +.`scriptsPainlessExecute(array $params = [])` **** [source,php] ---- /* $params['body'] = (array) The script to execute */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->scriptsPainlessExecute($params); ---- **** @@ -876,6 +774,8 @@ $response = $client->scriptsPainlessExecute($params); [[Elasticsearch_Clientscroll_scroll]] .`scroll()` +[[Elasticsearch_Clientscroll_scroll]] +.`scroll(array $params = [])` **** [source,php] ---- @@ -885,13 +785,6 @@ $params['scroll'] = (time) Specify how long a consistent view of $params['rest_total_hits_as_int'] = (boolean) Indicates whether hits.total should be rendered as an integer or an object in the rest search response (Default = false) $params['body'] = (array) The scroll ID if not passed by URL or query parameter. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->scroll($params); ---- **** @@ -899,6 +792,8 @@ $response = $client->scroll($params); [[Elasticsearch_Clientsearch_search]] .`search()` +[[Elasticsearch_Clientsearch_search]] +.`search(array $params = [])` **** [source,php] ---- @@ -931,13 +826,6 @@ $params['_source_excludes'] = (list) A list of fields to exclude fr $params['_source_includes'] = (list) A list of fields to extract and return from the _source field $params['terminate_after'] = (number) The maximum number of documents to collect for each shard, upon reaching which the query execution will terminate early. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->search($params); ---- **** @@ -945,6 +833,8 @@ $response = $client->search($params); [[Elasticsearch_ClientsearchShards_searchShards]] .`searchShards()` +[[Elasticsearch_ClientsearchShards_searchShards]] +.`searchShards(array $params = [])` **** [source,php] ---- @@ -957,13 +847,6 @@ $params['ignore_unavailable'] = (boolean) Whether specified concrete indices sho $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->searchShards($params); ---- **** @@ -971,6 +854,8 @@ $response = $client->searchShards($params); [[Elasticsearch_ClientsearchTemplate_searchTemplate]] .`searchTemplate()` +[[Elasticsearch_ClientsearchTemplate_searchTemplate]] +.`searchTemplate(array $params = [])` **** [source,php] ---- @@ -992,13 +877,6 @@ $params['rest_total_hits_as_int'] = (boolean) Indicates whether hits.total shou $params['ccs_minimize_roundtrips'] = (boolean) Indicates whether network round-trips should be minimized as part of cross-cluster search requests execution (Default = true) $params['body'] = (array) The search definition template and its params (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->searchTemplate($params); ---- **** @@ -1006,6 +884,8 @@ $response = $client->searchTemplate($params); [[Elasticsearch_Clienttermvectors_termvectors]] .`termvectors()` +[[Elasticsearch_Clienttermvectors_termvectors]] +.`termvectors(array $params = [])` **** [source,php] ---- @@ -1013,13 +893,6 @@ $response = $client->searchTemplate($params); $params['index'] = (string) The index in which the document resides. (Required) $params['id'] = (string) The id of the document, when not specified a doc param should be supplied. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->termvectors($params); ---- **** @@ -1027,6 +900,8 @@ $response = $client->termvectors($params); [[Elasticsearch_Clientupdate_update]] .`update()` +[[Elasticsearch_Clientupdate_update]] +.`update(array $params = [])` **** [source,php] ---- @@ -1045,15 +920,9 @@ $params['routing'] = (string) Specific routing value $params['timeout'] = (time) Explicit operation timeout $params['if_seq_no'] = (number) only perform the update operation if the last operation that has changed the document has the specified sequence number $params['if_primary_term'] = (number) only perform the update operation if the last operation that has changed the document has the specified primary term +$params['require_alias'] = (boolean) When true, requires destination is an alias. Default is false $params['body'] = (array) The request definition requires either `script` or partial `doc` (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->update($params); ---- **** @@ -1061,6 +930,8 @@ $response = $client->update($params); [[Elasticsearch_ClientupdateByQuery_updateByQuery]] .`updateByQuery()` +[[Elasticsearch_ClientupdateByQuery_updateByQuery]] +.`updateByQuery(array $params = [])` **** [source,php] ---- @@ -1085,13 +956,6 @@ $params['scroll'] = (time) Specify how long a consistent view of $params['search_type'] = (enum) Search operation type (Options = query_then_fetch,dfs_query_then_fetch) $params['search_timeout'] = (time) Explicit timeout for each search request. Defaults to no timeout. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->updateByQuery($params); ---- **** @@ -1099,6 +963,8 @@ $response = $client->updateByQuery($params); [[Elasticsearch_ClientupdateByQueryRethrottle_updateByQueryRethrottle]] .`updateByQueryRethrottle()` +[[Elasticsearch_ClientupdateByQueryRethrottle_updateByQueryRethrottle]] +.`updateByQueryRethrottle(array $params = [])` **** [source,php] ---- @@ -1106,564 +972,486 @@ $response = $client->updateByQuery($params); $params['task_id'] = (string) The task id to rethrottle $params['requests_per_second'] = (number) The throttle to set on this request in floating sub-requests per second. -1 means set no throttle. (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->updateByQueryRethrottle($params); ---- **** -[[Elasticsearch_Clientcat_cat]] -.`cat()` +[[Elasticsearch_ClientasyncSearch_asyncSearch]] +.`asyncSearch()` +[[Elasticsearch_ClientasyncSearch_asyncSearch]] +.`asyncSearch()` **** [source,php] ---- /* +Returns the asyncSearch namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat(); ---- **** -[[Elasticsearch_Clientcluster_cluster]] -.`cluster()` +[[Elasticsearch_Clientautoscaling_autoscaling]] +.`autoscaling()` +[[Elasticsearch_Clientautoscaling_autoscaling]] +.`autoscaling()` **** [source,php] ---- /* +Returns the autoscaling namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cluster(); ---- **** -[[Elasticsearch_ClientdanglingIndices_danglingIndices]] -.`danglingIndices()` +[[Elasticsearch_Clientcat_cat]] +.`cat()` +[[Elasticsearch_Clientcat_cat]] +.`cat()` **** [source,php] ---- /* +Returns the cat namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->danglingIndices(); ---- **** -[[Elasticsearch_Clientindices_indices]] -.`indices()` +[[Elasticsearch_Clientccr_ccr]] +.`ccr()` +[[Elasticsearch_Clientccr_ccr]] +.`ccr()` **** [source,php] ---- /* +Returns the ccr namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices(); ---- **** -[[Elasticsearch_Clientingest_ingest]] -.`ingest()` +[[Elasticsearch_Clientcluster_cluster]] +.`cluster()` +[[Elasticsearch_Clientcluster_cluster]] +.`cluster()` **** [source,php] ---- /* +Returns the cluster namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ingest(); ---- **** -[[Elasticsearch_Clientnodes_nodes]] -.`nodes()` +[[Elasticsearch_ClientdanglingIndices_danglingIndices]] +.`danglingIndices()` +[[Elasticsearch_ClientdanglingIndices_danglingIndices]] +.`danglingIndices()` **** [source,php] ---- /* +Returns the danglingIndices namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->nodes(); ---- **** -[[Elasticsearch_Clientsnapshot_snapshot]] -.`snapshot()` +[[Elasticsearch_ClientdataFrameTransformDeprecated_dataFrameTransformDeprecated]] +.`dataFrameTransformDeprecated()` +[[Elasticsearch_ClientdataFrameTransformDeprecated_dataFrameTransformDeprecated]] +.`dataFrameTransformDeprecated()` **** [source,php] ---- /* +Returns the dataFrameTransformDeprecated namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->snapshot(); ---- **** -[[Elasticsearch_Clienttasks_tasks]] -.`tasks()` +[[Elasticsearch_Clientenrich_enrich]] +.`enrich()` +[[Elasticsearch_Clientenrich_enrich]] +.`enrich()` **** [source,php] ---- /* +Returns the enrich namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->tasks(); ---- **** -[[Elasticsearch_ClientasyncSearch_asyncSearch]] -.`asyncSearch()` +[[Elasticsearch_Clienteql_eql]] +.`eql()` +[[Elasticsearch_Clienteql_eql]] +.`eql()` **** [source,php] ---- /* +Returns the eql namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->asyncSearch(); ---- **** -[[Elasticsearch_Clientautoscaling_autoscaling]] -.`autoscaling()` +[[Elasticsearch_Clientfeatures_features]] +.`features()` +[[Elasticsearch_Clientfeatures_features]] +.`features()` **** [source,php] ---- /* +Returns the features namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->autoscaling(); ---- **** -[[Elasticsearch_Clientccr_ccr]] -.`ccr()` +[[Elasticsearch_Clientgraph_graph]] +.`graph()` +[[Elasticsearch_Clientgraph_graph]] +.`graph()` **** [source,php] ---- /* +Returns the graph namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ccr(); ---- **** -[[Elasticsearch_ClientdataFrameTransformDeprecated_dataFrameTransformDeprecated]] -.`dataFrameTransformDeprecated()` +[[Elasticsearch_Clientilm_ilm]] +.`ilm()` +[[Elasticsearch_Clientilm_ilm]] +.`ilm()` **** [source,php] ---- /* +Returns the ilm namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->dataFrameTransformDeprecated(); ---- **** -[[Elasticsearch_Clientenrich_enrich]] -.`enrich()` +[[Elasticsearch_Clientindices_indices]] +.`indices()` +[[Elasticsearch_Clientindices_indices]] +.`indices()` **** [source,php] ---- /* +Returns the indices namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->enrich(); ---- **** -[[Elasticsearch_Clienteql_eql]] -.`eql()` +[[Elasticsearch_Clientingest_ingest]] +.`ingest()` +[[Elasticsearch_Clientingest_ingest]] +.`ingest()` **** [source,php] ---- /* +Returns the ingest namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->eql(); ---- **** -[[Elasticsearch_Clientgraph_graph]] -.`graph()` +[[Elasticsearch_Clientlicense_license]] +.`license()` +[[Elasticsearch_Clientlicense_license]] +.`license()` **** [source,php] ---- /* +Returns the license namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->graph(); ---- **** -[[Elasticsearch_Clientilm_ilm]] -.`ilm()` +[[Elasticsearch_Clientlogstash_logstash]] +.`logstash()` +[[Elasticsearch_Clientlogstash_logstash]] +.`logstash()` **** [source,php] ---- /* +Returns the logstash namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ilm(); ---- **** -[[Elasticsearch_Clientlicense_license]] -.`license()` +[[Elasticsearch_Clientmigration_migration]] +.`migration()` +[[Elasticsearch_Clientmigration_migration]] +.`migration()` **** [source,php] ---- /* +Returns the migration namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->license(); ---- **** -[[Elasticsearch_Clientmigration_migration]] -.`migration()` +[[Elasticsearch_Clientml_ml]] +.`ml()` +[[Elasticsearch_Clientml_ml]] +.`ml()` **** [source,php] ---- /* +Returns the ml namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->migration(); ---- **** -[[Elasticsearch_Clientml_ml]] -.`ml()` +[[Elasticsearch_Clientmonitoring_monitoring]] +.`monitoring()` +[[Elasticsearch_Clientmonitoring_monitoring]] +.`monitoring()` **** [source,php] ---- /* +Returns the monitoring namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml(); ---- **** -[[Elasticsearch_Clientmonitoring_monitoring]] -.`monitoring()` +[[Elasticsearch_Clientnodes_nodes]] +.`nodes()` +[[Elasticsearch_Clientnodes_nodes]] +.`nodes()` **** [source,php] ---- /* +Returns the nodes namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->monitoring(); ---- **** +[[Elasticsearch_Clientrollup_rollup]] +.`rollup()` [[Elasticsearch_Clientrollup_rollup]] .`rollup()` **** [source,php] ---- /* +Returns the rollup namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->rollup(); ---- **** +[[Elasticsearch_ClientsearchableSnapshots_searchableSnapshots]] +.`searchableSnapshots()` [[Elasticsearch_ClientsearchableSnapshots_searchableSnapshots]] .`searchableSnapshots()` **** [source,php] ---- /* +Returns the searchableSnapshots namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->searchableSnapshots(); ---- **** +[[Elasticsearch_Clientsecurity_security]] +.`security()` [[Elasticsearch_Clientsecurity_security]] .`security()` **** [source,php] ---- /* +Returns the security namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security(); ---- **** +[[Elasticsearch_Clientslm_slm]] +.`slm()` [[Elasticsearch_Clientslm_slm]] .`slm()` **** [source,php] ---- /* +Returns the slm namespace */ +---- +**** + -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->slm(); +[[Elasticsearch_Clientsnapshot_snapshot]] +.`snapshot()` +[[Elasticsearch_Clientsnapshot_snapshot]] +.`snapshot()` +**** +[source,php] +---- +/* +Returns the snapshot namespace +*/ ---- **** +[[Elasticsearch_Clientsql_sql]] +.`sql()` [[Elasticsearch_Clientsql_sql]] .`sql()` **** [source,php] ---- /* +Returns the sql namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->sql(); ---- **** +[[Elasticsearch_Clientssl_ssl]] +.`ssl()` [[Elasticsearch_Clientssl_ssl]] .`ssl()` **** [source,php] ---- /* +Returns the ssl namespace */ +---- +**** + -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->ssl(); +[[Elasticsearch_Clienttasks_tasks]] +.`tasks()` +[[Elasticsearch_Clienttasks_tasks]] +.`tasks()` +**** +[source,php] +---- +/* +Returns the tasks namespace +*/ ---- **** -[[Elasticsearch_Clienttransform_transform]] -.`transform()` +[[Elasticsearch_ClienttextStructure_textStructure]] +.`textStructure()` +[[Elasticsearch_ClienttextStructure_textStructure]] +.`textStructure()` **** [source,php] ---- /* +Returns the textStructure namespace */ +---- +**** + -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->transform(); +[[Elasticsearch_Clienttransform_transform]] +.`transform()` +[[Elasticsearch_Clienttransform_transform]] +.`transform()` +**** +[source,php] +---- +/* +Returns the transform namespace +*/ ---- **** +[[Elasticsearch_Clientwatcher_watcher]] +.`watcher()` [[Elasticsearch_Clientwatcher_watcher]] .`watcher()` **** [source,php] ---- /* +Returns the watcher namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->watcher(); ---- **** +[[Elasticsearch_Clientxpack_xpack]] +.`xpack()` [[Elasticsearch_Clientxpack_xpack]] .`xpack()` **** [source,php] ---- /* +Returns the xpack namespace */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->xpack(); ---- **** @@ -1671,19 +1459,14 @@ $response = $client->xpack(); [[Elasticsearch_Client-call-_call]] .`__call()` +[[Elasticsearch_Client-call-_call]] +.`__call(string $name, array $arguments)` **** [source,php] ---- /* Catchall for registered namespaces */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->__call($name,$arguments); ---- **** @@ -1691,18 +1474,14 @@ $response = $client->__call($name,$arguments); [[Elasticsearch_ClientextractArgument_extractArgument]] .`extractArgument()` +[[Elasticsearch_ClientextractArgument_extractArgument]] +.`extractArgument(array $params, string $arg)` **** [source,php] ---- /* +Extract an argument from the array of parameters */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->extractArgument($params,$arg); ---- **** diff --git a/docs/build/Elasticsearch/ClientBuilder.asciidoc b/docs/build/Elasticsearch/ClientBuilder.asciidoc index 82084cdc3..693b697cb 100644 --- a/docs/build/Elasticsearch/ClientBuilder.asciidoc +++ b/docs/build/Elasticsearch/ClientBuilder.asciidoc @@ -1,4 +1,5 @@ -[discrete] + + [[Elasticsearch_ClientBuilder]] === Elasticsearch\ClientBuilder @@ -37,62 +38,68 @@ The class defines the following methods: * <> * <> * <> +* <> * <> * <> * <> +[[Elasticsearch_ClientBuildercreate_create]] +.`create()` [[Elasticsearch_ClientBuildercreate_create]] .`create()` **** [source,php] ---- /* +Create an instance of ClientBuilder */ - ---- **** +[[Elasticsearch_ClientBuildergetTransport_getTransport]] +.`getTransport()` [[Elasticsearch_ClientBuildergetTransport_getTransport]] .`getTransport()` **** [source,php] ---- /* - Can supply first parm to Client::__construct() when invoking manually or with dependency injection +Can supply first parm to Client::__construct() when invoking manually or with dependency injection */ - ---- **** +[[Elasticsearch_ClientBuildergetEndpoint_getEndpoint]] +.`getEndpoint()` [[Elasticsearch_ClientBuildergetEndpoint_getEndpoint]] .`getEndpoint()` **** [source,php] ---- /* - Can supply second parm to Client::__construct() when invoking manually or with dependency injection +Can supply second parm to Client::__construct() when invoking manually or with dependency injection */ - ---- **** +[[Elasticsearch_ClientBuildergetRegisteredNamespacesBuilders_getRegisteredNamespacesBuilders]] +.`getRegisteredNamespacesBuilders()` [[Elasticsearch_ClientBuildergetRegisteredNamespacesBuilders_getRegisteredNamespacesBuilders]] .`getRegisteredNamespacesBuilders()` **** [source,php] ---- /* - Can supply third parm to Client::__construct() when invoking manually or with dependency injection +Can supply third parm to Client::__construct() when invoking manually or with dependency injection */ - ---- **** @@ -100,15 +107,16 @@ The class defines the following methods: [[Elasticsearch_ClientBuilderfromConfig_fromConfig]] .`fromConfig()` +[[Elasticsearch_ClientBuilderfromConfig_fromConfig]] +.`fromConfig(array $config, bool $quiet = false)` **** [source,php] ---- /* - Build a new client from the provided config. Hash keys +Build a new client from the provided config. Hash keys should correspond to the method name e.g. ['connectionPool'] corresponds to setConnectionPool(). */ - ---- **** @@ -116,12 +124,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuilderdefaultHandler_defaultHandler]] .`defaultHandler()` +[[Elasticsearch_ClientBuilderdefaultHandler_defaultHandler]] +.`defaultHandler(array $multiParams = [], array $singleParams = [])` **** [source,php] ---- /* +Get the default handler */ - ---- **** @@ -129,25 +139,29 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildermultiHandler_multiHandler]] .`multiHandler()` +[[Elasticsearch_ClientBuildermultiHandler_multiHandler]] +.`multiHandler(array $params = [])` **** [source,php] ---- /* +Get the multi handler for async (CurlMultiHandler) */ - ---- **** +[[Elasticsearch_ClientBuildersingleHandler_singleHandler]] +.`singleHandler()` [[Elasticsearch_ClientBuildersingleHandler_singleHandler]] .`singleHandler()` **** [source,php] ---- /* +Get the handler instance (CurlHandler) */ - ---- **** @@ -155,12 +169,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildersetConnectionFactory_setConnectionFactory]] .`setConnectionFactory()` +[[Elasticsearch_ClientBuildersetConnectionFactory_setConnectionFactory]] +.`setConnectionFactory(Elasticsearch\Connections\ConnectionFactoryInterface $connectionFactory)` **** [source,php] ---- /* +Set connection Factory */ - ---- **** @@ -168,12 +184,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildersetConnectionPool_setConnectionPool]] .`setConnectionPool()` +[[Elasticsearch_ClientBuildersetConnectionPool_setConnectionPool]] +.`setConnectionPool(AbstractConnectionPool|string $connectionPool, array $args = [])` **** [source,php] ---- /* +Set the connection pool (default is StaticNoPingConnectionPool) */ - ---- **** @@ -181,12 +199,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildersetEndpoint_setEndpoint]] .`setEndpoint()` +[[Elasticsearch_ClientBuildersetEndpoint_setEndpoint]] +.`setEndpoint(callable $endpoint)` **** [source,php] ---- /* +Set the endpoint */ - ---- **** @@ -194,12 +214,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuilderregisterNamespace_registerNamespace]] .`registerNamespace()` +[[Elasticsearch_ClientBuilderregisterNamespace_registerNamespace]] +.`registerNamespace(Elasticsearch\Namespaces\NamespaceBuilderInterface $namespaceBuilder)` **** [source,php] ---- /* +Register namespace */ - ---- **** @@ -207,12 +229,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildersetTransport_setTransport]] .`setTransport()` +[[Elasticsearch_ClientBuildersetTransport_setTransport]] +.`setTransport(Elasticsearch\Transport $transport)` **** [source,php] ---- /* +Set the transport */ - ---- **** @@ -220,12 +244,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildersetHandler_setHandler]] .`setHandler()` +[[Elasticsearch_ClientBuildersetHandler_setHandler]] +.`setHandler(mixed $handler)` **** [source,php] ---- /* +Set the HTTP handler (cURL is default) */ - ---- **** @@ -233,12 +259,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildersetLogger_setLogger]] .`setLogger()` +[[Elasticsearch_ClientBuildersetLogger_setLogger]] +.`setLogger(Psr\Log\LoggerInterface $logger)` **** [source,php] ---- /* +Set the PSR-3 Logger */ - ---- **** @@ -246,12 +274,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildersetTracer_setTracer]] .`setTracer()` +[[Elasticsearch_ClientBuildersetTracer_setTracer]] +.`setTracer(Psr\Log\LoggerInterface $tracer)` **** [source,php] ---- /* +Set the PSR-3 tracer */ - ---- **** @@ -259,12 +289,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildersetSerializer_setSerializer]] .`setSerializer()` +[[Elasticsearch_ClientBuildersetSerializer_setSerializer]] +.`setSerializer(Elasticsearch\Serializers\SerializerInterface|string $serializer)` **** [source,php] ---- /* +Set the serializer */ - ---- **** @@ -272,12 +304,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildersetHosts_setHosts]] .`setHosts()` +[[Elasticsearch_ClientBuildersetHosts_setHosts]] +.`setHosts(array $hosts)` **** [source,php] ---- /* +Set the hosts (nodes) */ - ---- **** @@ -285,13 +319,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildersetApiKey_setApiKey]] .`setApiKey()` +[[Elasticsearch_ClientBuildersetApiKey_setApiKey]] +.`setApiKey(string $id, string $apiKey)` **** [source,php] ---- /* - Set the APIKey Pair, consiting of the API Id and the ApiKey of the Response from /_security/api_key +Set the APIKey Pair, consiting of the API Id and the ApiKey of the Response from /_security/api_key */ - ---- **** @@ -299,13 +334,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildersetBasicAuthentication_setBasicAuthentication]] .`setBasicAuthentication()` +[[Elasticsearch_ClientBuildersetBasicAuthentication_setBasicAuthentication]] +.`setBasicAuthentication(string $username, string $password)` **** [source,php] ---- /* - Set the APIKey Pair, consiting of the API Id and the ApiKey of the Response from /_security/api_key +Set Basic access authentication */ - ---- **** @@ -313,13 +349,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildersetElasticCloudId_setElasticCloudId]] .`setElasticCloudId()` +[[Elasticsearch_ClientBuildersetElasticCloudId_setElasticCloudId]] +.`setElasticCloudId(string $cloudId)` **** [source,php] ---- /* - Set Elastic Cloud ID to connect to Elastic Cloud +Set Elastic Cloud ID to connect to Elastic Cloud */ - ---- **** @@ -327,12 +364,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildersetConnectionParams_setConnectionParams]] .`setConnectionParams()` +[[Elasticsearch_ClientBuildersetConnectionParams_setConnectionParams]] +.`setConnectionParams(array $params)` **** [source,php] ---- /* +Set connection parameters */ - ---- **** @@ -340,12 +379,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildersetRetries_setRetries]] .`setRetries()` +[[Elasticsearch_ClientBuildersetRetries_setRetries]] +.`setRetries(int $retries)` **** [source,php] ---- /* +Set number or retries (default is equal to number of nodes) */ - ---- **** @@ -353,12 +394,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildersetSelector_setSelector]] .`setSelector()` +[[Elasticsearch_ClientBuildersetSelector_setSelector]] +.`setSelector(Elasticsearch\ConnectionPool\Selectors\SelectorInterface|string $selector)` **** [source,php] ---- /* +Set the selector algorithm */ - ---- **** @@ -366,12 +409,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildersetSniffOnStart_setSniffOnStart]] .`setSniffOnStart()` +[[Elasticsearch_ClientBuildersetSniffOnStart_setSniffOnStart]] +.`setSniffOnStart(bool $sniffOnStart)` **** [source,php] ---- /* +Set sniff on start */ - ---- **** @@ -379,12 +424,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildersetSSLCert_setSSLCert]] .`setSSLCert()` +[[Elasticsearch_ClientBuildersetSSLCert_setSSLCert]] +.`setSSLCert(string $cert, string $password = null)` **** [source,php] ---- /* +Set SSL certificate */ - ---- **** @@ -392,12 +439,14 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildersetSSLKey_setSSLKey]] .`setSSLKey()` +[[Elasticsearch_ClientBuildersetSSLKey_setSSLKey]] +.`setSSLKey(string $key, string $password = null)` **** [source,php] ---- /* +Set SSL key */ - ---- **** @@ -405,12 +454,29 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuildersetSSLVerification_setSSLVerification]] .`setSSLVerification()` +[[Elasticsearch_ClientBuildersetSSLVerification_setSSLVerification]] +.`setSSLVerification(bool|string $value = true)` **** [source,php] ---- /* +Set SSL verification */ +---- +**** + + +[[Elasticsearch_ClientBuildersetElasticMetaHeader_setElasticMetaHeader]] +.`setElasticMetaHeader()` +[[Elasticsearch_ClientBuildersetElasticMetaHeader_setElasticMetaHeader]] +.`setElasticMetaHeader($value = true)` +**** +[source,php] +---- +/* +Set or disable the x-elastic-client-meta header +*/ ---- **** @@ -418,26 +484,29 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuilderincludePortInHostHeader_includePortInHostHeader]] .`includePortInHostHeader()` +[[Elasticsearch_ClientBuilderincludePortInHostHeader_includePortInHostHeader]] +.`includePortInHostHeader(bool $enable)` **** [source,php] ---- /* - Include the port in Host header +Include the port in Host header */ - ---- **** +[[Elasticsearch_ClientBuilderbuild_build]] +.`build()` [[Elasticsearch_ClientBuilderbuild_build]] .`build()` **** [source,php] ---- /* +Build and returns the Client object */ - ---- **** @@ -445,12 +514,13 @@ corresponds to setConnectionPool(). [[Elasticsearch_ClientBuilderinstantiate_instantiate]] .`instantiate()` +[[Elasticsearch_ClientBuilderinstantiate_instantiate]] +.`instantiate(Elasticsearch\Transport $transport, callable $endpoint, array $registeredNamespaces)` **** [source,php] ---- /* */ - ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/AsyncSearchNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/AsyncSearchNamespace.asciidoc index 2bb5a3896..106cfb08a 100644 --- a/docs/build/Elasticsearch/Namespaces/AsyncSearchNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/AsyncSearchNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_AsyncSearchNamespace]] === Elasticsearch\Namespaces\AsyncSearchNamespace Class AsyncSearchNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -15,25 +20,21 @@ The class defines the following methods: * <> * <> +* <> * <> [[Elasticsearch_Namespaces_AsyncSearchNamespacedelete_delete]] .`delete()` +[[Elasticsearch_Namespaces_AsyncSearchNamespacedelete_delete]] +.`delete(array $params = [])` **** [source,php] ---- /* $params['id'] = (string) The async search ID */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->asyncsearch()->delete($params); ---- **** @@ -41,6 +42,8 @@ $response = $client->asyncsearch()->delete($params); [[Elasticsearch_Namespaces_AsyncSearchNamespaceget_get]] .`get()` +[[Elasticsearch_Namespaces_AsyncSearchNamespaceget_get]] +.`get(array $params = [])` **** [source,php] ---- @@ -50,13 +53,21 @@ $params['wait_for_completion_timeout'] = (time) Specify the time that the reques $params['keep_alive'] = (time) Specify the time interval in which the results (partial or final) for this search will be available $params['typed_keys'] = (boolean) Specify whether aggregation and suggester names should be prefixed by their respective types in the response */ +---- +**** -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->asyncsearch()->get($params); + +[[Elasticsearch_Namespaces_AsyncSearchNamespacestatus_status]] +.`status()` +[[Elasticsearch_Namespaces_AsyncSearchNamespacestatus_status]] +.`status(array $params = [])` +**** +[source,php] +---- +/* +$params['id'] = (string) The async search ID +*/ ---- **** @@ -64,6 +75,8 @@ $response = $client->asyncsearch()->get($params); [[Elasticsearch_Namespaces_AsyncSearchNamespacesubmit_submit]] .`submit()` +[[Elasticsearch_Namespaces_AsyncSearchNamespacesubmit_submit]] +.`submit(array $params = [])` **** [source,php] ---- @@ -98,13 +111,6 @@ $params['_source_excludes'] = (list) A list of fields to exclude fr $params['_source_includes'] = (list) A list of fields to extract and return from the _source field $params['terminate_after'] = (number) The maximum number of documents to collect for each shard, upon reaching which the query execution will terminate early. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->asyncsearch()->submit($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/AutoscalingNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/AutoscalingNamespace.asciidoc index d7f1f46b4..b02ff363c 100644 --- a/docs/build/Elasticsearch/Namespaces/AutoscalingNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/AutoscalingNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_AutoscalingNamespace]] === Elasticsearch\Namespaces\AutoscalingNamespace Class AutoscalingNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -14,7 +19,7 @@ Generated running $ php util/GenerateEndpoints.php 7.9 The class defines the following methods: * <> -* <> +* <> * <> * <> @@ -22,39 +27,28 @@ The class defines the following methods: [[Elasticsearch_Namespaces_AutoscalingNamespacedeleteAutoscalingPolicy_deleteAutoscalingPolicy]] .`deleteAutoscalingPolicy()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_AutoscalingNamespacedeleteAutoscalingPolicy_deleteAutoscalingPolicy]] +.`deleteAutoscalingPolicy(array $params = [])` **** [source,php] ---- /* $params['name'] = (string) the name of the autoscaling policy */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->autoscaling()->deleteAutoscalingPolicy($params); ---- **** -[[Elasticsearch_Namespaces_AutoscalingNamespacegetAutoscalingDecision_getAutoscalingDecision]] -.`getAutoscalingDecision()` +[[Elasticsearch_Namespaces_AutoscalingNamespacegetAutoscalingCapacity_getAutoscalingCapacity]] +.`getAutoscalingCapacity()` +[[Elasticsearch_Namespaces_AutoscalingNamespacegetAutoscalingCapacity_getAutoscalingCapacity]] +.`getAutoscalingCapacity(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->autoscaling()->getAutoscalingDecision($params); ---- **** @@ -62,20 +56,14 @@ $response = $client->autoscaling()->getAutoscalingDecision($params); [[Elasticsearch_Namespaces_AutoscalingNamespacegetAutoscalingPolicy_getAutoscalingPolicy]] .`getAutoscalingPolicy()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_AutoscalingNamespacegetAutoscalingPolicy_getAutoscalingPolicy]] +.`getAutoscalingPolicy(array $params = [])` **** [source,php] ---- /* $params['name'] = (string) the name of the autoscaling policy */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->autoscaling()->getAutoscalingPolicy($params); ---- **** @@ -83,7 +71,8 @@ $response = $client->autoscaling()->getAutoscalingPolicy($params); [[Elasticsearch_Namespaces_AutoscalingNamespaceputAutoscalingPolicy_putAutoscalingPolicy]] .`putAutoscalingPolicy()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_AutoscalingNamespaceputAutoscalingPolicy_putAutoscalingPolicy]] +.`putAutoscalingPolicy(array $params = [])` **** [source,php] ---- @@ -91,13 +80,6 @@ $response = $client->autoscaling()->getAutoscalingPolicy($params); $params['name'] = (string) the name of the autoscaling policy $params['body'] = (array) the specification of the autoscaling policy (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->autoscaling()->putAutoscalingPolicy($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/CatNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/CatNamespace.asciidoc index b53d13c5f..3324a9868 100644 --- a/docs/build/Elasticsearch/Namespaces/CatNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/CatNamespace.asciidoc @@ -1,11 +1,17 @@ -[discrete] + + [[Elasticsearch_Namespaces_CatNamespace]] === Elasticsearch\Namespaces\CatNamespace Class CatNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -20,6 +26,10 @@ The class defines the following methods: * <> * <> * <> +* <> +* <> +* <> +* <> * <> * <> * <> @@ -32,16 +42,14 @@ The class defines the following methods: * <> * <> * <> -* <> -* <> -* <> -* <> * <> [[Elasticsearch_Namespaces_CatNamespacealiases_aliases]] .`aliases()` +[[Elasticsearch_Namespaces_CatNamespacealiases_aliases]] +.`aliases(array $params = [])` **** [source,php] ---- @@ -55,13 +63,6 @@ $params['s'] = (list) Comma-separated list of column names or col $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = all) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->aliases($params); ---- **** @@ -69,6 +70,8 @@ $response = $client->cat()->aliases($params); [[Elasticsearch_Namespaces_CatNamespaceallocation_allocation]] .`allocation()` +[[Elasticsearch_Namespaces_CatNamespaceallocation_allocation]] +.`allocation(array $params = [])` **** [source,php] ---- @@ -83,13 +86,6 @@ $params['help'] = (boolean) Return help information (Default = false) $params['s'] = (list) Comma-separated list of column names or column aliases to sort by $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->allocation($params); ---- **** @@ -97,6 +93,8 @@ $response = $client->cat()->allocation($params); [[Elasticsearch_Namespaces_CatNamespacecount_count]] .`count()` +[[Elasticsearch_Namespaces_CatNamespacecount_count]] +.`count(array $params = [])` **** [source,php] ---- @@ -108,13 +106,6 @@ $params['help'] = (boolean) Return help information (Default = false) $params['s'] = (list) Comma-separated list of column names or column aliases to sort by $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->count($params); ---- **** @@ -122,6 +113,8 @@ $response = $client->cat()->count($params); [[Elasticsearch_Namespaces_CatNamespacefielddata_fielddata]] .`fielddata()` +[[Elasticsearch_Namespaces_CatNamespacefielddata_fielddata]] +.`fielddata(array $params = [])` **** [source,php] ---- @@ -134,13 +127,6 @@ $params['help'] = (boolean) Return help information (Default = false) $params['s'] = (list) Comma-separated list of column names or column aliases to sort by $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->fielddata($params); ---- **** @@ -148,6 +134,8 @@ $response = $client->cat()->fielddata($params); [[Elasticsearch_Namespaces_CatNamespacehealth_health]] .`health()` +[[Elasticsearch_Namespaces_CatNamespacehealth_health]] +.`health(array $params = [])` **** [source,php] ---- @@ -160,13 +148,6 @@ $params['time'] = (enum) The unit in which to display time values (Options = d $params['ts'] = (boolean) Set to false to disable timestamping (Default = true) $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->health($params); ---- **** @@ -174,6 +155,8 @@ $response = $client->cat()->health($params); [[Elasticsearch_Namespaces_CatNamespacehelp_help]] .`help()` +[[Elasticsearch_Namespaces_CatNamespacehelp_help]] +.`help(array $params = [])` **** [source,php] ---- @@ -181,13 +164,6 @@ $response = $client->cat()->health($params); $params['help'] = (boolean) Return help information (Default = false) $params['s'] = (list) Comma-separated list of column names or column aliases to sort by */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->help($params); ---- **** @@ -195,6 +171,8 @@ $response = $client->cat()->help($params); [[Elasticsearch_Namespaces_CatNamespaceindices_indices]] .`indices()` +[[Elasticsearch_Namespaces_CatNamespaceindices_indices]] +.`indices(array $params = [])` **** [source,php] ---- @@ -214,13 +192,6 @@ $params['v'] = (boolean) Verbose mode. Display column he $params['include_unloaded_segments'] = (boolean) If set to true segment stats will include stats for segments that are not currently loaded into memory (Default = false) $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = all) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->indices($params); ---- **** @@ -228,6 +199,8 @@ $response = $client->cat()->indices($params); [[Elasticsearch_Namespaces_CatNamespacemaster_master]] .`master()` +[[Elasticsearch_Namespaces_CatNamespacemaster_master]] +.`master(array $params = [])` **** [source,php] ---- @@ -240,13 +213,101 @@ $params['help'] = (boolean) Return help information (Default = false) $params['s'] = (list) Comma-separated list of column names or column aliases to sort by $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) */ +---- +**** + + + +[[Elasticsearch_Namespaces_CatNamespacemlDataFrameAnalytics_mlDataFrameAnalytics]] +.`mlDataFrameAnalytics()` +[[Elasticsearch_Namespaces_CatNamespacemlDataFrameAnalytics_mlDataFrameAnalytics]] +.`mlDataFrameAnalytics(array $params = [])` +**** +[source,php] +---- +/* +$params['id'] = (string) The ID of the data frame analytics to fetch +$params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no configs. (This includes `_all` string or when no configs have been specified) +$params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb) +$params['format'] = (string) a short version of the Accept header, e.g. json, yaml +$params['h'] = (list) Comma-separated list of column names to display +$params['help'] = (boolean) Return help information (Default = false) +$params['s'] = (list) Comma-separated list of column names or column aliases to sort by +$params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos) +$params['v'] = (boolean) Verbose mode. Display column headers (Default = false) +*/ +---- +**** + + + +[[Elasticsearch_Namespaces_CatNamespacemlDatafeeds_mlDatafeeds]] +.`mlDatafeeds()` +[[Elasticsearch_Namespaces_CatNamespacemlDatafeeds_mlDatafeeds]] +.`mlDatafeeds(array $params = [])` +**** +[source,php] +---- +/* +$params['datafeed_id'] = (string) The ID of the datafeeds stats to fetch +$params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified) +$params['allow_no_datafeeds'] = (boolean) Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified) +$params['format'] = (string) a short version of the Accept header, e.g. json, yaml +$params['h'] = (list) Comma-separated list of column names to display +$params['help'] = (boolean) Return help information (Default = false) +$params['s'] = (list) Comma-separated list of column names or column aliases to sort by +$params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos) +$params['v'] = (boolean) Verbose mode. Display column headers (Default = false) +*/ +---- +**** + + + +[[Elasticsearch_Namespaces_CatNamespacemlJobs_mlJobs]] +.`mlJobs()` +[[Elasticsearch_Namespaces_CatNamespacemlJobs_mlJobs]] +.`mlJobs(array $params = [])` +**** +[source,php] +---- +/* +$params['job_id'] = (string) The ID of the jobs stats to fetch +$params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) +$params['allow_no_jobs'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) +$params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb) +$params['format'] = (string) a short version of the Accept header, e.g. json, yaml +$params['h'] = (list) Comma-separated list of column names to display +$params['help'] = (boolean) Return help information (Default = false) +$params['s'] = (list) Comma-separated list of column names or column aliases to sort by +$params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos) +$params['v'] = (boolean) Verbose mode. Display column headers (Default = false) +*/ +---- +**** + -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->cat()->master($params); +[[Elasticsearch_Namespaces_CatNamespacemlTrainedModels_mlTrainedModels]] +.`mlTrainedModels()` +[[Elasticsearch_Namespaces_CatNamespacemlTrainedModels_mlTrainedModels]] +.`mlTrainedModels(array $params = [])` +**** +[source,php] +---- +/* +$params['model_id'] = (string) The ID of the trained models stats to fetch +$params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no trained models. (This includes `_all` string or when no trained models have been specified) (Default = true) +$params['from'] = (int) skips a number of trained models (Default = 0) +$params['size'] = (int) specifies a max number of trained models to get (Default = 100) +$params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb) +$params['format'] = (string) a short version of the Accept header, e.g. json, yaml +$params['h'] = (list) Comma-separated list of column names to display +$params['help'] = (boolean) Return help information (Default = false) +$params['s'] = (list) Comma-separated list of column names or column aliases to sort by +$params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos) +$params['v'] = (boolean) Verbose mode. Display column headers (Default = false) +*/ ---- **** @@ -254,6 +315,8 @@ $response = $client->cat()->master($params); [[Elasticsearch_Namespaces_CatNamespacenodeattrs_nodeattrs]] .`nodeattrs()` +[[Elasticsearch_Namespaces_CatNamespacenodeattrs_nodeattrs]] +.`nodeattrs(array $params = [])` **** [source,php] ---- @@ -266,13 +329,6 @@ $params['help'] = (boolean) Return help information (Default = false) $params['s'] = (list) Comma-separated list of column names or column aliases to sort by $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->nodeattrs($params); ---- **** @@ -280,6 +336,8 @@ $response = $client->cat()->nodeattrs($params); [[Elasticsearch_Namespaces_CatNamespacenodes_nodes]] .`nodes()` +[[Elasticsearch_Namespaces_CatNamespacenodes_nodes]] +.`nodes(array $params = [])` **** [source,php] ---- @@ -295,13 +353,6 @@ $params['s'] = (list) Comma-separated list of column names or colum $params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos) $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->nodes($params); ---- **** @@ -309,6 +360,8 @@ $response = $client->cat()->nodes($params); [[Elasticsearch_Namespaces_CatNamespacependingTasks_pendingTasks]] .`pendingTasks()` +[[Elasticsearch_Namespaces_CatNamespacependingTasks_pendingTasks]] +.`pendingTasks(array $params = [])` **** [source,php] ---- @@ -322,13 +375,6 @@ $params['s'] = (list) Comma-separated list of column names or colum $params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos) $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->pendingTasks($params); ---- **** @@ -336,25 +382,21 @@ $response = $client->cat()->pendingTasks($params); [[Elasticsearch_Namespaces_CatNamespaceplugins_plugins]] .`plugins()` +[[Elasticsearch_Namespaces_CatNamespaceplugins_plugins]] +.`plugins(array $params = [])` **** [source,php] ---- /* -$params['format'] = (string) a short version of the Accept header, e.g. json, yaml -$params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) -$params['master_timeout'] = (time) Explicit operation timeout for connection to master node -$params['h'] = (list) Comma-separated list of column names to display -$params['help'] = (boolean) Return help information (Default = false) -$params['s'] = (list) Comma-separated list of column names or column aliases to sort by -$params['v'] = (boolean) Verbose mode. Display column headers (Default = false) +$params['format'] = (string) a short version of the Accept header, e.g. json, yaml +$params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) +$params['master_timeout'] = (time) Explicit operation timeout for connection to master node +$params['h'] = (list) Comma-separated list of column names to display +$params['help'] = (boolean) Return help information (Default = false) +$params['include_bootstrap'] = (boolean) Include bootstrap plugins in the response (Default = false) +$params['s'] = (list) Comma-separated list of column names or column aliases to sort by +$params['v'] = (boolean) Verbose mode. Display column headers (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->plugins($params); ---- **** @@ -362,6 +404,8 @@ $response = $client->cat()->plugins($params); [[Elasticsearch_Namespaces_CatNamespacerecovery_recovery]] .`recovery()` +[[Elasticsearch_Namespaces_CatNamespacerecovery_recovery]] +.`recovery(array $params = [])` **** [source,php] ---- @@ -377,13 +421,6 @@ $params['s'] = (list) Comma-separated list of column names or column a $params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos) $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->recovery($params); ---- **** @@ -391,6 +428,8 @@ $response = $client->cat()->recovery($params); [[Elasticsearch_Namespaces_CatNamespacerepositories_repositories]] .`repositories()` +[[Elasticsearch_Namespaces_CatNamespacerepositories_repositories]] +.`repositories(array $params = [])` **** [source,php] ---- @@ -403,13 +442,6 @@ $params['help'] = (boolean) Return help information (Default = false) $params['s'] = (list) Comma-separated list of column names or column aliases to sort by $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->repositories($params); ---- **** @@ -417,6 +449,8 @@ $response = $client->cat()->repositories($params); [[Elasticsearch_Namespaces_CatNamespacesegments_segments]] .`segments()` +[[Elasticsearch_Namespaces_CatNamespacesegments_segments]] +.`segments(array $params = [])` **** [source,php] ---- @@ -429,13 +463,6 @@ $params['help'] = (boolean) Return help information (Default = false) $params['s'] = (list) Comma-separated list of column names or column aliases to sort by $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->segments($params); ---- **** @@ -443,6 +470,8 @@ $response = $client->cat()->segments($params); [[Elasticsearch_Namespaces_CatNamespaceshards_shards]] .`shards()` +[[Elasticsearch_Namespaces_CatNamespaceshards_shards]] +.`shards(array $params = [])` **** [source,php] ---- @@ -458,13 +487,6 @@ $params['s'] = (list) Comma-separated list of column names or colum $params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos) $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->shards($params); ---- **** @@ -472,6 +494,8 @@ $response = $client->cat()->shards($params); [[Elasticsearch_Namespaces_CatNamespacesnapshots_snapshots]] .`snapshots()` +[[Elasticsearch_Namespaces_CatNamespacesnapshots_snapshots]] +.`snapshots(array $params = [])` **** [source,php] ---- @@ -486,13 +510,6 @@ $params['s'] = (list) Comma-separated list of column names or c $params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos) $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->snapshots($params); ---- **** @@ -500,21 +517,16 @@ $response = $client->cat()->snapshots($params); [[Elasticsearch_Namespaces_CatNamespacetasks_tasks]] .`tasks()` +[[Elasticsearch_Namespaces_CatNamespacetasks_tasks]] +.`tasks(array $params = [])` **** [source,php] ---- /* -$params['format'] = (string) a short version of the Accept header, e.g. json, yaml -$params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes -$params['actions'] = (list) A comma-separated list of actions that should be returned. Leave empty to return all. +$params['format'] = (string) a short version of the Accept header, e.g. json, yaml +$params['nodes'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes +$params['actions'] = (list) A comma-separated list of actions that should be returned. Leave empty to return all. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->tasks($params); ---- **** @@ -522,6 +534,8 @@ $response = $client->cat()->tasks($params); [[Elasticsearch_Namespaces_CatNamespacetemplates_templates]] .`templates()` +[[Elasticsearch_Namespaces_CatNamespacetemplates_templates]] +.`templates(array $params = [])` **** [source,php] ---- @@ -535,13 +549,6 @@ $params['help'] = (boolean) Return help information (Default = false) $params['s'] = (list) Comma-separated list of column names or column aliases to sort by $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->templates($params); ---- **** @@ -549,6 +556,8 @@ $response = $client->cat()->templates($params); [[Elasticsearch_Namespaces_CatNamespacethreadPool_threadPool]] .`threadPool()` +[[Elasticsearch_Namespaces_CatNamespacethreadPool_threadPool]] +.`threadPool(array $params = [])` **** [source,php] ---- @@ -563,126 +572,6 @@ $params['help'] = (boolean) Return help information (Default = f $params['s'] = (list) Comma-separated list of column names or column aliases to sort by $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->threadPool($params); ----- -**** - - - -[[Elasticsearch_Namespaces_CatNamespacemlDataFrameAnalytics_mlDataFrameAnalytics]] -.`mlDataFrameAnalytics()` -**** -[source,php] ----- -/* -$params['id'] = (string) The ID of the data frame analytics to fetch -$params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no configs. (This includes `_all` string or when no configs have been specified) -$params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb) -$params['format'] = (string) a short version of the Accept header, e.g. json, yaml -$params['h'] = (list) Comma-separated list of column names to display -$params['help'] = (boolean) Return help information (Default = false) -$params['s'] = (list) Comma-separated list of column names or column aliases to sort by -$params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos) -$params['v'] = (boolean) Verbose mode. Display column headers (Default = false) -*/ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->mlDataFrameAnalytics($params); ----- -**** - - - -[[Elasticsearch_Namespaces_CatNamespacemlDatafeeds_mlDatafeeds]] -.`mlDatafeeds()` -**** -[source,php] ----- -/* -$params['datafeed_id'] = (string) The ID of the datafeeds stats to fetch -$params['allow_no_datafeeds'] = (boolean) Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified) -$params['format'] = (string) a short version of the Accept header, e.g. json, yaml -$params['h'] = (list) Comma-separated list of column names to display -$params['help'] = (boolean) Return help information (Default = false) -$params['s'] = (list) Comma-separated list of column names or column aliases to sort by -$params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos) -$params['v'] = (boolean) Verbose mode. Display column headers (Default = false) -*/ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->mlDatafeeds($params); ----- -**** - - - -[[Elasticsearch_Namespaces_CatNamespacemlJobs_mlJobs]] -.`mlJobs()` -**** -[source,php] ----- -/* -$params['job_id'] = (string) The ID of the jobs stats to fetch -$params['allow_no_jobs'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) -$params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb) -$params['format'] = (string) a short version of the Accept header, e.g. json, yaml -$params['h'] = (list) Comma-separated list of column names to display -$params['help'] = (boolean) Return help information (Default = false) -$params['s'] = (list) Comma-separated list of column names or column aliases to sort by -$params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos) -$params['v'] = (boolean) Verbose mode. Display column headers (Default = false) -*/ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->mlJobs($params); ----- -**** - - - -[[Elasticsearch_Namespaces_CatNamespacemlTrainedModels_mlTrainedModels]] -.`mlTrainedModels()` -**** -[source,php] ----- -/* -$params['model_id'] = (string) The ID of the trained models stats to fetch -$params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no trained models. (This includes `_all` string or when no trained models have been specified) (Default = true) -$params['from'] = (int) skips a number of trained models (Default = 0) -$params['size'] = (int) specifies a max number of trained models to get (Default = 100) -$params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb) -$params['format'] = (string) a short version of the Accept header, e.g. json, yaml -$params['h'] = (list) Comma-separated list of column names to display -$params['help'] = (boolean) Return help information (Default = false) -$params['s'] = (list) Comma-separated list of column names or column aliases to sort by -$params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos) -$params['v'] = (boolean) Verbose mode. Display column headers (Default = false) -*/ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->mlTrainedModels($params); ---- **** @@ -690,6 +579,8 @@ $response = $client->cat()->mlTrainedModels($params); [[Elasticsearch_Namespaces_CatNamespacetransforms_transforms]] .`transforms()` +[[Elasticsearch_Namespaces_CatNamespacetransforms_transforms]] +.`transforms(array $params = [])` **** [source,php] ---- @@ -705,13 +596,6 @@ $params['s'] = (list) Comma-separated list of column names or colum $params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos) $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cat()->transforms($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/CcrNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/CcrNamespace.asciidoc index d5405e80e..3547ef2a4 100644 --- a/docs/build/Elasticsearch/Namespaces/CcrNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/CcrNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_CcrNamespace]] === Elasticsearch\Namespaces\CcrNamespace Class CcrNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -31,19 +36,14 @@ The class defines the following methods: [[Elasticsearch_Namespaces_CcrNamespacedeleteAutoFollowPattern_deleteAutoFollowPattern]] .`deleteAutoFollowPattern()` +[[Elasticsearch_Namespaces_CcrNamespacedeleteAutoFollowPattern_deleteAutoFollowPattern]] +.`deleteAutoFollowPattern(array $params = [])` **** [source,php] ---- /* $params['name'] = (string) The name of the auto follow pattern. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ccr()->deleteAutoFollowPattern($params); ---- **** @@ -51,6 +51,8 @@ $response = $client->ccr()->deleteAutoFollowPattern($params); [[Elasticsearch_Namespaces_CcrNamespacefollow_follow]] .`follow()` +[[Elasticsearch_Namespaces_CcrNamespacefollow_follow]] +.`follow(array $params = [])` **** [source,php] ---- @@ -59,13 +61,6 @@ $params['index'] = (string) The name of the follower index $params['wait_for_active_shards'] = (string) Sets the number of shard copies that must be active before returning. Defaults to 0. Set to `all` for all shard copies, otherwise set to any non-negative value less than or equal to the total number of copies for the shard (number of replicas + 1) (Default = 0) $params['body'] = (array) The name of the leader index and other optional ccr related parameters (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ccr()->follow($params); ---- **** @@ -73,19 +68,14 @@ $response = $client->ccr()->follow($params); [[Elasticsearch_Namespaces_CcrNamespacefollowInfo_followInfo]] .`followInfo()` +[[Elasticsearch_Namespaces_CcrNamespacefollowInfo_followInfo]] +.`followInfo(array $params = [])` **** [source,php] ---- /* $params['index'] = (list) A comma-separated list of index patterns; use `_all` to perform the operation on all indices */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ccr()->followInfo($params); ---- **** @@ -93,19 +83,14 @@ $response = $client->ccr()->followInfo($params); [[Elasticsearch_Namespaces_CcrNamespacefollowStats_followStats]] .`followStats()` +[[Elasticsearch_Namespaces_CcrNamespacefollowStats_followStats]] +.`followStats(array $params = [])` **** [source,php] ---- /* $params['index'] = (list) A comma-separated list of index patterns; use `_all` to perform the operation on all indices */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ccr()->followStats($params); ---- **** @@ -113,6 +98,8 @@ $response = $client->ccr()->followStats($params); [[Elasticsearch_Namespaces_CcrNamespaceforgetFollower_forgetFollower]] .`forgetFollower()` +[[Elasticsearch_Namespaces_CcrNamespaceforgetFollower_forgetFollower]] +.`forgetFollower(array $params = [])` **** [source,php] ---- @@ -120,13 +107,6 @@ $response = $client->ccr()->followStats($params); $params['index'] = (string) the name of the leader index for which specified follower retention leases should be removed $params['body'] = (array) the name and UUID of the follower index, the name of the cluster containing the follower index, and the alias from the perspective of that cluster for the remote cluster containing the leader index (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ccr()->forgetFollower($params); ---- **** @@ -134,19 +114,14 @@ $response = $client->ccr()->forgetFollower($params); [[Elasticsearch_Namespaces_CcrNamespacegetAutoFollowPattern_getAutoFollowPattern]] .`getAutoFollowPattern()` +[[Elasticsearch_Namespaces_CcrNamespacegetAutoFollowPattern_getAutoFollowPattern]] +.`getAutoFollowPattern(array $params = [])` **** [source,php] ---- /* $params['name'] = (string) The name of the auto follow pattern. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ccr()->getAutoFollowPattern($params); ---- **** @@ -154,19 +129,14 @@ $response = $client->ccr()->getAutoFollowPattern($params); [[Elasticsearch_Namespaces_CcrNamespacepauseAutoFollowPattern_pauseAutoFollowPattern]] .`pauseAutoFollowPattern()` +[[Elasticsearch_Namespaces_CcrNamespacepauseAutoFollowPattern_pauseAutoFollowPattern]] +.`pauseAutoFollowPattern(array $params = [])` **** [source,php] ---- /* $params['name'] = (string) The name of the auto follow pattern that should pause discovering new indices to follow. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ccr()->pauseAutoFollowPattern($params); ---- **** @@ -174,19 +144,14 @@ $response = $client->ccr()->pauseAutoFollowPattern($params); [[Elasticsearch_Namespaces_CcrNamespacepauseFollow_pauseFollow]] .`pauseFollow()` +[[Elasticsearch_Namespaces_CcrNamespacepauseFollow_pauseFollow]] +.`pauseFollow(array $params = [])` **** [source,php] ---- /* $params['index'] = (string) The name of the follower index that should pause following its leader index. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ccr()->pauseFollow($params); ---- **** @@ -194,19 +159,14 @@ $response = $client->ccr()->pauseFollow($params); [[Elasticsearch_Namespaces_CcrNamespaceputAutoFollowPattern_putAutoFollowPattern]] .`putAutoFollowPattern()` +[[Elasticsearch_Namespaces_CcrNamespaceputAutoFollowPattern_putAutoFollowPattern]] +.`putAutoFollowPattern(array $params = [])` **** [source,php] ---- /* $params['name'] = (string) The name of the auto follow pattern. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ccr()->putAutoFollowPattern($params); ---- **** @@ -214,19 +174,14 @@ $response = $client->ccr()->putAutoFollowPattern($params); [[Elasticsearch_Namespaces_CcrNamespaceresumeAutoFollowPattern_resumeAutoFollowPattern]] .`resumeAutoFollowPattern()` +[[Elasticsearch_Namespaces_CcrNamespaceresumeAutoFollowPattern_resumeAutoFollowPattern]] +.`resumeAutoFollowPattern(array $params = [])` **** [source,php] ---- /* $params['name'] = (string) The name of the auto follow pattern to resume discovering new indices to follow. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ccr()->resumeAutoFollowPattern($params); ---- **** @@ -234,19 +189,14 @@ $response = $client->ccr()->resumeAutoFollowPattern($params); [[Elasticsearch_Namespaces_CcrNamespaceresumeFollow_resumeFollow]] .`resumeFollow()` +[[Elasticsearch_Namespaces_CcrNamespaceresumeFollow_resumeFollow]] +.`resumeFollow(array $params = [])` **** [source,php] ---- /* $params['index'] = (string) The name of the follow index to resume following. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ccr()->resumeFollow($params); ---- **** @@ -254,18 +204,13 @@ $response = $client->ccr()->resumeFollow($params); [[Elasticsearch_Namespaces_CcrNamespacestats_stats]] .`stats()` +[[Elasticsearch_Namespaces_CcrNamespacestats_stats]] +.`stats(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ccr()->stats($params); ---- **** @@ -273,19 +218,14 @@ $response = $client->ccr()->stats($params); [[Elasticsearch_Namespaces_CcrNamespaceunfollow_unfollow]] .`unfollow()` +[[Elasticsearch_Namespaces_CcrNamespaceunfollow_unfollow]] +.`unfollow(array $params = [])` **** [source,php] ---- /* $params['index'] = (string) The name of the follower index that should be turned into a regular index. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ccr()->unfollow($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/ClusterNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/ClusterNamespace.asciidoc index 75c5526fb..dcbe9110a 100644 --- a/docs/build/Elasticsearch/Namespaces/ClusterNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/ClusterNamespace.asciidoc @@ -1,11 +1,17 @@ -[discrete] + + [[Elasticsearch_Namespaces_ClusterNamespace]] === Elasticsearch\Namespaces\ClusterNamespace Class ClusterNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -32,6 +38,8 @@ The class defines the following methods: [[Elasticsearch_Namespaces_ClusterNamespaceallocationExplain_allocationExplain]] .`allocationExplain()` +[[Elasticsearch_Namespaces_ClusterNamespaceallocationExplain_allocationExplain]] +.`allocationExplain(array $params = [])` **** [source,php] ---- @@ -40,13 +48,6 @@ $params['include_yes_decisions'] = (boolean) Return 'YES' decisions in explanati $params['include_disk_info'] = (boolean) Return information about disk usage and shard sizes (default: false) $params['body'] = (array) The index, shard, and primary flag to explain. Empty means 'explain the first unassigned shard' */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cluster()->allocationExplain($params); ---- **** @@ -54,7 +55,8 @@ $response = $client->cluster()->allocationExplain($params); [[Elasticsearch_Namespaces_ClusterNamespacedeleteComponentTemplate_deleteComponentTemplate]] .`deleteComponentTemplate()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_ClusterNamespacedeleteComponentTemplate_deleteComponentTemplate]] +.`deleteComponentTemplate(array $params = [])` **** [source,php] ---- @@ -63,13 +65,6 @@ $params['name'] = (string) The name of the template $params['timeout'] = (time) Explicit operation timeout $params['master_timeout'] = (time) Specify timeout for connection to master */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cluster()->deleteComponentTemplate($params); ---- **** @@ -77,19 +72,14 @@ $response = $client->cluster()->deleteComponentTemplate($params); [[Elasticsearch_Namespaces_ClusterNamespacedeleteVotingConfigExclusions_deleteVotingConfigExclusions]] .`deleteVotingConfigExclusions()` +[[Elasticsearch_Namespaces_ClusterNamespacedeleteVotingConfigExclusions_deleteVotingConfigExclusions]] +.`deleteVotingConfigExclusions(array $params = [])` **** [source,php] ---- /* $params['wait_for_removal'] = (boolean) Specifies whether to wait for all excluded nodes to be removed from the cluster before clearing the voting configuration exclusions list. (Default = true) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cluster()->deleteVotingConfigExclusions($params); ---- **** @@ -97,7 +87,8 @@ $response = $client->cluster()->deleteVotingConfigExclusions($params); [[Elasticsearch_Namespaces_ClusterNamespaceexistsComponentTemplate_existsComponentTemplate]] .`existsComponentTemplate()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_ClusterNamespaceexistsComponentTemplate_existsComponentTemplate]] +.`existsComponentTemplate(array $params = [])` **** [source,php] ---- @@ -106,13 +97,6 @@ $params['name'] = (string) The name of the template $params['master_timeout'] = (time) Explicit operation timeout for connection to master node $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cluster()->existsComponentTemplate($params); ---- **** @@ -120,7 +104,8 @@ $response = $client->cluster()->existsComponentTemplate($params); [[Elasticsearch_Namespaces_ClusterNamespacegetComponentTemplate_getComponentTemplate]] .`getComponentTemplate()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_ClusterNamespacegetComponentTemplate_getComponentTemplate]] +.`getComponentTemplate(array $params = [])` **** [source,php] ---- @@ -129,13 +114,6 @@ $params['name'] = (list) The comma separated names of the component te $params['master_timeout'] = (time) Explicit operation timeout for connection to master node $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cluster()->getComponentTemplate($params); ---- **** @@ -143,6 +121,8 @@ $response = $client->cluster()->getComponentTemplate($params); [[Elasticsearch_Namespaces_ClusterNamespacegetSettings_getSettings]] .`getSettings()` +[[Elasticsearch_Namespaces_ClusterNamespacegetSettings_getSettings]] +.`getSettings(array $params = [])` **** [source,php] ---- @@ -152,13 +132,6 @@ $params['master_timeout'] = (time) Explicit operation timeout for connection t $params['timeout'] = (time) Explicit operation timeout $params['include_defaults'] = (boolean) Whether to return all default clusters setting. (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cluster()->getSettings($params); ---- **** @@ -166,6 +139,8 @@ $response = $client->cluster()->getSettings($params); [[Elasticsearch_Namespaces_ClusterNamespacehealth_health]] .`health()` +[[Elasticsearch_Namespaces_ClusterNamespacehealth_health]] +.`health(array $params = [])` **** [source,php] ---- @@ -183,13 +158,6 @@ $params['wait_for_no_relocating_shards'] = (boolean) Whether to wait until the $params['wait_for_no_initializing_shards'] = (boolean) Whether to wait until there are no initializing shards in the cluster $params['wait_for_status'] = (enum) Wait until cluster is in a specific state (Options = green,yellow,red) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cluster()->health($params); ---- **** @@ -197,6 +165,8 @@ $response = $client->cluster()->health($params); [[Elasticsearch_Namespaces_ClusterNamespacependingTasks_pendingTasks]] .`pendingTasks()` +[[Elasticsearch_Namespaces_ClusterNamespacependingTasks_pendingTasks]] +.`pendingTasks(array $params = [])` **** [source,php] ---- @@ -204,13 +174,6 @@ $response = $client->cluster()->health($params); $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) $params['master_timeout'] = (time) Specify timeout for connection to master */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cluster()->pendingTasks($params); ---- **** @@ -218,19 +181,14 @@ $response = $client->cluster()->pendingTasks($params); [[Elasticsearch_Namespaces_ClusterNamespacepostVotingConfigExclusions_postVotingConfigExclusions]] .`postVotingConfigExclusions()` +[[Elasticsearch_Namespaces_ClusterNamespacepostVotingConfigExclusions_postVotingConfigExclusions]] +.`postVotingConfigExclusions(array $params = [])` **** [source,php] ---- /* $params['node_ids'] = (string) A comma-separated list of the persistent ids of the nodes to exclude from the voting configuration. If specified, you may not also specify ?node_names. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cluster()->postVotingConfigExclusions($params); ---- **** @@ -238,7 +196,8 @@ $response = $client->cluster()->postVotingConfigExclusions($params); [[Elasticsearch_Namespaces_ClusterNamespaceputComponentTemplate_putComponentTemplate]] .`putComponentTemplate()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_ClusterNamespaceputComponentTemplate_putComponentTemplate]] +.`putComponentTemplate(array $params = [])` **** [source,php] ---- @@ -249,13 +208,6 @@ $params['timeout'] = (time) Explicit operation timeout $params['master_timeout'] = (time) Specify timeout for connection to master $params['body'] = (array) The template definition (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cluster()->putComponentTemplate($params); ---- **** @@ -263,6 +215,8 @@ $response = $client->cluster()->putComponentTemplate($params); [[Elasticsearch_Namespaces_ClusterNamespaceputSettings_putSettings]] .`putSettings()` +[[Elasticsearch_Namespaces_ClusterNamespaceputSettings_putSettings]] +.`putSettings(array $params = [])` **** [source,php] ---- @@ -272,13 +226,6 @@ $params['master_timeout'] = (time) Explicit operation timeout for connection to $params['timeout'] = (time) Explicit operation timeout $params['body'] = (array) The settings to be updated. Can be either `transient` or `persistent` (survives cluster restart). (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cluster()->putSettings($params); ---- **** @@ -286,18 +233,13 @@ $response = $client->cluster()->putSettings($params); [[Elasticsearch_Namespaces_ClusterNamespaceremoteInfo_remoteInfo]] .`remoteInfo()` +[[Elasticsearch_Namespaces_ClusterNamespaceremoteInfo_remoteInfo]] +.`remoteInfo(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cluster()->remoteInfo($params); ---- **** @@ -305,6 +247,8 @@ $response = $client->cluster()->remoteInfo($params); [[Elasticsearch_Namespaces_ClusterNamespacereroute_reroute]] .`reroute()` +[[Elasticsearch_Namespaces_ClusterNamespacereroute_reroute]] +.`reroute(array $params = [])` **** [source,php] ---- @@ -317,13 +261,6 @@ $params['master_timeout'] = (time) Explicit operation timeout for connection to $params['timeout'] = (time) Explicit operation timeout $params['body'] = (array) The definition of `commands` to perform (`move`, `cancel`, `allocate`) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cluster()->reroute($params); ---- **** @@ -331,6 +268,8 @@ $response = $client->cluster()->reroute($params); [[Elasticsearch_Namespaces_ClusterNamespacestate_state]] .`state()` +[[Elasticsearch_Namespaces_ClusterNamespacestate_state]] +.`state(array $params = [])` **** [source,php] ---- @@ -346,13 +285,6 @@ $params['ignore_unavailable'] = (boolean) Whether specified concrete indi $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cluster()->state($params); ---- **** @@ -360,6 +292,8 @@ $response = $client->cluster()->state($params); [[Elasticsearch_Namespaces_ClusterNamespacestats_stats]] .`stats()` +[[Elasticsearch_Namespaces_ClusterNamespacestats_stats]] +.`stats(array $params = [])` **** [source,php] ---- @@ -368,13 +302,6 @@ $params['node_id'] = (list) A comma-separated list of node IDs or names to $params['flat_settings'] = (boolean) Return settings in flat format (default: false) $params['timeout'] = (time) Explicit operation timeout */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->cluster()->stats($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/DanglingIndicesNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/DanglingIndicesNamespace.asciidoc index 14a630b11..4bfaa9f36 100644 --- a/docs/build/Elasticsearch/Namespaces/DanglingIndicesNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/DanglingIndicesNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_DanglingIndicesNamespace]] === Elasticsearch\Namespaces\DanglingIndicesNamespace Class DanglingIndicesNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -21,6 +26,8 @@ The class defines the following methods: [[Elasticsearch_Namespaces_DanglingIndicesNamespacedeleteDanglingIndex_deleteDanglingIndex]] .`deleteDanglingIndex()` +[[Elasticsearch_Namespaces_DanglingIndicesNamespacedeleteDanglingIndex_deleteDanglingIndex]] +.`deleteDanglingIndex(array $params = [])` **** [source,php] ---- @@ -30,13 +37,6 @@ $params['accept_data_loss'] = (boolean) Must be set to true in order to delete t $params['timeout'] = (time) Explicit operation timeout $params['master_timeout'] = (time) Specify timeout for connection to master */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->danglingindices()->deleteDanglingIndex($params); ---- **** @@ -44,6 +44,8 @@ $response = $client->danglingindices()->deleteDanglingIndex($params); [[Elasticsearch_Namespaces_DanglingIndicesNamespaceimportDanglingIndex_importDanglingIndex]] .`importDanglingIndex()` +[[Elasticsearch_Namespaces_DanglingIndicesNamespaceimportDanglingIndex_importDanglingIndex]] +.`importDanglingIndex(array $params = [])` **** [source,php] ---- @@ -53,13 +55,6 @@ $params['accept_data_loss'] = (boolean) Must be set to true in order to import t $params['timeout'] = (time) Explicit operation timeout $params['master_timeout'] = (time) Specify timeout for connection to master */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->danglingindices()->importDanglingIndex($params); ---- **** @@ -67,18 +62,13 @@ $response = $client->danglingindices()->importDanglingIndex($params); [[Elasticsearch_Namespaces_DanglingIndicesNamespacelistDanglingIndices_listDanglingIndices]] .`listDanglingIndices()` +[[Elasticsearch_Namespaces_DanglingIndicesNamespacelistDanglingIndices_listDanglingIndices]] +.`listDanglingIndices(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->danglingindices()->listDanglingIndices($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.asciidoc index 9324a071b..351617ace 100644 --- a/docs/build/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespace]] === Elasticsearch\Namespaces\DataFrameTransformDeprecatedNamespace Class DataFrameTransformDeprecatedNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -27,6 +32,8 @@ The class defines the following methods: [[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacedeleteTransform_deleteTransform]] .`deleteTransform()` *NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacedeleteTransform_deleteTransform]] +.`deleteTransform(array $params = [])` **** [source,php] ---- @@ -34,13 +41,6 @@ The class defines the following methods: $params['transform_id'] = (string) The id of the transform to delete $params['force'] = (boolean) When `true`, the transform is deleted regardless of its current state. The default value is `false`, meaning that the transform must be `stopped` before it can be deleted. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->dataframetransformdeprecated()->deleteTransform($params); ---- **** @@ -49,22 +49,18 @@ $response = $client->dataframetransformdeprecated()->deleteTransform($params); [[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacegetTransform_getTransform]] .`getTransform()` *NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacegetTransform_getTransform]] +.`getTransform(array $params = [])` **** [source,php] ---- /* -$params['transform_id'] = (string) The id or comma delimited list of id expressions of the transforms to get, '_all' or '*' implies get all transforms -$params['from'] = (int) skips a number of transform configs, defaults to 0 -$params['size'] = (int) specifies a max number of transforms to get, defaults to 100 -$params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no transforms. (This includes `_all` string or when no transforms have been specified) +$params['transform_id'] = (string) The id or comma delimited list of id expressions of the transforms to get, '_all' or '*' implies get all transforms +$params['from'] = (int) skips a number of transform configs, defaults to 0 +$params['size'] = (int) specifies a max number of transforms to get, defaults to 100 +$params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no transforms. (This includes `_all` string or when no transforms have been specified) +$params['exclude_generated'] = (boolean) Omits generated fields. Allows transform configurations to be easily copied between clusters and within the same cluster (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->dataframetransformdeprecated()->getTransform($params); ---- **** @@ -73,6 +69,8 @@ $response = $client->dataframetransformdeprecated()->getTransform($params); [[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacegetTransformStats_getTransformStats]] .`getTransformStats()` *NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacegetTransformStats_getTransformStats]] +.`getTransformStats(array $params = [])` **** [source,php] ---- @@ -82,13 +80,6 @@ $params['from'] = (number) skips a number of transform stats, defaults $params['size'] = (number) specifies a max number of transform stats to get, defaults to 100 $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no transforms. (This includes `_all` string or when no transforms have been specified) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->dataframetransformdeprecated()->getTransformStats($params); ---- **** @@ -96,18 +87,13 @@ $response = $client->dataframetransformdeprecated()->getTransformStats($params); [[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacepreviewTransform_previewTransform]] .`previewTransform()` +[[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacepreviewTransform_previewTransform]] +.`previewTransform(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->dataframetransformdeprecated()->previewTransform($params); ---- **** @@ -116,19 +102,14 @@ $response = $client->dataframetransformdeprecated()->previewTransform($params); [[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespaceputTransform_putTransform]] .`putTransform()` *NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespaceputTransform_putTransform]] +.`putTransform(array $params = [])` **** [source,php] ---- /* $params['transform_id'] = (string) The id of the new transform. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->dataframetransformdeprecated()->putTransform($params); ---- **** @@ -137,6 +118,8 @@ $response = $client->dataframetransformdeprecated()->putTransform($params); [[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacestartTransform_startTransform]] .`startTransform()` *NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacestartTransform_startTransform]] +.`startTransform(array $params = [])` **** [source,php] ---- @@ -144,13 +127,6 @@ $response = $client->dataframetransformdeprecated()->putTransform($params); $params['transform_id'] = (string) The id of the transform to start $params['timeout'] = (time) Controls the time to wait for the transform to start */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->dataframetransformdeprecated()->startTransform($params); ---- **** @@ -159,6 +135,8 @@ $response = $client->dataframetransformdeprecated()->startTransform($params); [[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacestopTransform_stopTransform]] .`stopTransform()` *NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacestopTransform_stopTransform]] +.`stopTransform(array $params = [])` **** [source,php] ---- @@ -168,13 +146,6 @@ $params['wait_for_completion'] = (boolean) Whether to wait for the transform to $params['timeout'] = (time) Controls the time to wait until the transform has stopped. Default to 30 seconds $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no transforms. (This includes `_all` string or when no transforms have been specified) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->dataframetransformdeprecated()->stopTransform($params); ---- **** @@ -183,19 +154,14 @@ $response = $client->dataframetransformdeprecated()->stopTransform($params); [[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespaceupdateTransform_updateTransform]] .`updateTransform()` *NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespaceupdateTransform_updateTransform]] +.`updateTransform(array $params = [])` **** [source,php] ---- /* $params['transform_id'] = (string) The id of the transform. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->dataframetransformdeprecated()->updateTransform($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/EnrichNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/EnrichNamespace.asciidoc index 8e7020545..39536082d 100644 --- a/docs/build/Elasticsearch/Namespaces/EnrichNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/EnrichNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_EnrichNamespace]] === Elasticsearch\Namespaces\EnrichNamespace Class EnrichNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -23,19 +28,14 @@ The class defines the following methods: [[Elasticsearch_Namespaces_EnrichNamespacedeletePolicy_deletePolicy]] .`deletePolicy()` +[[Elasticsearch_Namespaces_EnrichNamespacedeletePolicy_deletePolicy]] +.`deletePolicy(array $params = [])` **** [source,php] ---- /* $params['name'] = (string) The name of the enrich policy */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->enrich()->deletePolicy($params); ---- **** @@ -43,6 +43,8 @@ $response = $client->enrich()->deletePolicy($params); [[Elasticsearch_Namespaces_EnrichNamespaceexecutePolicy_executePolicy]] .`executePolicy()` +[[Elasticsearch_Namespaces_EnrichNamespaceexecutePolicy_executePolicy]] +.`executePolicy(array $params = [])` **** [source,php] ---- @@ -50,13 +52,6 @@ $response = $client->enrich()->deletePolicy($params); $params['name'] = (string) The name of the enrich policy $params['wait_for_completion'] = (boolean) Should the request should block until the execution is complete. (Default = true) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->enrich()->executePolicy($params); ---- **** @@ -64,19 +59,14 @@ $response = $client->enrich()->executePolicy($params); [[Elasticsearch_Namespaces_EnrichNamespacegetPolicy_getPolicy]] .`getPolicy()` +[[Elasticsearch_Namespaces_EnrichNamespacegetPolicy_getPolicy]] +.`getPolicy(array $params = [])` **** [source,php] ---- /* $params['name'] = (list) A comma-separated list of enrich policy names */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->enrich()->getPolicy($params); ---- **** @@ -84,6 +74,8 @@ $response = $client->enrich()->getPolicy($params); [[Elasticsearch_Namespaces_EnrichNamespaceputPolicy_putPolicy]] .`putPolicy()` +[[Elasticsearch_Namespaces_EnrichNamespaceputPolicy_putPolicy]] +.`putPolicy(array $params = [])` **** [source,php] ---- @@ -91,13 +83,6 @@ $response = $client->enrich()->getPolicy($params); $params['name'] = (string) The name of the enrich policy $params['body'] = (array) The enrich policy to register (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->enrich()->putPolicy($params); ---- **** @@ -105,18 +90,13 @@ $response = $client->enrich()->putPolicy($params); [[Elasticsearch_Namespaces_EnrichNamespacestats_stats]] .`stats()` +[[Elasticsearch_Namespaces_EnrichNamespacestats_stats]] +.`stats(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->enrich()->stats($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/EqlNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/EqlNamespace.asciidoc index 0ef84ef86..ca5b5460e 100644 --- a/docs/build/Elasticsearch/Namespaces/EqlNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/EqlNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_EqlNamespace]] === Elasticsearch\Namespaces\EqlNamespace Class EqlNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -15,26 +20,21 @@ The class defines the following methods: * <> * <> +* <> * <> [[Elasticsearch_Namespaces_EqlNamespacedelete_delete]] .`delete()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_EqlNamespacedelete_delete]] +.`delete(array $params = [])` **** [source,php] ---- /* $params['id'] = (string) The async search ID */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->eql()->delete($params); ---- **** @@ -42,7 +42,8 @@ $response = $client->eql()->delete($params); [[Elasticsearch_Namespaces_EqlNamespaceget_get]] .`get()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_EqlNamespaceget_get]] +.`get(array $params = [])` **** [source,php] ---- @@ -51,13 +52,21 @@ $params['id'] = (string) The async search ID $params['wait_for_completion_timeout'] = (time) Specify the time that the request should block waiting for the final response $params['keep_alive'] = (time) Update the time interval in which the results (partial or final) for this search will be available (Default = 5d) */ +---- +**** -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->eql()->get($params); + +[[Elasticsearch_Namespaces_EqlNamespacegetStatus_getStatus]] +.`getStatus()` +[[Elasticsearch_Namespaces_EqlNamespacegetStatus_getStatus]] +.`getStatus(array $params = [])` +**** +[source,php] +---- +/* +$params['id'] = (string) The async search ID +*/ ---- **** @@ -65,7 +74,8 @@ $response = $client->eql()->get($params); [[Elasticsearch_Namespaces_EqlNamespacesearch_search]] .`search()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_EqlNamespacesearch_search]] +.`search(array $params = [])` **** [source,php] ---- @@ -76,13 +86,6 @@ $params['keep_on_completion'] = (boolean) Control whether the response $params['keep_alive'] = (time) Update the time interval in which the results (partial or final) for this search will be available (Default = 5d) $params['body'] = (array) Eql request body. Use the `query` to limit the query scope. (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->eql()->search($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/FeaturesNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/FeaturesNamespace.asciidoc new file mode 100644 index 000000000..553fa9f01 --- /dev/null +++ b/docs/build/Elasticsearch/Namespaces/FeaturesNamespace.asciidoc @@ -0,0 +1,38 @@ + + +[[Elasticsearch_Namespaces_FeaturesNamespace]] +=== Elasticsearch\Namespaces\FeaturesNamespace + + + +Class FeaturesNamespace + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) + + +*Methods* + +The class defines the following methods: + +* <> + + + +[[Elasticsearch_Namespaces_FeaturesNamespacegetFeatures_getFeatures]] +.`getFeatures()` +[[Elasticsearch_Namespaces_FeaturesNamespacegetFeatures_getFeatures]] +.`getFeatures(array $params = [])` +**** +[source,php] +---- +/* +$params['master_timeout'] = (time) Explicit operation timeout for connection to master node +*/ +---- +**** + + diff --git a/docs/build/Elasticsearch/Namespaces/GraphNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/GraphNamespace.asciidoc index eadaeec6c..40e41b676 100644 --- a/docs/build/Elasticsearch/Namespaces/GraphNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/GraphNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_GraphNamespace]] === Elasticsearch\Namespaces\GraphNamespace Class GraphNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -19,6 +24,8 @@ The class defines the following methods: [[Elasticsearch_Namespaces_GraphNamespaceexplore_explore]] .`explore()` +[[Elasticsearch_Namespaces_GraphNamespaceexplore_explore]] +.`explore(array $params = [])` **** [source,php] ---- @@ -29,13 +36,6 @@ $params['routing'] = (string) Specific routing value $params['timeout'] = (time) Explicit operation timeout $params['body'] = (array) Graph Query DSL */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->graph()->explore($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/IlmNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/IlmNamespace.asciidoc index 0cc0cdbf0..a05e7e166 100644 --- a/docs/build/Elasticsearch/Namespaces/IlmNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/IlmNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_IlmNamespace]] === Elasticsearch\Namespaces\IlmNamespace Class IlmNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -28,19 +33,14 @@ The class defines the following methods: [[Elasticsearch_Namespaces_IlmNamespacedeleteLifecycle_deleteLifecycle]] .`deleteLifecycle()` +[[Elasticsearch_Namespaces_IlmNamespacedeleteLifecycle_deleteLifecycle]] +.`deleteLifecycle(array $params = [])` **** [source,php] ---- /* $params['policy'] = (string) The name of the index lifecycle policy */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ilm()->deleteLifecycle($params); ---- **** @@ -48,6 +48,8 @@ $response = $client->ilm()->deleteLifecycle($params); [[Elasticsearch_Namespaces_IlmNamespaceexplainLifecycle_explainLifecycle]] .`explainLifecycle()` +[[Elasticsearch_Namespaces_IlmNamespaceexplainLifecycle_explainLifecycle]] +.`explainLifecycle(array $params = [])` **** [source,php] ---- @@ -56,13 +58,6 @@ $params['index'] = (string) The name of the index to explain $params['only_managed'] = (boolean) filters the indices included in the response to ones managed by ILM $params['only_errors'] = (boolean) filters the indices included in the response to ones in an ILM error state, implies only_managed */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ilm()->explainLifecycle($params); ---- **** @@ -70,19 +65,14 @@ $response = $client->ilm()->explainLifecycle($params); [[Elasticsearch_Namespaces_IlmNamespacegetLifecycle_getLifecycle]] .`getLifecycle()` +[[Elasticsearch_Namespaces_IlmNamespacegetLifecycle_getLifecycle]] +.`getLifecycle(array $params = [])` **** [source,php] ---- /* $params['policy'] = (string) The name of the index lifecycle policy */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ilm()->getLifecycle($params); ---- **** @@ -90,18 +80,13 @@ $response = $client->ilm()->getLifecycle($params); [[Elasticsearch_Namespaces_IlmNamespacegetStatus_getStatus]] .`getStatus()` +[[Elasticsearch_Namespaces_IlmNamespacegetStatus_getStatus]] +.`getStatus(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ilm()->getStatus($params); ---- **** @@ -109,6 +94,8 @@ $response = $client->ilm()->getStatus($params); [[Elasticsearch_Namespaces_IlmNamespacemoveToStep_moveToStep]] .`moveToStep()` +[[Elasticsearch_Namespaces_IlmNamespacemoveToStep_moveToStep]] +.`moveToStep(array $params = [])` **** [source,php] ---- @@ -116,13 +103,6 @@ $response = $client->ilm()->getStatus($params); $params['index'] = (string) The name of the index whose lifecycle step is to change $params['body'] = (array) The new lifecycle step to move to */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ilm()->moveToStep($params); ---- **** @@ -130,6 +110,8 @@ $response = $client->ilm()->moveToStep($params); [[Elasticsearch_Namespaces_IlmNamespaceputLifecycle_putLifecycle]] .`putLifecycle()` +[[Elasticsearch_Namespaces_IlmNamespaceputLifecycle_putLifecycle]] +.`putLifecycle(array $params = [])` **** [source,php] ---- @@ -137,13 +119,6 @@ $response = $client->ilm()->moveToStep($params); $params['policy'] = (string) The name of the index lifecycle policy $params['body'] = (array) The lifecycle policy definition to register */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ilm()->putLifecycle($params); ---- **** @@ -151,19 +126,14 @@ $response = $client->ilm()->putLifecycle($params); [[Elasticsearch_Namespaces_IlmNamespaceremovePolicy_removePolicy]] .`removePolicy()` +[[Elasticsearch_Namespaces_IlmNamespaceremovePolicy_removePolicy]] +.`removePolicy(array $params = [])` **** [source,php] ---- /* $params['index'] = (string) The name of the index to remove policy on */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ilm()->removePolicy($params); ---- **** @@ -171,19 +141,14 @@ $response = $client->ilm()->removePolicy($params); [[Elasticsearch_Namespaces_IlmNamespaceretry_retry]] .`retry()` +[[Elasticsearch_Namespaces_IlmNamespaceretry_retry]] +.`retry(array $params = [])` **** [source,php] ---- /* $params['index'] = (string) The name of the indices (comma-separated) whose failed lifecycle step is to be retry */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ilm()->retry($params); ---- **** @@ -191,18 +156,13 @@ $response = $client->ilm()->retry($params); [[Elasticsearch_Namespaces_IlmNamespacestart_start]] .`start()` +[[Elasticsearch_Namespaces_IlmNamespacestart_start]] +.`start(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ilm()->start($params); ---- **** @@ -210,18 +170,13 @@ $response = $client->ilm()->start($params); [[Elasticsearch_Namespaces_IlmNamespacestop_stop]] .`stop()` +[[Elasticsearch_Namespaces_IlmNamespacestop_stop]] +.`stop(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ilm()->stop($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/IndicesNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/IndicesNamespace.asciidoc index e6e947ce0..eaf8f9168 100644 --- a/docs/build/Elasticsearch/Namespaces/IndicesNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/IndicesNamespace.asciidoc @@ -1,11 +1,17 @@ -[discrete] + + [[Elasticsearch_Namespaces_IndicesNamespace]] === Elasticsearch\Namespaces\IndicesNamespace Class IndicesNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -18,8 +24,11 @@ The class defines the following methods: * <> * <> * <> +* <> +* <> * <> * <> +* <> * <> * <> * <> @@ -30,15 +39,19 @@ The class defines the following methods: * <> * <> * <> +* <> * <> * <> +* <> * <> * <> * <> * <> * <> * <> +* <> * <> +* <> * <> * <> * <> @@ -46,6 +59,7 @@ The class defines the following methods: * <> * <> * <> +* <> * <> * <> * <> @@ -55,22 +69,18 @@ The class defines the following methods: * <> * <> * <> +* <> * <> * <> * <> -* <> -* <> -* <> -* <> -* <> -* <> -* <> * <> [[Elasticsearch_Namespaces_IndicesNamespaceaddBlock_addBlock]] .`addBlock()` +[[Elasticsearch_Namespaces_IndicesNamespaceaddBlock_addBlock]] +.`addBlock(array $params = [])` **** [source,php] ---- @@ -83,13 +93,6 @@ $params['ignore_unavailable'] = (boolean) Whether specified concrete indices sho $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->addBlock($params); ---- **** @@ -97,6 +100,8 @@ $response = $client->indices()->addBlock($params); [[Elasticsearch_Namespaces_IndicesNamespaceanalyze_analyze]] .`analyze()` +[[Elasticsearch_Namespaces_IndicesNamespaceanalyze_analyze]] +.`analyze(array $params = [])` **** [source,php] ---- @@ -104,13 +109,6 @@ $response = $client->indices()->addBlock($params); $params['index'] = (string) The name of the index to scope the operation $params['body'] = (array) Define analyzer/tokenizer parameters and the text on which the analysis should be performed */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->analyze($params); ---- **** @@ -118,6 +116,8 @@ $response = $client->indices()->analyze($params); [[Elasticsearch_Namespaces_IndicesNamespaceclearCache_clearCache]] .`clearCache()` +[[Elasticsearch_Namespaces_IndicesNamespaceclearCache_clearCache]] +.`clearCache(array $params = [])` **** [source,php] ---- @@ -131,13 +131,6 @@ $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indice $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open) $params['request'] = (boolean) Clear request cache */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->clearCache($params); ---- **** @@ -145,6 +138,8 @@ $response = $client->indices()->clearCache($params); [[Elasticsearch_Namespaces_IndicesNamespaceclone_clone]] .`clone()` +[[Elasticsearch_Namespaces_IndicesNamespaceclone_clone]] +.`clone(array $params = [])` **** [source,php] ---- @@ -155,13 +150,6 @@ $params['timeout'] = (time) Explicit operation timeout $params['master_timeout'] = (time) Specify timeout for connection to master $params['wait_for_active_shards'] = (string) Set the number of active shards to wait for on the cloned index before the operation returns. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->clone($params); ---- **** @@ -169,6 +157,8 @@ $response = $client->indices()->clone($params); [[Elasticsearch_Namespaces_IndicesNamespaceclose_close]] .`close()` +[[Elasticsearch_Namespaces_IndicesNamespaceclose_close]] +.`close(array $params = [])` **** [source,php] ---- @@ -179,15 +169,8 @@ $params['master_timeout'] = (time) Specify timeout for connection to mas $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open) -$params['wait_for_active_shards'] = (string) Sets the number of active shards to wait for before the operation returns. +$params['wait_for_active_shards'] = (string) Sets the number of active shards to wait for before the operation returns. Set to `index-setting` to wait according to the index setting `index.write.wait_for_active_shards`, or `all` to wait for all shards, or an integer. Defaults to `0`. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->close($params); ---- **** @@ -195,6 +178,8 @@ $response = $client->indices()->close($params); [[Elasticsearch_Namespaces_IndicesNamespacecreate_create]] .`create()` +[[Elasticsearch_Namespaces_IndicesNamespacecreate_create]] +.`create(array $params = [])` **** [source,php] ---- @@ -202,13 +187,36 @@ $response = $client->indices()->close($params); $params['index'] = (string) The name of the index $params['include_type_name'] = (boolean) Whether a type should be expected in the body of the mappings. */ +---- +**** + -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->indices()->create($params); +[[Elasticsearch_Namespaces_IndicesNamespacecreateDataStream_createDataStream]] +.`createDataStream()` +[[Elasticsearch_Namespaces_IndicesNamespacecreateDataStream_createDataStream]] +.`createDataStream(array $params = [])` +**** +[source,php] +---- +/* +$params['name'] = (string) The name of the data stream +*/ +---- +**** + + + +[[Elasticsearch_Namespaces_IndicesNamespacedataStreamsStats_dataStreamsStats]] +.`dataStreamsStats()` +[[Elasticsearch_Namespaces_IndicesNamespacedataStreamsStats_dataStreamsStats]] +.`dataStreamsStats(array $params = [])` +**** +[source,php] +---- +/* +$params['name'] = (list) A comma-separated list of data stream names; use `_all` or empty string to perform the operation on all data streams +*/ ---- **** @@ -216,6 +224,8 @@ $response = $client->indices()->create($params); [[Elasticsearch_Namespaces_IndicesNamespacedelete_delete]] .`delete()` +[[Elasticsearch_Namespaces_IndicesNamespacedelete_delete]] +.`delete(array $params = [])` **** [source,php] ---- @@ -227,13 +237,6 @@ $params['ignore_unavailable'] = (boolean) Ignore unavailable indexes (default: f $params['allow_no_indices'] = (boolean) Ignore if a wildcard expression resolves to no concrete indices (default: false) $params['expand_wildcards'] = (enum) Whether wildcard expressions should get expanded to open or closed indices (default: open) (Options = open,closed,hidden,none,all) (Default = open) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->delete($params); ---- **** @@ -241,6 +244,8 @@ $response = $client->indices()->delete($params); [[Elasticsearch_Namespaces_IndicesNamespacedeleteAlias_deleteAlias]] .`deleteAlias()` +[[Elasticsearch_Namespaces_IndicesNamespacedeleteAlias_deleteAlias]] +.`deleteAlias(array $params = [])` **** [source,php] ---- @@ -250,13 +255,22 @@ $params['name'] = (list) A comma-separated list of aliases to delete ( $params['timeout'] = (time) Explicit timestamp for the document $params['master_timeout'] = (time) Specify timeout for connection to master */ +---- +**** + -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->indices()->deleteAlias($params); +[[Elasticsearch_Namespaces_IndicesNamespacedeleteDataStream_deleteDataStream]] +.`deleteDataStream()` +[[Elasticsearch_Namespaces_IndicesNamespacedeleteDataStream_deleteDataStream]] +.`deleteDataStream(array $params = [])` +**** +[source,php] +---- +/* +$params['name'] = (list) A comma-separated list of data streams to delete; use `*` to delete all data streams +$params['expand_wildcards'] = (enum) Whether wildcard expressions should get expanded to open or closed indices (default: open) (Options = open,closed,hidden,none,all) (Default = open) +*/ ---- **** @@ -264,7 +278,8 @@ $response = $client->indices()->deleteAlias($params); [[Elasticsearch_Namespaces_IndicesNamespacedeleteIndexTemplate_deleteIndexTemplate]] .`deleteIndexTemplate()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_IndicesNamespacedeleteIndexTemplate_deleteIndexTemplate]] +.`deleteIndexTemplate(array $params = [])` **** [source,php] ---- @@ -273,13 +288,6 @@ $params['name'] = (string) The name of the template $params['timeout'] = (time) Explicit operation timeout $params['master_timeout'] = (time) Specify timeout for connection to master */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->deleteIndexTemplate($params); ---- **** @@ -287,6 +295,8 @@ $response = $client->indices()->deleteIndexTemplate($params); [[Elasticsearch_Namespaces_IndicesNamespacedeleteTemplate_deleteTemplate]] .`deleteTemplate()` +[[Elasticsearch_Namespaces_IndicesNamespacedeleteTemplate_deleteTemplate]] +.`deleteTemplate(array $params = [])` **** [source,php] ---- @@ -295,13 +305,6 @@ $params['name'] = (string) The name of the template $params['timeout'] = (time) Explicit operation timeout $params['master_timeout'] = (time) Specify timeout for connection to master */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->deleteTemplate($params); ---- **** @@ -309,6 +312,8 @@ $response = $client->indices()->deleteTemplate($params); [[Elasticsearch_Namespaces_IndicesNamespaceexists_exists]] .`exists()` +[[Elasticsearch_Namespaces_IndicesNamespaceexists_exists]] +.`exists(array $params = [])` **** [source,php] ---- @@ -321,13 +326,6 @@ $params['expand_wildcards'] = (enum) Whether wildcard expressions should get e $params['flat_settings'] = (boolean) Return settings in flat format (default: false) $params['include_defaults'] = (boolean) Whether to return all default setting for each of the indices. (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->exists($params); ---- **** @@ -335,6 +333,8 @@ $response = $client->indices()->exists($params); [[Elasticsearch_Namespaces_IndicesNamespaceexistsAlias_existsAlias]] .`existsAlias()` +[[Elasticsearch_Namespaces_IndicesNamespaceexistsAlias_existsAlias]] +.`existsAlias(array $params = [])` **** [source,php] ---- @@ -346,13 +346,6 @@ $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indice $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = all) $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->existsAlias($params); ---- **** @@ -360,7 +353,8 @@ $response = $client->indices()->existsAlias($params); [[Elasticsearch_Namespaces_IndicesNamespaceexistsIndexTemplate_existsIndexTemplate]] .`existsIndexTemplate()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_IndicesNamespaceexistsIndexTemplate_existsIndexTemplate]] +.`existsIndexTemplate(array $params = [])` **** [source,php] ---- @@ -370,13 +364,6 @@ $params['flat_settings'] = (boolean) Return settings in flat format (default: f $params['master_timeout'] = (time) Explicit operation timeout for connection to master node $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->existsIndexTemplate($params); ---- **** @@ -384,6 +371,8 @@ $response = $client->indices()->existsIndexTemplate($params); [[Elasticsearch_Namespaces_IndicesNamespaceexistsTemplate_existsTemplate]] .`existsTemplate()` +[[Elasticsearch_Namespaces_IndicesNamespaceexistsTemplate_existsTemplate]] +.`existsTemplate(array $params = [])` **** [source,php] ---- @@ -393,13 +382,6 @@ $params['flat_settings'] = (boolean) Return settings in flat format (default: f $params['master_timeout'] = (time) Explicit operation timeout for connection to master node $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->existsTemplate($params); ---- **** @@ -407,6 +389,8 @@ $response = $client->indices()->existsTemplate($params); [[Elasticsearch_Namespaces_IndicesNamespaceexistsType_existsType]] .`existsType()` +[[Elasticsearch_Namespaces_IndicesNamespaceexistsType_existsType]] +.`existsType(array $params = [])` **** [source,php] ---- @@ -418,13 +402,6 @@ $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indice $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open) $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->existsType($params); ---- **** @@ -432,6 +409,8 @@ $response = $client->indices()->existsType($params); [[Elasticsearch_Namespaces_IndicesNamespaceflush_flush]] .`flush()` +[[Elasticsearch_Namespaces_IndicesNamespaceflush_flush]] +.`flush(array $params = [])` **** [source,php] ---- @@ -440,13 +419,6 @@ $params['index'] = (list) A comma-separated list of index names; us $params['force'] = (boolean) Whether a flush should be forced even if it is not necessarily needed ie. if no changes will be committed to the index. This is useful if transaction log IDs should be incremented even if no uncommitted changes are present. (This setting can be considered as internal) $params['wait_if_ongoing'] = (boolean) If set to true the flush operation will block until the flush can be executed if another flush operation is already executing. The default is true. If set to false the flush will be skipped iff if another flush operation is already running. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->flush($params); ---- **** @@ -454,6 +426,8 @@ $response = $client->indices()->flush($params); [[Elasticsearch_Namespaces_IndicesNamespaceflushSynced_flushSynced]] .`flushSynced()` +[[Elasticsearch_Namespaces_IndicesNamespaceflushSynced_flushSynced]] +.`flushSynced(array $params = [])` **** [source,php] ---- @@ -463,13 +437,6 @@ $params['ignore_unavailable'] = (boolean) Whether specified concrete indices sho $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,none,all) (Default = open) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->flushSynced($params); ---- **** @@ -477,6 +444,8 @@ $response = $client->indices()->flushSynced($params); [[Elasticsearch_Namespaces_IndicesNamespaceforcemerge_forcemerge]] .`forcemerge()` +[[Elasticsearch_Namespaces_IndicesNamespaceforcemerge_forcemerge]] +.`forcemerge(array $params = [])` **** [source,php] ---- @@ -489,13 +458,27 @@ $params['expand_wildcards'] = (enum) Whether to expand wildcard expression t $params['max_num_segments'] = (number) The number of segments the index should be merged into (default: dynamic) $params['only_expunge_deletes'] = (boolean) Specify whether the operation should only expunge deleted documents */ +---- +**** -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->indices()->forcemerge($params); + +[[Elasticsearch_Namespaces_IndicesNamespacefreeze_freeze]] +.`freeze()` +[[Elasticsearch_Namespaces_IndicesNamespacefreeze_freeze]] +.`freeze(array $params = [])` +**** +[source,php] +---- +/* +$params['index'] = (string) The name of the index to freeze +$params['timeout'] = (time) Explicit operation timeout +$params['master_timeout'] = (time) Specify timeout for connection to master +$params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) +$params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) +$params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = closed) +$params['wait_for_active_shards'] = (string) Sets the number of active shards to wait for before the operation returns. +*/ ---- **** @@ -503,6 +486,8 @@ $response = $client->indices()->forcemerge($params); [[Elasticsearch_Namespaces_IndicesNamespaceget_get]] .`get()` +[[Elasticsearch_Namespaces_IndicesNamespaceget_get]] +.`get(array $params = [])` **** [source,php] ---- @@ -517,13 +502,6 @@ $params['flat_settings'] = (boolean) Return settings in flat format (defaul $params['include_defaults'] = (boolean) Whether to return all default setting for each of the indices. (Default = false) $params['master_timeout'] = (time) Specify timeout for connection to master */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->get($params); ---- **** @@ -531,6 +509,8 @@ $response = $client->indices()->get($params); [[Elasticsearch_Namespaces_IndicesNamespacegetAlias_getAlias]] .`getAlias()` +[[Elasticsearch_Namespaces_IndicesNamespacegetAlias_getAlias]] +.`getAlias(array $params = [])` **** [source,php] ---- @@ -542,13 +522,22 @@ $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indice $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = all) $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) */ +---- +**** + -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->indices()->getAlias($params); +[[Elasticsearch_Namespaces_IndicesNamespacegetDataStream_getDataStream]] +.`getDataStream()` +[[Elasticsearch_Namespaces_IndicesNamespacegetDataStream_getDataStream]] +.`getDataStream(array $params = [])` +**** +[source,php] +---- +/* +$params['name'] = (list) A comma-separated list of data streams to get; use `*` to get all data streams +$params['expand_wildcards'] = (enum) Whether wildcard expressions should get expanded to open or closed indices (default: open) (Options = open,closed,hidden,none,all) (Default = open) +*/ ---- **** @@ -556,6 +545,8 @@ $response = $client->indices()->getAlias($params); [[Elasticsearch_Namespaces_IndicesNamespacegetFieldMapping_getFieldMapping]] .`getFieldMapping()` +[[Elasticsearch_Namespaces_IndicesNamespacegetFieldMapping_getFieldMapping]] +.`getFieldMapping(array $params = [])` **** [source,php] ---- @@ -565,13 +556,6 @@ $params['index'] = (list) A comma-separated list of index names $params['type'] = DEPRECATED (list) A comma-separated list of document types $params['include_type_name'] = (boolean) Whether a type should be returned in the body of the mappings. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->getFieldMapping($params); ---- **** @@ -579,7 +563,8 @@ $response = $client->indices()->getFieldMapping($params); [[Elasticsearch_Namespaces_IndicesNamespacegetIndexTemplate_getIndexTemplate]] .`getIndexTemplate()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_IndicesNamespacegetIndexTemplate_getIndexTemplate]] +.`getIndexTemplate(array $params = [])` **** [source,php] ---- @@ -589,13 +574,6 @@ $params['flat_settings'] = (boolean) Return settings in flat format (default: f $params['master_timeout'] = (time) Explicit operation timeout for connection to master node $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->getIndexTemplate($params); ---- **** @@ -603,6 +581,8 @@ $response = $client->indices()->getIndexTemplate($params); [[Elasticsearch_Namespaces_IndicesNamespacegetMapping_getMapping]] .`getMapping()` +[[Elasticsearch_Namespaces_IndicesNamespacegetMapping_getMapping]] +.`getMapping(array $params = [])` **** [source,php] ---- @@ -616,13 +596,6 @@ $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to $params['master_timeout'] = (time) Specify timeout for connection to master $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->getMapping($params); ---- **** @@ -630,6 +603,8 @@ $response = $client->indices()->getMapping($params); [[Elasticsearch_Namespaces_IndicesNamespacegetSettings_getSettings]] .`getSettings()` +[[Elasticsearch_Namespaces_IndicesNamespacegetSettings_getSettings]] +.`getSettings(array $params = [])` **** [source,php] ---- @@ -644,13 +619,6 @@ $params['flat_settings'] = (boolean) Return settings in flat format (defaul $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) $params['include_defaults'] = (boolean) Whether to return all default setting for each of the indices. (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->getSettings($params); ---- **** @@ -658,6 +626,8 @@ $response = $client->indices()->getSettings($params); [[Elasticsearch_Namespaces_IndicesNamespacegetTemplate_getTemplate]] .`getTemplate()` +[[Elasticsearch_Namespaces_IndicesNamespacegetTemplate_getTemplate]] +.`getTemplate(array $params = [])` **** [source,php] ---- @@ -665,13 +635,6 @@ $response = $client->indices()->getSettings($params); $params['name'] = (list) The comma separated names of the index templates $params['include_type_name'] = (boolean) Whether a type should be returned in the body of the mappings. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->getTemplate($params); ---- **** @@ -679,6 +642,8 @@ $response = $client->indices()->getTemplate($params); [[Elasticsearch_Namespaces_IndicesNamespacegetUpgrade_getUpgrade]] .`getUpgrade()` +[[Elasticsearch_Namespaces_IndicesNamespacegetUpgrade_getUpgrade]] +.`getUpgrade(array $params = [])` **** [source,php] ---- @@ -688,13 +653,21 @@ $params['ignore_unavailable'] = (boolean) Whether specified concrete indices sho $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open) */ +---- +**** -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->indices()->getUpgrade($params); + +[[Elasticsearch_Namespaces_IndicesNamespacemigrateToDataStream_migrateToDataStream]] +.`migrateToDataStream()` +[[Elasticsearch_Namespaces_IndicesNamespacemigrateToDataStream_migrateToDataStream]] +.`migrateToDataStream(array $params = [])` +**** +[source,php] +---- +/* +$params['name'] = (string) The name of the alias to migrate +*/ ---- **** @@ -702,6 +675,8 @@ $response = $client->indices()->getUpgrade($params); [[Elasticsearch_Namespaces_IndicesNamespaceopen_open]] .`open()` +[[Elasticsearch_Namespaces_IndicesNamespaceopen_open]] +.`open(array $params = [])` **** [source,php] ---- @@ -714,13 +689,21 @@ $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard in $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = closed) $params['wait_for_active_shards'] = (string) Sets the number of active shards to wait for before the operation returns. */ +---- +**** -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->indices()->open($params); + +[[Elasticsearch_Namespaces_IndicesNamespacepromoteDataStream_promoteDataStream]] +.`promoteDataStream()` +[[Elasticsearch_Namespaces_IndicesNamespacepromoteDataStream_promoteDataStream]] +.`promoteDataStream(array $params = [])` +**** +[source,php] +---- +/* +$params['name'] = (string) The name of the data stream +*/ ---- **** @@ -728,6 +711,8 @@ $response = $client->indices()->open($params); [[Elasticsearch_Namespaces_IndicesNamespaceputAlias_putAlias]] .`putAlias()` +[[Elasticsearch_Namespaces_IndicesNamespaceputAlias_putAlias]] +.`putAlias(array $params = [])` **** [source,php] ---- @@ -738,13 +723,6 @@ $params['timeout'] = (time) Explicit timestamp for the document $params['master_timeout'] = (time) Specify timeout for connection to master $params['body'] = (array) The settings for the alias, such as `routing` or `filter` */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->putAlias($params); ---- **** @@ -752,7 +730,8 @@ $response = $client->indices()->putAlias($params); [[Elasticsearch_Namespaces_IndicesNamespaceputIndexTemplate_putIndexTemplate]] .`putIndexTemplate()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_IndicesNamespaceputIndexTemplate_putIndexTemplate]] +.`putIndexTemplate(array $params = [])` **** [source,php] ---- @@ -763,13 +742,6 @@ $params['cause'] = (string) User defined reason for creating/updating t $params['master_timeout'] = (time) Specify timeout for connection to master $params['body'] = (array) The template definition (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->putIndexTemplate($params); ---- **** @@ -777,19 +749,14 @@ $response = $client->indices()->putIndexTemplate($params); [[Elasticsearch_Namespaces_IndicesNamespaceputMapping_putMapping]] .`putMapping()` +[[Elasticsearch_Namespaces_IndicesNamespaceputMapping_putMapping]] +.`putMapping(array $params = [])` **** [source,php] ---- /* $params['index'] = (list) A comma-separated list of index names the mapping should be added to (supports wildcards); use `_all` or omit to add the mapping on all indices. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->putMapping($params); ---- **** @@ -797,6 +764,8 @@ $response = $client->indices()->putMapping($params); [[Elasticsearch_Namespaces_IndicesNamespaceputSettings_putSettings]] .`putSettings()` +[[Elasticsearch_Namespaces_IndicesNamespaceputSettings_putSettings]] +.`putSettings(array $params = [])` **** [source,php] ---- @@ -811,13 +780,6 @@ $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to $params['flat_settings'] = (boolean) Return settings in flat format (default: false) $params['body'] = (array) The index settings to be updated (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->putSettings($params); ---- **** @@ -825,6 +787,8 @@ $response = $client->indices()->putSettings($params); [[Elasticsearch_Namespaces_IndicesNamespaceputTemplate_putTemplate]] .`putTemplate()` +[[Elasticsearch_Namespaces_IndicesNamespaceputTemplate_putTemplate]] +.`putTemplate(array $params = [])` **** [source,php] ---- @@ -832,13 +796,6 @@ $response = $client->indices()->putSettings($params); $params['name'] = (string) The name of the template $params['include_type_name'] = (boolean) Whether a type should be returned in the body of the mappings. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->putTemplate($params); ---- **** @@ -846,6 +803,8 @@ $response = $client->indices()->putTemplate($params); [[Elasticsearch_Namespaces_IndicesNamespacerecovery_recovery]] .`recovery()` +[[Elasticsearch_Namespaces_IndicesNamespacerecovery_recovery]] +.`recovery(array $params = [])` **** [source,php] ---- @@ -854,13 +813,6 @@ $params['index'] = (list) A comma-separated list of index names; use `_all $params['detailed'] = (boolean) Whether to display detailed information about shard recovery (Default = false) $params['active_only'] = (boolean) Display only those recoveries that are currently on-going (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->recovery($params); ---- **** @@ -868,6 +820,8 @@ $response = $client->indices()->recovery($params); [[Elasticsearch_Namespaces_IndicesNamespacerefresh_refresh]] .`refresh()` +[[Elasticsearch_Namespaces_IndicesNamespacerefresh_refresh]] +.`refresh(array $params = [])` **** [source,php] ---- @@ -877,13 +831,24 @@ $params['ignore_unavailable'] = (boolean) Whether specified concrete indices sho $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open) */ +---- +**** + -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->indices()->refresh($params); +[[Elasticsearch_Namespaces_IndicesNamespacereloadSearchAnalyzers_reloadSearchAnalyzers]] +.`reloadSearchAnalyzers()` +[[Elasticsearch_Namespaces_IndicesNamespacereloadSearchAnalyzers_reloadSearchAnalyzers]] +.`reloadSearchAnalyzers(array $params = [])` +**** +[source,php] +---- +/* +$params['index'] = (list) A comma-separated list of index names to reload analyzers for +$params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) +$params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) +$params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open) +*/ ---- **** @@ -892,6 +857,8 @@ $response = $client->indices()->refresh($params); [[Elasticsearch_Namespaces_IndicesNamespaceresolveIndex_resolveIndex]] .`resolveIndex()` *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_IndicesNamespaceresolveIndex_resolveIndex]] +.`resolveIndex(array $params = [])` **** [source,php] ---- @@ -899,13 +866,6 @@ $response = $client->indices()->refresh($params); $params['name'] = (list) A comma-separated list of names or wildcard expressions $params['expand_wildcards'] = (enum) Whether wildcard expressions should get expanded to open or closed indices (default: open) (Options = open,closed,hidden,none,all) (Default = open) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->resolveIndex($params); ---- **** @@ -913,6 +873,8 @@ $response = $client->indices()->resolveIndex($params); [[Elasticsearch_Namespaces_IndicesNamespacerollover_rollover]] .`rollover()` +[[Elasticsearch_Namespaces_IndicesNamespacerollover_rollover]] +.`rollover(array $params = [])` **** [source,php] ---- @@ -921,13 +883,6 @@ $params['alias'] = (string) The name of the alias to rollover ( $params['new_index'] = (string) The name of the rollover index $params['include_type_name'] = (boolean) Whether a type should be included in the body of the mappings. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->rollover($params); ---- **** @@ -935,6 +890,8 @@ $response = $client->indices()->rollover($params); [[Elasticsearch_Namespaces_IndicesNamespacesegments_segments]] .`segments()` +[[Elasticsearch_Namespaces_IndicesNamespacesegments_segments]] +.`segments(array $params = [])` **** [source,php] ---- @@ -945,13 +902,6 @@ $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indice $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open) $params['verbose'] = (boolean) Includes detailed memory usage by Lucene. (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->segments($params); ---- **** @@ -959,6 +909,8 @@ $response = $client->indices()->segments($params); [[Elasticsearch_Namespaces_IndicesNamespaceshardStores_shardStores]] .`shardStores()` +[[Elasticsearch_Namespaces_IndicesNamespaceshardStores_shardStores]] +.`shardStores(array $params = [])` **** [source,php] ---- @@ -969,13 +921,6 @@ $params['ignore_unavailable'] = (boolean) Whether specified concrete indices sho $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->shardStores($params); ---- **** @@ -983,6 +928,8 @@ $response = $client->indices()->shardStores($params); [[Elasticsearch_Namespaces_IndicesNamespaceshrink_shrink]] .`shrink()` +[[Elasticsearch_Namespaces_IndicesNamespaceshrink_shrink]] +.`shrink(array $params = [])` **** [source,php] ---- @@ -994,13 +941,6 @@ $params['timeout'] = (time) Explicit operation timeout $params['master_timeout'] = (time) Specify timeout for connection to master $params['wait_for_active_shards'] = (string) Set the number of active shards to wait for on the shrunken index before the operation returns. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->shrink($params); ---- **** @@ -1008,7 +948,8 @@ $response = $client->indices()->shrink($params); [[Elasticsearch_Namespaces_IndicesNamespacesimulateIndexTemplate_simulateIndexTemplate]] .`simulateIndexTemplate()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_IndicesNamespacesimulateIndexTemplate_simulateIndexTemplate]] +.`simulateIndexTemplate(array $params = [])` **** [source,php] ---- @@ -1019,13 +960,6 @@ $params['cause'] = (string) User defined reason for dry-run creating th $params['master_timeout'] = (time) Specify timeout for connection to master $params['body'] = (array) New index template definition, which will be included in the simulation, as if it already exists in the system */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->simulateIndexTemplate($params); ---- **** @@ -1033,7 +967,8 @@ $response = $client->indices()->simulateIndexTemplate($params); [[Elasticsearch_Namespaces_IndicesNamespacesimulateTemplate_simulateTemplate]] .`simulateTemplate()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_IndicesNamespacesimulateTemplate_simulateTemplate]] +.`simulateTemplate(array $params = [])` **** [source,php] ---- @@ -1044,13 +979,6 @@ $params['cause'] = (string) User defined reason for dry-run creating th $params['master_timeout'] = (time) Specify timeout for connection to master $params['body'] = (array) New index template definition to be simulated, if no index template name is specified */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->simulateTemplate($params); ---- **** @@ -1058,6 +986,8 @@ $response = $client->indices()->simulateTemplate($params); [[Elasticsearch_Namespaces_IndicesNamespacesplit_split]] .`split()` +[[Elasticsearch_Namespaces_IndicesNamespacesplit_split]] +.`split(array $params = [])` **** [source,php] ---- @@ -1069,13 +999,6 @@ $params['timeout'] = (time) Explicit operation timeout $params['master_timeout'] = (time) Specify timeout for connection to master $params['wait_for_active_shards'] = (string) Set the number of active shards to wait for on the shrunken index before the operation returns. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->split($params); ---- **** @@ -1083,19 +1006,35 @@ $response = $client->indices()->split($params); [[Elasticsearch_Namespaces_IndicesNamespacestats_stats]] .`stats()` +[[Elasticsearch_Namespaces_IndicesNamespacestats_stats]] +.`stats(array $params = [])` **** [source,php] ---- /* $params['metric'] = (list) Limit the information returned the specific metrics. */ +---- +**** + -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->indices()->stats($params); +[[Elasticsearch_Namespaces_IndicesNamespaceunfreeze_unfreeze]] +.`unfreeze()` +[[Elasticsearch_Namespaces_IndicesNamespaceunfreeze_unfreeze]] +.`unfreeze(array $params = [])` +**** +[source,php] +---- +/* +$params['index'] = (string) The name of the index to unfreeze +$params['timeout'] = (time) Explicit operation timeout +$params['master_timeout'] = (time) Specify timeout for connection to master +$params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) +$params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) +$params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = closed) +$params['wait_for_active_shards'] = (string) Sets the number of active shards to wait for before the operation returns. +*/ ---- **** @@ -1103,6 +1042,8 @@ $response = $client->indices()->stats($params); [[Elasticsearch_Namespaces_IndicesNamespaceupdateAliases_updateAliases]] .`updateAliases()` +[[Elasticsearch_Namespaces_IndicesNamespaceupdateAliases_updateAliases]] +.`updateAliases(array $params = [])` **** [source,php] ---- @@ -1111,13 +1052,6 @@ $params['timeout'] = (time) Request timeout $params['master_timeout'] = (time) Specify timeout for connection to master $params['body'] = (array) The definition of `actions` to perform (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->updateAliases($params); ---- **** @@ -1125,6 +1059,8 @@ $response = $client->indices()->updateAliases($params); [[Elasticsearch_Namespaces_IndicesNamespaceupgrade_upgrade]] .`upgrade()` +[[Elasticsearch_Namespaces_IndicesNamespaceupgrade_upgrade]] +.`upgrade(array $params = [])` **** [source,php] ---- @@ -1136,13 +1072,6 @@ $params['ignore_unavailable'] = (boolean) Whether specified concrete indices $params['wait_for_completion'] = (boolean) Specify whether the request should block until the all segments are upgraded (default: false) $params['only_ancient_segments'] = (boolean) If true, only ancient (an older Lucene major release) segments will be upgraded */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->upgrade($params); ---- **** @@ -1150,6 +1079,8 @@ $response = $client->indices()->upgrade($params); [[Elasticsearch_Namespaces_IndicesNamespacevalidateQuery_validateQuery]] .`validateQuery()` +[[Elasticsearch_Namespaces_IndicesNamespacevalidateQuery_validateQuery]] +.`validateQuery(array $params = [])` **** [source,php] ---- @@ -1168,168 +1099,6 @@ $params['df'] = (string) The field to use as default where no fi $params['lenient'] = (boolean) Specify whether format-based query failures (such as providing text to a numeric field) should be ignored $params['rewrite'] = (boolean) Provide a more detailed explanation showing the actual Lucene query that will be executed. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->validateQuery($params); ----- -**** - - - -[[Elasticsearch_Namespaces_IndicesNamespacecreateDataStream_createDataStream]] -.`createDataStream()` -**** -[source,php] ----- -/* -$params['name'] = (string) The name of the data stream -*/ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->createDataStream($params); ----- -**** - - - -[[Elasticsearch_Namespaces_IndicesNamespacedataStreamsStats_dataStreamsStats]] -.`dataStreamsStats()` -**** -[source,php] ----- -/* -$params['name'] = (list) A comma-separated list of data stream names; use `_all` or empty string to perform the operation on all data streams -*/ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->dataStreamsStats($params); ----- -**** - - - -[[Elasticsearch_Namespaces_IndicesNamespacedeleteDataStream_deleteDataStream]] -.`deleteDataStream()` -**** -[source,php] ----- -/* -$params['name'] = (list) A comma-separated list of data streams to delete; use `*` to delete all data streams -*/ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->deleteDataStream($params); ----- -**** - - - -[[Elasticsearch_Namespaces_IndicesNamespacefreeze_freeze]] -.`freeze()` -**** -[source,php] ----- -/* -$params['index'] = (string) The name of the index to freeze -$params['timeout'] = (time) Explicit operation timeout -$params['master_timeout'] = (time) Specify timeout for connection to master -$params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) -$params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) -$params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = closed) -$params['wait_for_active_shards'] = (string) Sets the number of active shards to wait for before the operation returns. -*/ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->freeze($params); ----- -**** - - - -[[Elasticsearch_Namespaces_IndicesNamespacegetDataStream_getDataStream]] -.`getDataStream()` -**** -[source,php] ----- -/* -$params['name'] = (list) A comma-separated list of data streams to get; use `*` to get all data streams -*/ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->getDataStream($params); ----- -**** - - - -[[Elasticsearch_Namespaces_IndicesNamespacereloadSearchAnalyzers_reloadSearchAnalyzers]] -.`reloadSearchAnalyzers()` -**** -[source,php] ----- -/* -$params['index'] = (list) A comma-separated list of index names to reload analyzers for -$params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) -$params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) -$params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open) -*/ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->reloadSearchAnalyzers($params); ----- -**** - - - -[[Elasticsearch_Namespaces_IndicesNamespaceunfreeze_unfreeze]] -.`unfreeze()` -**** -[source,php] ----- -/* -$params['index'] = (string) The name of the index to unfreeze -$params['timeout'] = (time) Explicit operation timeout -$params['master_timeout'] = (time) Specify timeout for connection to master -$params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) -$params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) -$params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = closed) -$params['wait_for_active_shards'] = (string) Sets the number of active shards to wait for before the operation returns. -*/ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->unfreeze($params); ---- **** @@ -1337,19 +1106,14 @@ $response = $client->indices()->unfreeze($params); [[Elasticsearch_Namespaces_IndicesNamespacegetAliases_getAliases]] .`getAliases()` +[[Elasticsearch_Namespaces_IndicesNamespacegetAliases_getAliases]] +.`getAliases(array $params = [])` **** [source,php] ---- /* Alias function to getAlias() */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->indices()->getAliases($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/IngestNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/IngestNamespace.asciidoc index e855fa5a7..a0fb09011 100644 --- a/docs/build/Elasticsearch/Namespaces/IngestNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/IngestNamespace.asciidoc @@ -1,11 +1,17 @@ -[discrete] + + [[Elasticsearch_Namespaces_IngestNamespace]] === Elasticsearch\Namespaces\IngestNamespace Class IngestNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -22,6 +28,8 @@ The class defines the following methods: [[Elasticsearch_Namespaces_IngestNamespacedeletePipeline_deletePipeline]] .`deletePipeline()` +[[Elasticsearch_Namespaces_IngestNamespacedeletePipeline_deletePipeline]] +.`deletePipeline(array $params = [])` **** [source,php] ---- @@ -30,13 +38,6 @@ $params['id'] = (string) Pipeline ID $params['master_timeout'] = (time) Explicit operation timeout for connection to master node $params['timeout'] = (time) Explicit operation timeout */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ingest()->deletePipeline($params); ---- **** @@ -44,6 +45,8 @@ $response = $client->ingest()->deletePipeline($params); [[Elasticsearch_Namespaces_IngestNamespacegetPipeline_getPipeline]] .`getPipeline()` +[[Elasticsearch_Namespaces_IngestNamespacegetPipeline_getPipeline]] +.`getPipeline(array $params = [])` **** [source,php] ---- @@ -51,13 +54,6 @@ $response = $client->ingest()->deletePipeline($params); $params['id'] = (string) Comma separated list of pipeline ids. Wildcards supported $params['master_timeout'] = (time) Explicit operation timeout for connection to master node */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ingest()->getPipeline($params); ---- **** @@ -65,18 +61,13 @@ $response = $client->ingest()->getPipeline($params); [[Elasticsearch_Namespaces_IngestNamespaceprocessorGrok_processorGrok]] .`processorGrok()` +[[Elasticsearch_Namespaces_IngestNamespaceprocessorGrok_processorGrok]] +.`processorGrok(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ingest()->processorGrok($params); ---- **** @@ -84,6 +75,8 @@ $response = $client->ingest()->processorGrok($params); [[Elasticsearch_Namespaces_IngestNamespaceputPipeline_putPipeline]] .`putPipeline()` +[[Elasticsearch_Namespaces_IngestNamespaceputPipeline_putPipeline]] +.`putPipeline(array $params = [])` **** [source,php] ---- @@ -93,13 +86,6 @@ $params['master_timeout'] = (time) Explicit operation timeout for connection to $params['timeout'] = (time) Explicit operation timeout $params['body'] = (array) The ingest definition (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ingest()->putPipeline($params); ---- **** @@ -107,6 +93,8 @@ $response = $client->ingest()->putPipeline($params); [[Elasticsearch_Namespaces_IngestNamespacesimulate_simulate]] .`simulate()` +[[Elasticsearch_Namespaces_IngestNamespacesimulate_simulate]] +.`simulate(array $params = [])` **** [source,php] ---- @@ -115,13 +103,6 @@ $params['id'] = (string) Pipeline ID $params['verbose'] = (boolean) Verbose mode. Display data output for each processor in executed pipeline (Default = false) $params['body'] = (array) The simulate definition (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ingest()->simulate($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/LicenseNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/LicenseNamespace.asciidoc index 3bce29404..71617cad0 100644 --- a/docs/build/Elasticsearch/Namespaces/LicenseNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/LicenseNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_LicenseNamespace]] === Elasticsearch\Namespaces\LicenseNamespace Class LicenseNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -25,18 +30,13 @@ The class defines the following methods: [[Elasticsearch_Namespaces_LicenseNamespacedelete_delete]] .`delete()` +[[Elasticsearch_Namespaces_LicenseNamespacedelete_delete]] +.`delete(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->license()->delete($params); ---- **** @@ -44,6 +44,8 @@ $response = $client->license()->delete($params); [[Elasticsearch_Namespaces_LicenseNamespaceget_get]] .`get()` +[[Elasticsearch_Namespaces_LicenseNamespaceget_get]] +.`get(array $params = [])` **** [source,php] ---- @@ -51,13 +53,6 @@ $response = $client->license()->delete($params); $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) $params['accept_enterprise'] = (boolean) If the active license is an enterprise license, return type as 'enterprise' (default: false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->license()->get($params); ---- **** @@ -65,18 +60,13 @@ $response = $client->license()->get($params); [[Elasticsearch_Namespaces_LicenseNamespacegetBasicStatus_getBasicStatus]] .`getBasicStatus()` +[[Elasticsearch_Namespaces_LicenseNamespacegetBasicStatus_getBasicStatus]] +.`getBasicStatus(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->license()->getBasicStatus($params); ---- **** @@ -84,18 +74,13 @@ $response = $client->license()->getBasicStatus($params); [[Elasticsearch_Namespaces_LicenseNamespacegetTrialStatus_getTrialStatus]] .`getTrialStatus()` +[[Elasticsearch_Namespaces_LicenseNamespacegetTrialStatus_getTrialStatus]] +.`getTrialStatus(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->license()->getTrialStatus($params); ---- **** @@ -103,6 +88,8 @@ $response = $client->license()->getTrialStatus($params); [[Elasticsearch_Namespaces_LicenseNamespacepost_post]] .`post()` +[[Elasticsearch_Namespaces_LicenseNamespacepost_post]] +.`post(array $params = [])` **** [source,php] ---- @@ -110,13 +97,6 @@ $response = $client->license()->getTrialStatus($params); $params['acknowledge'] = (boolean) whether the user has acknowledged acknowledge messages (default: false) $params['body'] = (array) licenses to be installed */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->license()->post($params); ---- **** @@ -124,19 +104,14 @@ $response = $client->license()->post($params); [[Elasticsearch_Namespaces_LicenseNamespacepostStartBasic_postStartBasic]] .`postStartBasic()` +[[Elasticsearch_Namespaces_LicenseNamespacepostStartBasic_postStartBasic]] +.`postStartBasic(array $params = [])` **** [source,php] ---- /* $params['acknowledge'] = (boolean) whether the user has acknowledged acknowledge messages (default: false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->license()->postStartBasic($params); ---- **** @@ -144,6 +119,8 @@ $response = $client->license()->postStartBasic($params); [[Elasticsearch_Namespaces_LicenseNamespacepostStartTrial_postStartTrial]] .`postStartTrial()` +[[Elasticsearch_Namespaces_LicenseNamespacepostStartTrial_postStartTrial]] +.`postStartTrial(array $params = [])` **** [source,php] ---- @@ -151,13 +128,6 @@ $response = $client->license()->postStartBasic($params); $params['type'] = (string) The type of trial license to generate (default: "trial") $params['acknowledge'] = (boolean) whether the user has acknowledged acknowledge messages (default: false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->license()->postStartTrial($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/LogstashNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/LogstashNamespace.asciidoc new file mode 100644 index 000000000..a88943a22 --- /dev/null +++ b/docs/build/Elasticsearch/Namespaces/LogstashNamespace.asciidoc @@ -0,0 +1,71 @@ + + +[[Elasticsearch_Namespaces_LogstashNamespace]] +=== Elasticsearch\Namespaces\LogstashNamespace + + + +Class LogstashNamespace + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) + + +*Methods* + +The class defines the following methods: + +* <> +* <> +* <> + + + +[[Elasticsearch_Namespaces_LogstashNamespacedeletePipeline_deletePipeline]] +.`deletePipeline()` +[[Elasticsearch_Namespaces_LogstashNamespacedeletePipeline_deletePipeline]] +.`deletePipeline(array $params = [])` +**** +[source,php] +---- +/* +$params['id'] = (string) The ID of the Pipeline +*/ +---- +**** + + + +[[Elasticsearch_Namespaces_LogstashNamespacegetPipeline_getPipeline]] +.`getPipeline()` +[[Elasticsearch_Namespaces_LogstashNamespacegetPipeline_getPipeline]] +.`getPipeline(array $params = [])` +**** +[source,php] +---- +/* +$params['id'] = (string) A comma-separated list of Pipeline IDs +*/ +---- +**** + + + +[[Elasticsearch_Namespaces_LogstashNamespaceputPipeline_putPipeline]] +.`putPipeline()` +[[Elasticsearch_Namespaces_LogstashNamespaceputPipeline_putPipeline]] +.`putPipeline(array $params = [])` +**** +[source,php] +---- +/* +$params['id'] = (string) The ID of the Pipeline +$params['body'] = (array) The Pipeline to add or update (Required) +*/ +---- +**** + + diff --git a/docs/build/Elasticsearch/Namespaces/MigrationNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/MigrationNamespace.asciidoc index c2bf21695..f3ba68cbc 100644 --- a/docs/build/Elasticsearch/Namespaces/MigrationNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/MigrationNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_MigrationNamespace]] === Elasticsearch\Namespaces\MigrationNamespace Class MigrationNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -19,19 +24,14 @@ The class defines the following methods: [[Elasticsearch_Namespaces_MigrationNamespacedeprecations_deprecations]] .`deprecations()` +[[Elasticsearch_Namespaces_MigrationNamespacedeprecations_deprecations]] +.`deprecations(array $params = [])` **** [source,php] ---- /* $params['index'] = (string) Index pattern */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->migration()->deprecations($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/MlNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/MlNamespace.asciidoc index 07ef44024..96b989e52 100644 --- a/docs/build/Elasticsearch/Namespaces/MlNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/MlNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_MlNamespace]] === Elasticsearch\Namespaces\MlNamespace Class MlNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -71,6 +76,7 @@ The class defines the following methods: * <> * <> * <> +* <> * <> * <> @@ -78,23 +84,19 @@ The class defines the following methods: [[Elasticsearch_Namespaces_MlNamespacecloseJob_closeJob]] .`closeJob()` +[[Elasticsearch_Namespaces_MlNamespacecloseJob_closeJob]] +.`closeJob(array $params = [])` **** [source,php] ---- /* -$params['job_id'] = (string) The name of the job to close -$params['allow_no_jobs'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) -$params['force'] = (boolean) True if the job should be forcefully closed -$params['timeout'] = (time) Controls the time to wait until a job has closed. Default to 30 minutes -$params['body'] = (array) The URL params optionally sent in the body +$params['job_id'] = (string) The name of the job to close +$params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) +$params['allow_no_jobs'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) +$params['force'] = (boolean) True if the job should be forcefully closed +$params['timeout'] = (time) Controls the time to wait until a job has closed. Default to 30 minutes +$params['body'] = (array) The URL params optionally sent in the body */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->closeJob($params); ---- **** @@ -102,19 +104,14 @@ $response = $client->ml()->closeJob($params); [[Elasticsearch_Namespaces_MlNamespacedeleteCalendar_deleteCalendar]] .`deleteCalendar()` +[[Elasticsearch_Namespaces_MlNamespacedeleteCalendar_deleteCalendar]] +.`deleteCalendar(array $params = [])` **** [source,php] ---- /* $params['calendar_id'] = (string) The ID of the calendar to delete */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->deleteCalendar($params); ---- **** @@ -122,6 +119,8 @@ $response = $client->ml()->deleteCalendar($params); [[Elasticsearch_Namespaces_MlNamespacedeleteCalendarEvent_deleteCalendarEvent]] .`deleteCalendarEvent()` +[[Elasticsearch_Namespaces_MlNamespacedeleteCalendarEvent_deleteCalendarEvent]] +.`deleteCalendarEvent(array $params = [])` **** [source,php] ---- @@ -129,13 +128,6 @@ $response = $client->ml()->deleteCalendar($params); $params['calendar_id'] = (string) The ID of the calendar to modify $params['event_id'] = (string) The ID of the event to remove from the calendar */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->deleteCalendarEvent($params); ---- **** @@ -143,6 +135,8 @@ $response = $client->ml()->deleteCalendarEvent($params); [[Elasticsearch_Namespaces_MlNamespacedeleteCalendarJob_deleteCalendarJob]] .`deleteCalendarJob()` +[[Elasticsearch_Namespaces_MlNamespacedeleteCalendarJob_deleteCalendarJob]] +.`deleteCalendarJob(array $params = [])` **** [source,php] ---- @@ -150,13 +144,6 @@ $response = $client->ml()->deleteCalendarEvent($params); $params['calendar_id'] = (string) The ID of the calendar to modify $params['job_id'] = (string) The ID of the job to remove from the calendar */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->deleteCalendarJob($params); ---- **** @@ -164,7 +151,9 @@ $response = $client->ml()->deleteCalendarJob($params); [[Elasticsearch_Namespaces_MlNamespacedeleteDataFrameAnalytics_deleteDataFrameAnalytics]] .`deleteDataFrameAnalytics()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +*NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_MlNamespacedeleteDataFrameAnalytics_deleteDataFrameAnalytics]] +.`deleteDataFrameAnalytics(array $params = [])` **** [source,php] ---- @@ -173,13 +162,6 @@ $params['id'] = (string) The ID of the data frame analytics to delete $params['force'] = (boolean) True if the job should be forcefully deleted (Default = false) $params['timeout'] = (time) Controls the time to wait until a job is deleted. Defaults to 1 minute */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->deleteDataFrameAnalytics($params); ---- **** @@ -187,6 +169,8 @@ $response = $client->ml()->deleteDataFrameAnalytics($params); [[Elasticsearch_Namespaces_MlNamespacedeleteDatafeed_deleteDatafeed]] .`deleteDatafeed()` +[[Elasticsearch_Namespaces_MlNamespacedeleteDatafeed_deleteDatafeed]] +.`deleteDatafeed(array $params = [])` **** [source,php] ---- @@ -194,13 +178,6 @@ $response = $client->ml()->deleteDataFrameAnalytics($params); $params['datafeed_id'] = (string) The ID of the datafeed to delete $params['force'] = (boolean) True if the datafeed should be forcefully deleted */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->deleteDatafeed($params); ---- **** @@ -208,6 +185,8 @@ $response = $client->ml()->deleteDatafeed($params); [[Elasticsearch_Namespaces_MlNamespacedeleteExpiredData_deleteExpiredData]] .`deleteExpiredData()` +[[Elasticsearch_Namespaces_MlNamespacedeleteExpiredData_deleteExpiredData]] +.`deleteExpiredData(array $params = [])` **** [source,php] ---- @@ -215,13 +194,6 @@ $response = $client->ml()->deleteDatafeed($params); $params['job_id'] = (string) The ID of the job(s) to perform expired data hygiene for $params['requests_per_second'] = (number) The desired requests per second for the deletion processes. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->deleteExpiredData($params); ---- **** @@ -229,19 +201,14 @@ $response = $client->ml()->deleteExpiredData($params); [[Elasticsearch_Namespaces_MlNamespacedeleteFilter_deleteFilter]] .`deleteFilter()` +[[Elasticsearch_Namespaces_MlNamespacedeleteFilter_deleteFilter]] +.`deleteFilter(array $params = [])` **** [source,php] ---- /* $params['filter_id'] = (string) The ID of the filter to delete */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->deleteFilter($params); ---- **** @@ -249,6 +216,8 @@ $response = $client->ml()->deleteFilter($params); [[Elasticsearch_Namespaces_MlNamespacedeleteForecast_deleteForecast]] .`deleteForecast()` +[[Elasticsearch_Namespaces_MlNamespacedeleteForecast_deleteForecast]] +.`deleteForecast(array $params = [])` **** [source,php] ---- @@ -258,13 +227,6 @@ $params['forecast_id'] = (string) The ID of the forecast to delete, can b $params['allow_no_forecasts'] = (boolean) Whether to ignore if `_all` matches no forecasts $params['timeout'] = (time) Controls the time to wait until the forecast(s) are deleted. Default to 30 seconds */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->deleteForecast($params); ---- **** @@ -272,6 +234,8 @@ $response = $client->ml()->deleteForecast($params); [[Elasticsearch_Namespaces_MlNamespacedeleteJob_deleteJob]] .`deleteJob()` +[[Elasticsearch_Namespaces_MlNamespacedeleteJob_deleteJob]] +.`deleteJob(array $params = [])` **** [source,php] ---- @@ -280,13 +244,6 @@ $params['job_id'] = (string) The ID of the job to delete $params['force'] = (boolean) True if the job should be forcefully deleted (Default = false) $params['wait_for_completion'] = (boolean) Should this request wait until the operation has completed before returning (Default = true) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->deleteJob($params); ---- **** @@ -294,6 +251,8 @@ $response = $client->ml()->deleteJob($params); [[Elasticsearch_Namespaces_MlNamespacedeleteModelSnapshot_deleteModelSnapshot]] .`deleteModelSnapshot()` +[[Elasticsearch_Namespaces_MlNamespacedeleteModelSnapshot_deleteModelSnapshot]] +.`deleteModelSnapshot(array $params = [])` **** [source,php] ---- @@ -301,13 +260,6 @@ $response = $client->ml()->deleteJob($params); $params['job_id'] = (string) The ID of the job to fetch $params['snapshot_id'] = (string) The ID of the snapshot to delete */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->deleteModelSnapshot($params); ---- **** @@ -315,20 +267,15 @@ $response = $client->ml()->deleteModelSnapshot($params); [[Elasticsearch_Namespaces_MlNamespacedeleteTrainedModel_deleteTrainedModel]] .`deleteTrainedModel()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +*NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_MlNamespacedeleteTrainedModel_deleteTrainedModel]] +.`deleteTrainedModel(array $params = [])` **** [source,php] ---- /* $params['model_id'] = (string) The ID of the trained model to delete */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->deleteTrainedModel($params); ---- **** @@ -336,19 +283,14 @@ $response = $client->ml()->deleteTrainedModel($params); [[Elasticsearch_Namespaces_MlNamespaceestimateModelMemory_estimateModelMemory]] .`estimateModelMemory()` +[[Elasticsearch_Namespaces_MlNamespaceestimateModelMemory_estimateModelMemory]] +.`estimateModelMemory(array $params = [])` **** [source,php] ---- /* $params['body'] = (array) The analysis config, plus cardinality estimates for fields it references (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->estimateModelMemory($params); ---- **** @@ -356,18 +298,13 @@ $response = $client->ml()->estimateModelMemory($params); [[Elasticsearch_Namespaces_MlNamespaceevaluateDataFrame_evaluateDataFrame]] .`evaluateDataFrame()` +[[Elasticsearch_Namespaces_MlNamespaceevaluateDataFrame_evaluateDataFrame]] +.`evaluateDataFrame(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->evaluateDataFrame($params); ---- **** @@ -375,7 +312,9 @@ $response = $client->ml()->evaluateDataFrame($params); [[Elasticsearch_Namespaces_MlNamespaceexplainDataFrameAnalytics_explainDataFrameAnalytics]] .`explainDataFrameAnalytics()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +*NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_MlNamespaceexplainDataFrameAnalytics_explainDataFrameAnalytics]] +.`explainDataFrameAnalytics(array $params = [])` **** [source,php] ---- @@ -383,13 +322,6 @@ $response = $client->ml()->evaluateDataFrame($params); $params['id'] = (string) The ID of the data frame analytics to explain $params['body'] = (array) The data frame analytics config to explain */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->explainDataFrameAnalytics($params); ---- **** @@ -398,6 +330,8 @@ $response = $client->ml()->explainDataFrameAnalytics($params); [[Elasticsearch_Namespaces_MlNamespacefindFileStructure_findFileStructure]] .`findFileStructure()` *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_MlNamespacefindFileStructure_findFileStructure]] +.`findFileStructure(array $params = [])` **** [source,php] ---- @@ -418,13 +352,6 @@ $params['timestamp_format'] = (string) Optional parameter to specify the ti $params['explain'] = (boolean) Whether to include a commentary on how the structure was derived (Default = false) $params['body'] = (array) The contents of the file to be analyzed (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->findFileStructure($params); ---- **** @@ -432,6 +359,8 @@ $response = $client->ml()->findFileStructure($params); [[Elasticsearch_Namespaces_MlNamespaceflushJob_flushJob]] .`flushJob()` +[[Elasticsearch_Namespaces_MlNamespaceflushJob_flushJob]] +.`flushJob(array $params = [])` **** [source,php] ---- @@ -444,13 +373,6 @@ $params['advance_time'] = (string) Advances time to the given value generating r $params['skip_time'] = (string) Skips time to the given value without generating results or updating the model for the skipped interval $params['body'] = (array) Flush parameters */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->flushJob($params); ---- **** @@ -458,6 +380,8 @@ $response = $client->ml()->flushJob($params); [[Elasticsearch_Namespaces_MlNamespaceforecast_forecast]] .`forecast()` +[[Elasticsearch_Namespaces_MlNamespaceforecast_forecast]] +.`forecast(array $params = [])` **** [source,php] ---- @@ -466,13 +390,6 @@ $params['job_id'] = (string) The ID of the job to forecast for $params['duration'] = (time) The duration of the forecast $params['expires_in'] = (time) The time interval after which the forecast expires. Expired forecasts will be deleted at the first opportunity. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->forecast($params); ---- **** @@ -480,6 +397,8 @@ $response = $client->ml()->forecast($params); [[Elasticsearch_Namespaces_MlNamespacegetBuckets_getBuckets]] .`getBuckets()` +[[Elasticsearch_Namespaces_MlNamespacegetBuckets_getBuckets]] +.`getBuckets(array $params = [])` **** [source,php] ---- @@ -497,13 +416,6 @@ $params['sort'] = (string) Sort buckets by a particular field $params['desc'] = (boolean) Set the sort direction $params['body'] = (array) Bucket selection details if not provided in URI */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->getBuckets($params); ---- **** @@ -511,6 +423,8 @@ $response = $client->ml()->getBuckets($params); [[Elasticsearch_Namespaces_MlNamespacegetCalendarEvents_getCalendarEvents]] .`getCalendarEvents()` +[[Elasticsearch_Namespaces_MlNamespacegetCalendarEvents_getCalendarEvents]] +.`getCalendarEvents(array $params = [])` **** [source,php] ---- @@ -522,13 +436,6 @@ $params['end'] = (date) Get events before this time $params['from'] = (int) Skips a number of events $params['size'] = (int) Specifies a max number of events to get */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->getCalendarEvents($params); ---- **** @@ -536,6 +443,8 @@ $response = $client->ml()->getCalendarEvents($params); [[Elasticsearch_Namespaces_MlNamespacegetCalendars_getCalendars]] .`getCalendars()` +[[Elasticsearch_Namespaces_MlNamespacegetCalendars_getCalendars]] +.`getCalendars(array $params = [])` **** [source,php] ---- @@ -545,13 +454,6 @@ $params['from'] = (int) skips a number of calendars $params['size'] = (int) specifies a max number of calendars to get $params['body'] = (array) The from and size parameters optionally sent in the body */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->getCalendars($params); ---- **** @@ -559,6 +461,8 @@ $response = $client->ml()->getCalendars($params); [[Elasticsearch_Namespaces_MlNamespacegetCategories_getCategories]] .`getCategories()` +[[Elasticsearch_Namespaces_MlNamespacegetCategories_getCategories]] +.`getCategories(array $params = [])` **** [source,php] ---- @@ -569,13 +473,6 @@ $params['from'] = (int) skips a number of categories $params['size'] = (int) specifies a max number of categories to get $params['partition_field_value'] = (string) Specifies the partition to retrieve categories for. This is optional, and should never be used for jobs where per-partition categorization is disabled. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->getCategories($params); ---- **** @@ -583,23 +480,19 @@ $response = $client->ml()->getCategories($params); [[Elasticsearch_Namespaces_MlNamespacegetDataFrameAnalytics_getDataFrameAnalytics]] .`getDataFrameAnalytics()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +*NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_MlNamespacegetDataFrameAnalytics_getDataFrameAnalytics]] +.`getDataFrameAnalytics(array $params = [])` **** [source,php] ---- /* -$params['id'] = (string) The ID of the data frame analytics to fetch -$params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no data frame analytics. (This includes `_all` string or when no data frame analytics have been specified) (Default = true) -$params['from'] = (int) skips a number of analytics (Default = 0) -$params['size'] = (int) specifies a max number of analytics to get (Default = 100) +$params['id'] = (string) The ID of the data frame analytics to fetch +$params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no data frame analytics. (This includes `_all` string or when no data frame analytics have been specified) (Default = true) +$params['from'] = (int) skips a number of analytics (Default = 0) +$params['size'] = (int) specifies a max number of analytics to get (Default = 100) +$params['exclude_generated'] = (boolean) Omits fields that are illegal to set on data frame analytics PUT (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->getDataFrameAnalytics($params); ---- **** @@ -607,7 +500,9 @@ $response = $client->ml()->getDataFrameAnalytics($params); [[Elasticsearch_Namespaces_MlNamespacegetDataFrameAnalyticsStats_getDataFrameAnalyticsStats]] .`getDataFrameAnalyticsStats()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +*NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_MlNamespacegetDataFrameAnalyticsStats_getDataFrameAnalyticsStats]] +.`getDataFrameAnalyticsStats(array $params = [])` **** [source,php] ---- @@ -616,14 +511,8 @@ $params['id'] = (string) The ID of the data frame analytics stats to $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no data frame analytics. (This includes `_all` string or when no data frame analytics have been specified) (Default = true) $params['from'] = (int) skips a number of analytics (Default = 0) $params['size'] = (int) specifies a max number of analytics to get (Default = 100) +$params['verbose'] = (boolean) whether the stats response should be verbose (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->getDataFrameAnalyticsStats($params); ---- **** @@ -631,20 +520,16 @@ $response = $client->ml()->getDataFrameAnalyticsStats($params); [[Elasticsearch_Namespaces_MlNamespacegetDatafeedStats_getDatafeedStats]] .`getDatafeedStats()` +[[Elasticsearch_Namespaces_MlNamespacegetDatafeedStats_getDatafeedStats]] +.`getDatafeedStats(array $params = [])` **** [source,php] ---- /* $params['datafeed_id'] = (string) The ID of the datafeeds stats to fetch +$params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified) $params['allow_no_datafeeds'] = (boolean) Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->getDatafeedStats($params); ---- **** @@ -652,20 +537,17 @@ $response = $client->ml()->getDatafeedStats($params); [[Elasticsearch_Namespaces_MlNamespacegetDatafeeds_getDatafeeds]] .`getDatafeeds()` +[[Elasticsearch_Namespaces_MlNamespacegetDatafeeds_getDatafeeds]] +.`getDatafeeds(array $params = [])` **** [source,php] ---- /* $params['datafeed_id'] = (string) The ID of the datafeeds to fetch +$params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified) $params['allow_no_datafeeds'] = (boolean) Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified) +$params['exclude_generated'] = (boolean) Omits fields that are illegal to set on datafeed PUT (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->getDatafeeds($params); ---- **** @@ -673,6 +555,8 @@ $response = $client->ml()->getDatafeeds($params); [[Elasticsearch_Namespaces_MlNamespacegetFilters_getFilters]] .`getFilters()` +[[Elasticsearch_Namespaces_MlNamespacegetFilters_getFilters]] +.`getFilters(array $params = [])` **** [source,php] ---- @@ -681,13 +565,6 @@ $params['filter_id'] = (string) The ID of the filter to fetch $params['from'] = (int) skips a number of filters $params['size'] = (int) specifies a max number of filters to get */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->getFilters($params); ---- **** @@ -695,6 +572,8 @@ $response = $client->ml()->getFilters($params); [[Elasticsearch_Namespaces_MlNamespacegetInfluencers_getInfluencers]] .`getInfluencers()` +[[Elasticsearch_Namespaces_MlNamespacegetInfluencers_getInfluencers]] +.`getInfluencers(array $params = [])` **** [source,php] ---- @@ -710,13 +589,6 @@ $params['sort'] = (string) sort field for the requested influencers $params['desc'] = (boolean) whether the results should be sorted in decending order $params['body'] = (array) Influencer selection criteria */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->getInfluencers($params); ---- **** @@ -724,20 +596,16 @@ $response = $client->ml()->getInfluencers($params); [[Elasticsearch_Namespaces_MlNamespacegetJobStats_getJobStats]] .`getJobStats()` +[[Elasticsearch_Namespaces_MlNamespacegetJobStats_getJobStats]] +.`getJobStats(array $params = [])` **** [source,php] ---- /* -$params['job_id'] = (string) The ID of the jobs stats to fetch -$params['allow_no_jobs'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) +$params['job_id'] = (string) The ID of the jobs stats to fetch +$params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) +$params['allow_no_jobs'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->getJobStats($params); ---- **** @@ -745,20 +613,17 @@ $response = $client->ml()->getJobStats($params); [[Elasticsearch_Namespaces_MlNamespacegetJobs_getJobs]] .`getJobs()` +[[Elasticsearch_Namespaces_MlNamespacegetJobs_getJobs]] +.`getJobs(array $params = [])` **** [source,php] ---- /* -$params['job_id'] = (string) The ID of the jobs to fetch -$params['allow_no_jobs'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) +$params['job_id'] = (string) The ID of the jobs to fetch +$params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) +$params['allow_no_jobs'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) +$params['exclude_generated'] = (boolean) Omits fields that are illegal to set on job PUT (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->getJobs($params); ---- **** @@ -766,6 +631,8 @@ $response = $client->ml()->getJobs($params); [[Elasticsearch_Namespaces_MlNamespacegetModelSnapshots_getModelSnapshots]] .`getModelSnapshots()` +[[Elasticsearch_Namespaces_MlNamespacegetModelSnapshots_getModelSnapshots]] +.`getModelSnapshots(array $params = [])` **** [source,php] ---- @@ -775,13 +642,6 @@ $params['snapshot_id'] = (string) The ID of the snapshot to fetch $params['from'] = (int) Skips a number of documents $params['size'] = (int) The default number of documents returned in queries as a string. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->getModelSnapshots($params); ---- **** @@ -789,6 +649,8 @@ $response = $client->ml()->getModelSnapshots($params); [[Elasticsearch_Namespaces_MlNamespacegetOverallBuckets_getOverallBuckets]] .`getOverallBuckets()` +[[Elasticsearch_Namespaces_MlNamespacegetOverallBuckets_getOverallBuckets]] +.`getOverallBuckets(array $params = [])` **** [source,php] ---- @@ -800,16 +662,10 @@ $params['overall_score'] = (double) Returns overall buckets with overall score $params['exclude_interim'] = (boolean) If true overall buckets that include interim buckets will be excluded $params['start'] = (string) Returns overall buckets with timestamps after this time $params['end'] = (string) Returns overall buckets with timestamps earlier than this time +$params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) $params['allow_no_jobs'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) $params['body'] = (array) Overall bucket selection details if not provided in URI */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->getOverallBuckets($params); ---- **** @@ -817,6 +673,8 @@ $response = $client->ml()->getOverallBuckets($params); [[Elasticsearch_Namespaces_MlNamespacegetRecords_getRecords]] .`getRecords()` +[[Elasticsearch_Namespaces_MlNamespacegetRecords_getRecords]] +.`getRecords(array $params = [])` **** [source,php] ---- @@ -832,13 +690,6 @@ $params['sort'] = (string) Sort records by a particular field $params['desc'] = (boolean) Set the sort direction $params['body'] = (array) Record selection criteria */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->getRecords($params); ---- **** @@ -846,26 +697,17 @@ $response = $client->ml()->getRecords($params); [[Elasticsearch_Namespaces_MlNamespacegetTrainedModels_getTrainedModels]] .`getTrainedModels()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +*NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_MlNamespacegetTrainedModels_getTrainedModels]] +.`getTrainedModels(array $params = [])` **** [source,php] ---- /* $params['model_id'] = (string) The ID of the trained models to fetch $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no trained models. (This includes `_all` string or when no trained models have been specified) (Default = true) -$params['include_model_definition'] = (boolean) Should the full model definition be included in the results. These definitions can be large. So be cautious when including them. Defaults to false. (Default = false) -$params['decompress_definition'] = (boolean) Should the model definition be decompressed into valid JSON or returned in a custom compressed format. Defaults to true. (Default = true) -$params['from'] = (int) skips a number of trained models (Default = 0) -$params['size'] = (int) specifies a max number of trained models to get (Default = 100) -$params['tags'] = (list) A comma-separated list of tags that the model must have. +$params['include'] = (string) A comma-separate list of fields to optionally include. Valid options are 'definition' and 'total_feature_importance'. Default is none. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->getTrainedModels($params); ---- **** @@ -873,7 +715,9 @@ $response = $client->ml()->getTrainedModels($params); [[Elasticsearch_Namespaces_MlNamespacegetTrainedModelsStats_getTrainedModelsStats]] .`getTrainedModelsStats()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +*NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_MlNamespacegetTrainedModelsStats_getTrainedModelsStats]] +.`getTrainedModelsStats(array $params = [])` **** [source,php] ---- @@ -883,13 +727,6 @@ $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression $params['from'] = (int) skips a number of trained models (Default = 0) $params['size'] = (int) specifies a max number of trained models to get (Default = 100) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->getTrainedModelsStats($params); ---- **** @@ -897,18 +734,13 @@ $response = $client->ml()->getTrainedModelsStats($params); [[Elasticsearch_Namespaces_MlNamespaceinfo_info]] .`info()` +[[Elasticsearch_Namespaces_MlNamespaceinfo_info]] +.`info(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->info($params); ---- **** @@ -916,19 +748,14 @@ $response = $client->ml()->info($params); [[Elasticsearch_Namespaces_MlNamespaceopenJob_openJob]] .`openJob()` +[[Elasticsearch_Namespaces_MlNamespaceopenJob_openJob]] +.`openJob(array $params = [])` **** [source,php] ---- /* $params['job_id'] = (string) The ID of the job to open */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->openJob($params); ---- **** @@ -936,6 +763,8 @@ $response = $client->ml()->openJob($params); [[Elasticsearch_Namespaces_MlNamespacepostCalendarEvents_postCalendarEvents]] .`postCalendarEvents()` +[[Elasticsearch_Namespaces_MlNamespacepostCalendarEvents_postCalendarEvents]] +.`postCalendarEvents(array $params = [])` **** [source,php] ---- @@ -943,13 +772,6 @@ $response = $client->ml()->openJob($params); $params['calendar_id'] = (string) The ID of the calendar to modify $params['body'] = (array) A list of events (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->postCalendarEvents($params); ---- **** @@ -957,6 +779,8 @@ $response = $client->ml()->postCalendarEvents($params); [[Elasticsearch_Namespaces_MlNamespacepostData_postData]] .`postData()` +[[Elasticsearch_Namespaces_MlNamespacepostData_postData]] +.`postData(array $params = [])` **** [source,php] ---- @@ -966,13 +790,6 @@ $params['reset_start'] = (string) Optional parameter to specify the start of the $params['reset_end'] = (string) Optional parameter to specify the end of the bucket resetting range $params['body'] = (array) The data to process (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->postData($params); ---- **** @@ -980,19 +797,14 @@ $response = $client->ml()->postData($params); [[Elasticsearch_Namespaces_MlNamespacepreviewDatafeed_previewDatafeed]] .`previewDatafeed()` +[[Elasticsearch_Namespaces_MlNamespacepreviewDatafeed_previewDatafeed]] +.`previewDatafeed(array $params = [])` **** [source,php] ---- /* $params['datafeed_id'] = (string) The ID of the datafeed to preview */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->previewDatafeed($params); ---- **** @@ -1000,6 +812,8 @@ $response = $client->ml()->previewDatafeed($params); [[Elasticsearch_Namespaces_MlNamespaceputCalendar_putCalendar]] .`putCalendar()` +[[Elasticsearch_Namespaces_MlNamespaceputCalendar_putCalendar]] +.`putCalendar(array $params = [])` **** [source,php] ---- @@ -1007,13 +821,6 @@ $response = $client->ml()->previewDatafeed($params); $params['calendar_id'] = (string) The ID of the calendar to create $params['body'] = (array) The calendar details */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->putCalendar($params); ---- **** @@ -1021,6 +828,8 @@ $response = $client->ml()->putCalendar($params); [[Elasticsearch_Namespaces_MlNamespaceputCalendarJob_putCalendarJob]] .`putCalendarJob()` +[[Elasticsearch_Namespaces_MlNamespaceputCalendarJob_putCalendarJob]] +.`putCalendarJob(array $params = [])` **** [source,php] ---- @@ -1028,13 +837,6 @@ $response = $client->ml()->putCalendar($params); $params['calendar_id'] = (string) The ID of the calendar to modify $params['job_id'] = (string) The ID of the job to add to the calendar */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->putCalendarJob($params); ---- **** @@ -1042,7 +844,9 @@ $response = $client->ml()->putCalendarJob($params); [[Elasticsearch_Namespaces_MlNamespaceputDataFrameAnalytics_putDataFrameAnalytics]] .`putDataFrameAnalytics()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +*NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_MlNamespaceputDataFrameAnalytics_putDataFrameAnalytics]] +.`putDataFrameAnalytics(array $params = [])` **** [source,php] ---- @@ -1050,13 +854,6 @@ $response = $client->ml()->putCalendarJob($params); $params['id'] = (string) The ID of the data frame analytics to create $params['body'] = (array) The data frame analytics configuration (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->putDataFrameAnalytics($params); ---- **** @@ -1064,6 +861,8 @@ $response = $client->ml()->putDataFrameAnalytics($params); [[Elasticsearch_Namespaces_MlNamespaceputDatafeed_putDatafeed]] .`putDatafeed()` +[[Elasticsearch_Namespaces_MlNamespaceputDatafeed_putDatafeed]] +.`putDatafeed(array $params = [])` **** [source,php] ---- @@ -1075,13 +874,6 @@ $params['ignore_throttled'] = (boolean) Ignore indices that are marked as thro $params['expand_wildcards'] = (enum) Whether source index expressions should get expanded to open or closed indices (default: open) (Options = open,closed,hidden,none,all) $params['body'] = (array) The datafeed config (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->putDatafeed($params); ---- **** @@ -1089,6 +881,8 @@ $response = $client->ml()->putDatafeed($params); [[Elasticsearch_Namespaces_MlNamespaceputFilter_putFilter]] .`putFilter()` +[[Elasticsearch_Namespaces_MlNamespaceputFilter_putFilter]] +.`putFilter(array $params = [])` **** [source,php] ---- @@ -1096,13 +890,6 @@ $response = $client->ml()->putDatafeed($params); $params['filter_id'] = (string) The ID of the filter to create $params['body'] = (array) The filter details (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->putFilter($params); ---- **** @@ -1110,6 +897,8 @@ $response = $client->ml()->putFilter($params); [[Elasticsearch_Namespaces_MlNamespaceputJob_putJob]] .`putJob()` +[[Elasticsearch_Namespaces_MlNamespaceputJob_putJob]] +.`putJob(array $params = [])` **** [source,php] ---- @@ -1117,13 +906,6 @@ $response = $client->ml()->putFilter($params); $params['job_id'] = (string) The ID of the job to create $params['body'] = (array) The job (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->putJob($params); ---- **** @@ -1131,7 +913,9 @@ $response = $client->ml()->putJob($params); [[Elasticsearch_Namespaces_MlNamespaceputTrainedModel_putTrainedModel]] .`putTrainedModel()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +*NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_MlNamespaceputTrainedModel_putTrainedModel]] +.`putTrainedModel(array $params = [])` **** [source,php] ---- @@ -1139,13 +923,6 @@ $response = $client->ml()->putJob($params); $params['model_id'] = (string) The ID of the trained models to store $params['body'] = (array) The trained model configuration (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->putTrainedModel($params); ---- **** @@ -1153,6 +930,8 @@ $response = $client->ml()->putTrainedModel($params); [[Elasticsearch_Namespaces_MlNamespacerevertModelSnapshot_revertModelSnapshot]] .`revertModelSnapshot()` +[[Elasticsearch_Namespaces_MlNamespacerevertModelSnapshot_revertModelSnapshot]] +.`revertModelSnapshot(array $params = [])` **** [source,php] ---- @@ -1162,13 +941,6 @@ $params['snapshot_id'] = (string) The ID of the snapshot to rever $params['delete_intervening_results'] = (boolean) Should we reset the results back to the time of the snapshot? $params['body'] = (array) Reversion options */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->revertModelSnapshot($params); ---- **** @@ -1176,19 +948,14 @@ $response = $client->ml()->revertModelSnapshot($params); [[Elasticsearch_Namespaces_MlNamespacesetUpgradeMode_setUpgradeMode]] .`setUpgradeMode()` +[[Elasticsearch_Namespaces_MlNamespacesetUpgradeMode_setUpgradeMode]] +.`setUpgradeMode(array $params = [])` **** [source,php] ---- /* $params['enabled'] = (boolean) Whether to enable upgrade_mode ML setting or not. Defaults to false. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->setUpgradeMode($params); ---- **** @@ -1196,7 +963,9 @@ $response = $client->ml()->setUpgradeMode($params); [[Elasticsearch_Namespaces_MlNamespacestartDataFrameAnalytics_startDataFrameAnalytics]] .`startDataFrameAnalytics()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +*NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_MlNamespacestartDataFrameAnalytics_startDataFrameAnalytics]] +.`startDataFrameAnalytics(array $params = [])` **** [source,php] ---- @@ -1205,13 +974,6 @@ $params['id'] = (string) The ID of the data frame analytics to start $params['timeout'] = (time) Controls the time to wait until the task has started. Defaults to 20 seconds $params['body'] = (array) The start data frame analytics parameters */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->startDataFrameAnalytics($params); ---- **** @@ -1219,6 +981,8 @@ $response = $client->ml()->startDataFrameAnalytics($params); [[Elasticsearch_Namespaces_MlNamespacestartDatafeed_startDatafeed]] .`startDatafeed()` +[[Elasticsearch_Namespaces_MlNamespacestartDatafeed_startDatafeed]] +.`startDatafeed(array $params = [])` **** [source,php] ---- @@ -1229,13 +993,6 @@ $params['end'] = (string) The end time when the datafeed should stop. Wh $params['timeout'] = (time) Controls the time to wait until a datafeed has started. Default to 20 seconds $params['body'] = (array) The start datafeed parameters */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->startDatafeed($params); ---- **** @@ -1243,7 +1000,9 @@ $response = $client->ml()->startDatafeed($params); [[Elasticsearch_Namespaces_MlNamespacestopDataFrameAnalytics_stopDataFrameAnalytics]] .`stopDataFrameAnalytics()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +*NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_MlNamespacestopDataFrameAnalytics_stopDataFrameAnalytics]] +.`stopDataFrameAnalytics(array $params = [])` **** [source,php] ---- @@ -1254,13 +1013,6 @@ $params['force'] = (boolean) True if the data frame analytics should be $params['timeout'] = (time) Controls the time to wait until the task has stopped. Defaults to 20 seconds $params['body'] = (array) The stop data frame analytics parameters */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->stopDataFrameAnalytics($params); ---- **** @@ -1268,21 +1020,17 @@ $response = $client->ml()->stopDataFrameAnalytics($params); [[Elasticsearch_Namespaces_MlNamespacestopDatafeed_stopDatafeed]] .`stopDatafeed()` +[[Elasticsearch_Namespaces_MlNamespacestopDatafeed_stopDatafeed]] +.`stopDatafeed(array $params = [])` **** [source,php] ---- /* $params['datafeed_id'] = (string) The ID of the datafeed to stop +$params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified) $params['allow_no_datafeeds'] = (boolean) Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified) $params['force'] = (boolean) True if the datafeed should be forcefully stopped. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->stopDatafeed($params); ---- **** @@ -1290,7 +1038,9 @@ $response = $client->ml()->stopDatafeed($params); [[Elasticsearch_Namespaces_MlNamespaceupdateDataFrameAnalytics_updateDataFrameAnalytics]] .`updateDataFrameAnalytics()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +*NOTE:* This API is BETA and may change in ways that are not backwards compatible +[[Elasticsearch_Namespaces_MlNamespaceupdateDataFrameAnalytics_updateDataFrameAnalytics]] +.`updateDataFrameAnalytics(array $params = [])` **** [source,php] ---- @@ -1298,13 +1048,6 @@ $response = $client->ml()->stopDatafeed($params); $params['id'] = (string) The ID of the data frame analytics to update $params['body'] = (array) The data frame analytics settings to update (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->updateDataFrameAnalytics($params); ---- **** @@ -1312,6 +1055,8 @@ $response = $client->ml()->updateDataFrameAnalytics($params); [[Elasticsearch_Namespaces_MlNamespaceupdateDatafeed_updateDatafeed]] .`updateDatafeed()` +[[Elasticsearch_Namespaces_MlNamespaceupdateDatafeed_updateDatafeed]] +.`updateDatafeed(array $params = [])` **** [source,php] ---- @@ -1323,13 +1068,6 @@ $params['ignore_throttled'] = (boolean) Ignore indices that are marked as thro $params['expand_wildcards'] = (enum) Whether source index expressions should get expanded to open or closed indices (default: open) (Options = open,closed,hidden,none,all) $params['body'] = (array) The datafeed update settings (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->updateDatafeed($params); ---- **** @@ -1337,6 +1075,8 @@ $response = $client->ml()->updateDatafeed($params); [[Elasticsearch_Namespaces_MlNamespaceupdateFilter_updateFilter]] .`updateFilter()` +[[Elasticsearch_Namespaces_MlNamespaceupdateFilter_updateFilter]] +.`updateFilter(array $params = [])` **** [source,php] ---- @@ -1344,13 +1084,6 @@ $response = $client->ml()->updateDatafeed($params); $params['filter_id'] = (string) The ID of the filter to update $params['body'] = (array) The filter update (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->updateFilter($params); ---- **** @@ -1358,6 +1091,8 @@ $response = $client->ml()->updateFilter($params); [[Elasticsearch_Namespaces_MlNamespaceupdateJob_updateJob]] .`updateJob()` +[[Elasticsearch_Namespaces_MlNamespaceupdateJob_updateJob]] +.`updateJob(array $params = [])` **** [source,php] ---- @@ -1365,13 +1100,6 @@ $response = $client->ml()->updateFilter($params); $params['job_id'] = (string) The ID of the job to create $params['body'] = (array) The job update settings (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->updateJob($params); ---- **** @@ -1379,6 +1107,8 @@ $response = $client->ml()->updateJob($params); [[Elasticsearch_Namespaces_MlNamespaceupdateModelSnapshot_updateModelSnapshot]] .`updateModelSnapshot()` +[[Elasticsearch_Namespaces_MlNamespaceupdateModelSnapshot_updateModelSnapshot]] +.`updateModelSnapshot(array $params = [])` **** [source,php] ---- @@ -1387,13 +1117,23 @@ $params['job_id'] = (string) The ID of the job to fetch $params['snapshot_id'] = (string) The ID of the snapshot to update $params['body'] = (array) The model snapshot properties to update (Required) */ +---- +**** -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->ml()->updateModelSnapshot($params); + +[[Elasticsearch_Namespaces_MlNamespaceupgradeJobSnapshot_upgradeJobSnapshot]] +.`upgradeJobSnapshot()` +[[Elasticsearch_Namespaces_MlNamespaceupgradeJobSnapshot_upgradeJobSnapshot]] +.`upgradeJobSnapshot(array $params = [])` +**** +[source,php] +---- +/* +$params['job_id'] = (string) The ID of the job +$params['snapshot_id'] = (string) The ID of the snapshot +$params['timeout'] = (time) How long should the API wait for the job to be opened and the old snapshot to be loaded. +*/ ---- **** @@ -1401,19 +1141,14 @@ $response = $client->ml()->updateModelSnapshot($params); [[Elasticsearch_Namespaces_MlNamespacevalidate_validate]] .`validate()` +[[Elasticsearch_Namespaces_MlNamespacevalidate_validate]] +.`validate(array $params = [])` **** [source,php] ---- /* $params['body'] = (array) The job config (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->validate($params); ---- **** @@ -1421,19 +1156,14 @@ $response = $client->ml()->validate($params); [[Elasticsearch_Namespaces_MlNamespacevalidateDetector_validateDetector]] .`validateDetector()` +[[Elasticsearch_Namespaces_MlNamespacevalidateDetector_validateDetector]] +.`validateDetector(array $params = [])` **** [source,php] ---- /* $params['body'] = (array) The detector (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ml()->validateDetector($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/MonitoringNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/MonitoringNamespace.asciidoc index d5479ab39..6406b7df6 100644 --- a/docs/build/Elasticsearch/Namespaces/MonitoringNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/MonitoringNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_MonitoringNamespace]] === Elasticsearch\Namespaces\MonitoringNamespace Class MonitoringNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -20,6 +25,8 @@ The class defines the following methods: [[Elasticsearch_Namespaces_MonitoringNamespacebulk_bulk]] .`bulk()` *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_MonitoringNamespacebulk_bulk]] +.`bulk(array $params = [])` **** [source,php] ---- @@ -30,13 +37,6 @@ $params['system_api_version'] = (string) API Version of the monitored system $params['interval'] = (string) Collection interval (e.g., '10s' or '10000ms') of the payload $params['body'] = (array) The operation definition and data (action-data pairs), separated by newlines (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->monitoring()->bulk($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/NodesNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/NodesNamespace.asciidoc index 3ea270649..48e45ff25 100644 --- a/docs/build/Elasticsearch/Namespaces/NodesNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/NodesNamespace.asciidoc @@ -1,11 +1,17 @@ -[discrete] + + [[Elasticsearch_Namespaces_NodesNamespace]] === Elasticsearch\Namespaces\NodesNamespace Class NodesNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -22,6 +28,8 @@ The class defines the following methods: [[Elasticsearch_Namespaces_NodesNamespacehotThreads_hotThreads]] .`hotThreads()` +[[Elasticsearch_Namespaces_NodesNamespacehotThreads_hotThreads]] +.`hotThreads(array $params = [])` **** [source,php] ---- @@ -34,13 +42,6 @@ $params['ignore_idle_threads'] = (boolean) Don't show threads that are in known- $params['type'] = (enum) The type to sample (default: cpu) (Options = cpu,wait,block) $params['timeout'] = (time) Explicit operation timeout */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->nodes()->hotThreads($params); ---- **** @@ -48,6 +49,8 @@ $response = $client->nodes()->hotThreads($params); [[Elasticsearch_Namespaces_NodesNamespaceinfo_info]] .`info()` +[[Elasticsearch_Namespaces_NodesNamespaceinfo_info]] +.`info(array $params = [])` **** [source,php] ---- @@ -55,13 +58,6 @@ $response = $client->nodes()->hotThreads($params); $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes $params['metric'] = (list) A comma-separated list of metrics you wish returned. Leave empty to return all. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->nodes()->info($params); ---- **** @@ -69,19 +65,14 @@ $response = $client->nodes()->info($params); [[Elasticsearch_Namespaces_NodesNamespacereloadSecureSettings_reloadSecureSettings]] .`reloadSecureSettings()` +[[Elasticsearch_Namespaces_NodesNamespacereloadSecureSettings_reloadSecureSettings]] +.`reloadSecureSettings(array $params = [])` **** [source,php] ---- /* $params['node_id'] = (list) A comma-separated list of node IDs to span the reload/reinit call. Should stay empty because reloading usually involves all cluster nodes. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->nodes()->reloadSecureSettings($params); ---- **** @@ -89,6 +80,8 @@ $response = $client->nodes()->reloadSecureSettings($params); [[Elasticsearch_Namespaces_NodesNamespacestats_stats]] .`stats()` +[[Elasticsearch_Namespaces_NodesNamespacestats_stats]] +.`stats(array $params = [])` **** [source,php] ---- @@ -97,13 +90,6 @@ $params['node_id'] = (list) A comma-separated list of node ID $params['metric'] = (list) Limit the information returned to the specified metrics $params['index_metric'] = (list) Limit the information returned for `indices` metric to the specific index metrics. Isn't used if `indices` (or `all`) metric isn't specified. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->nodes()->stats($params); ---- **** @@ -111,6 +97,8 @@ $response = $client->nodes()->stats($params); [[Elasticsearch_Namespaces_NodesNamespaceusage_usage]] .`usage()` +[[Elasticsearch_Namespaces_NodesNamespaceusage_usage]] +.`usage(array $params = [])` **** [source,php] ---- @@ -119,13 +107,6 @@ $params['node_id'] = (list) A comma-separated list of node IDs or names to limit $params['metric'] = (list) Limit the information returned to the specified metrics $params['timeout'] = (time) Explicit operation timeout */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->nodes()->usage($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/RollupNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/RollupNamespace.asciidoc index 4378c7542..1faf7d23c 100644 --- a/docs/build/Elasticsearch/Namespaces/RollupNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/RollupNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_RollupNamespace]] === Elasticsearch\Namespaces\RollupNamespace Class RollupNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -18,6 +23,7 @@ The class defines the following methods: * <> * <> * <> +* <> * <> * <> * <> @@ -27,19 +33,14 @@ The class defines the following methods: [[Elasticsearch_Namespaces_RollupNamespacedeleteJob_deleteJob]] .`deleteJob()` *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_RollupNamespacedeleteJob_deleteJob]] +.`deleteJob(array $params = [])` **** [source,php] ---- /* $params['id'] = (string) The ID of the job to delete */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->rollup()->deleteJob($params); ---- **** @@ -48,19 +49,14 @@ $response = $client->rollup()->deleteJob($params); [[Elasticsearch_Namespaces_RollupNamespacegetJobs_getJobs]] .`getJobs()` *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_RollupNamespacegetJobs_getJobs]] +.`getJobs(array $params = [])` **** [source,php] ---- /* $params['id'] = (string) The ID of the job(s) to fetch. Accepts glob patterns, or left blank for all jobs */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->rollup()->getJobs($params); ---- **** @@ -69,19 +65,14 @@ $response = $client->rollup()->getJobs($params); [[Elasticsearch_Namespaces_RollupNamespacegetRollupCaps_getRollupCaps]] .`getRollupCaps()` *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_RollupNamespacegetRollupCaps_getRollupCaps]] +.`getRollupCaps(array $params = [])` **** [source,php] ---- /* $params['id'] = (string) The ID of the index to check rollup capabilities on, or left blank for all jobs */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->rollup()->getRollupCaps($params); ---- **** @@ -90,19 +81,14 @@ $response = $client->rollup()->getRollupCaps($params); [[Elasticsearch_Namespaces_RollupNamespacegetRollupIndexCaps_getRollupIndexCaps]] .`getRollupIndexCaps()` *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_RollupNamespacegetRollupIndexCaps_getRollupIndexCaps]] +.`getRollupIndexCaps(array $params = [])` **** [source,php] ---- /* $params['index'] = (string) The rollup index or index pattern to obtain rollup capabilities from. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->rollup()->getRollupIndexCaps($params); ---- **** @@ -111,6 +97,8 @@ $response = $client->rollup()->getRollupIndexCaps($params); [[Elasticsearch_Namespaces_RollupNamespaceputJob_putJob]] .`putJob()` *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_RollupNamespaceputJob_putJob]] +.`putJob(array $params = [])` **** [source,php] ---- @@ -118,13 +106,23 @@ $response = $client->rollup()->getRollupIndexCaps($params); $params['id'] = (string) The ID of the job to create $params['body'] = (array) The job configuration (Required) */ +---- +**** + -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->rollup()->putJob($params); +[[Elasticsearch_Namespaces_RollupNamespacerollup_rollup]] +.`rollup()` +[[Elasticsearch_Namespaces_RollupNamespacerollup_rollup]] +.`rollup(array $params = [])` +**** +[source,php] +---- +/* +$params['index'] = (string) The index to roll up +$params['rollup_index'] = (string) The name of the rollup index to create +$params['body'] = (array) The rollup configuration (Required) +*/ ---- **** @@ -133,6 +131,8 @@ $response = $client->rollup()->putJob($params); [[Elasticsearch_Namespaces_RollupNamespacerollupSearch_rollupSearch]] .`rollupSearch()` *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_RollupNamespacerollupSearch_rollupSearch]] +.`rollupSearch(array $params = [])` **** [source,php] ---- @@ -143,13 +143,6 @@ $params['typed_keys'] = (boolean) Specify whether aggregation and su $params['rest_total_hits_as_int'] = (boolean) Indicates whether hits.total should be rendered as an integer or an object in the rest search response (Default = false) $params['body'] = (array) The search request body (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->rollup()->rollupSearch($params); ---- **** @@ -158,19 +151,14 @@ $response = $client->rollup()->rollupSearch($params); [[Elasticsearch_Namespaces_RollupNamespacestartJob_startJob]] .`startJob()` *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_RollupNamespacestartJob_startJob]] +.`startJob(array $params = [])` **** [source,php] ---- /* $params['id'] = (string) The ID of the job to start */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->rollup()->startJob($params); ---- **** @@ -179,6 +167,8 @@ $response = $client->rollup()->startJob($params); [[Elasticsearch_Namespaces_RollupNamespacestopJob_stopJob]] .`stopJob()` *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_RollupNamespacestopJob_stopJob]] +.`stopJob(array $params = [])` **** [source,php] ---- @@ -186,13 +176,6 @@ $response = $client->rollup()->startJob($params); $params['id'] = (string) The ID of the job to stop $params['wait_for_completion'] = (boolean) True if the API should block until the job has fully stopped, false if should be executed async. Defaults to false. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->rollup()->stopJob($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.asciidoc index e7f50cd44..09c7371b1 100644 --- a/docs/build/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_SearchableSnapshotsNamespace]] === Elasticsearch\Namespaces\SearchableSnapshotsNamespace Class SearchableSnapshotsNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -23,6 +28,8 @@ The class defines the following methods: [[Elasticsearch_Namespaces_SearchableSnapshotsNamespaceclearCache_clearCache]] .`clearCache()` *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_SearchableSnapshotsNamespaceclearCache_clearCache]] +.`clearCache(array $params = [])` **** [source,php] ---- @@ -32,13 +39,6 @@ $params['ignore_unavailable'] = (boolean) Whether specified concrete indices sho $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,none,all) (Default = open) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->searchablesnapshots()->clearCache($params); ---- **** @@ -47,6 +47,8 @@ $response = $client->searchablesnapshots()->clearCache($params); [[Elasticsearch_Namespaces_SearchableSnapshotsNamespacemount_mount]] .`mount()` *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_SearchableSnapshotsNamespacemount_mount]] +.`mount(array $params = [])` **** [source,php] ---- @@ -55,15 +57,9 @@ $params['repository'] = (string) The name of the repository containing $params['snapshot'] = (string) The name of the snapshot of the index to mount $params['master_timeout'] = (time) Explicit operation timeout for connection to master node $params['wait_for_completion'] = (boolean) Should this request wait until the operation has completed before returning (Default = false) +$params['storage'] = (string) Selects the kind of local storage used to accelerate searches. Experimental, and defaults to `full_copy` (Default = ) $params['body'] = (array) The restore configuration for mounting the snapshot as searchable (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->searchablesnapshots()->mount($params); ---- **** @@ -72,19 +68,14 @@ $response = $client->searchablesnapshots()->mount($params); [[Elasticsearch_Namespaces_SearchableSnapshotsNamespacerepositoryStats_repositoryStats]] .`repositoryStats()` *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_SearchableSnapshotsNamespacerepositoryStats_repositoryStats]] +.`repositoryStats(array $params = [])` **** [source,php] ---- /* $params['repository'] = (string) The repository for which to get the stats for */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->searchablesnapshots()->repositoryStats($params); ---- **** @@ -93,19 +84,15 @@ $response = $client->searchablesnapshots()->repositoryStats($params); [[Elasticsearch_Namespaces_SearchableSnapshotsNamespacestats_stats]] .`stats()` *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_SearchableSnapshotsNamespacestats_stats]] +.`stats(array $params = [])` **** [source,php] ---- /* $params['index'] = (list) A comma-separated list of index names +$params['level'] = (enum) Return stats aggregated at cluster, index or shard level (Options = cluster,indices,shards) (Default = indices) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->searchablesnapshots()->stats($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/SecurityNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/SecurityNamespace.asciidoc index f4ab65f29..8ebc6c0db 100644 --- a/docs/build/Elasticsearch/Namespaces/SecurityNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/SecurityNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_SecurityNamespace]] === Elasticsearch\Namespaces\SecurityNamespace Class SecurityNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -15,6 +20,7 @@ The class defines the following methods: * <> * <> +* <> * <> * <> * <> @@ -33,6 +39,7 @@ The class defines the following methods: * <> * <> * <> +* <> * <> * <> * <> @@ -45,18 +52,13 @@ The class defines the following methods: [[Elasticsearch_Namespaces_SecurityNamespaceauthenticate_authenticate]] .`authenticate()` +[[Elasticsearch_Namespaces_SecurityNamespaceauthenticate_authenticate]] +.`authenticate(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->authenticate($params); ---- **** @@ -64,6 +66,8 @@ $response = $client->security()->authenticate($params); [[Elasticsearch_Namespaces_SecurityNamespacechangePassword_changePassword]] .`changePassword()` +[[Elasticsearch_Namespaces_SecurityNamespacechangePassword_changePassword]] +.`changePassword(array $params = [])` **** [source,php] ---- @@ -72,13 +76,21 @@ $params['username'] = (string) The username of the user to change the password f $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) $params['body'] = (array) the new password for the user (Required) */ +---- +**** -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->security()->changePassword($params); + +[[Elasticsearch_Namespaces_SecurityNamespaceclearApiKeyCache_clearApiKeyCache]] +.`clearApiKeyCache()` +[[Elasticsearch_Namespaces_SecurityNamespaceclearApiKeyCache_clearApiKeyCache]] +.`clearApiKeyCache(array $params = [])` +**** +[source,php] +---- +/* +$params['ids'] = (list) A comma-separated list of IDs of API keys to clear from the cache +*/ ---- **** @@ -86,19 +98,14 @@ $response = $client->security()->changePassword($params); [[Elasticsearch_Namespaces_SecurityNamespaceclearCachedPrivileges_clearCachedPrivileges]] .`clearCachedPrivileges()` +[[Elasticsearch_Namespaces_SecurityNamespaceclearCachedPrivileges_clearCachedPrivileges]] +.`clearCachedPrivileges(array $params = [])` **** [source,php] ---- /* $params['application'] = (list) A comma-separated list of application names */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->clearCachedPrivileges($params); ---- **** @@ -106,6 +113,8 @@ $response = $client->security()->clearCachedPrivileges($params); [[Elasticsearch_Namespaces_SecurityNamespaceclearCachedRealms_clearCachedRealms]] .`clearCachedRealms()` +[[Elasticsearch_Namespaces_SecurityNamespaceclearCachedRealms_clearCachedRealms]] +.`clearCachedRealms(array $params = [])` **** [source,php] ---- @@ -113,13 +122,6 @@ $response = $client->security()->clearCachedPrivileges($params); $params['realms'] = (list) Comma-separated list of realms to clear $params['usernames'] = (list) Comma-separated list of usernames to clear from the cache */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->clearCachedRealms($params); ---- **** @@ -127,19 +129,14 @@ $response = $client->security()->clearCachedRealms($params); [[Elasticsearch_Namespaces_SecurityNamespaceclearCachedRoles_clearCachedRoles]] .`clearCachedRoles()` +[[Elasticsearch_Namespaces_SecurityNamespaceclearCachedRoles_clearCachedRoles]] +.`clearCachedRoles(array $params = [])` **** [source,php] ---- /* $params['name'] = (list) Role name */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->clearCachedRoles($params); ---- **** @@ -147,6 +144,8 @@ $response = $client->security()->clearCachedRoles($params); [[Elasticsearch_Namespaces_SecurityNamespacecreateApiKey_createApiKey]] .`createApiKey()` +[[Elasticsearch_Namespaces_SecurityNamespacecreateApiKey_createApiKey]] +.`createApiKey(array $params = [])` **** [source,php] ---- @@ -154,13 +153,6 @@ $response = $client->security()->clearCachedRoles($params); $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) $params['body'] = (array) The api key request to create an API key (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->createApiKey($params); ---- **** @@ -168,6 +160,8 @@ $response = $client->security()->createApiKey($params); [[Elasticsearch_Namespaces_SecurityNamespacedeletePrivileges_deletePrivileges]] .`deletePrivileges()` +[[Elasticsearch_Namespaces_SecurityNamespacedeletePrivileges_deletePrivileges]] +.`deletePrivileges(array $params = [])` **** [source,php] ---- @@ -176,13 +170,6 @@ $params['application'] = (string) Application name $params['name'] = (string) Privilege name $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->deletePrivileges($params); ---- **** @@ -190,6 +177,8 @@ $response = $client->security()->deletePrivileges($params); [[Elasticsearch_Namespaces_SecurityNamespacedeleteRole_deleteRole]] .`deleteRole()` +[[Elasticsearch_Namespaces_SecurityNamespacedeleteRole_deleteRole]] +.`deleteRole(array $params = [])` **** [source,php] ---- @@ -197,13 +186,6 @@ $response = $client->security()->deletePrivileges($params); $params['name'] = (string) Role name $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->deleteRole($params); ---- **** @@ -211,6 +193,8 @@ $response = $client->security()->deleteRole($params); [[Elasticsearch_Namespaces_SecurityNamespacedeleteRoleMapping_deleteRoleMapping]] .`deleteRoleMapping()` +[[Elasticsearch_Namespaces_SecurityNamespacedeleteRoleMapping_deleteRoleMapping]] +.`deleteRoleMapping(array $params = [])` **** [source,php] ---- @@ -218,13 +202,6 @@ $response = $client->security()->deleteRole($params); $params['name'] = (string) Role-mapping name $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->deleteRoleMapping($params); ---- **** @@ -232,6 +209,8 @@ $response = $client->security()->deleteRoleMapping($params); [[Elasticsearch_Namespaces_SecurityNamespacedeleteUser_deleteUser]] .`deleteUser()` +[[Elasticsearch_Namespaces_SecurityNamespacedeleteUser_deleteUser]] +.`deleteUser(array $params = [])` **** [source,php] ---- @@ -239,13 +218,6 @@ $response = $client->security()->deleteRoleMapping($params); $params['username'] = (string) username $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->deleteUser($params); ---- **** @@ -253,6 +225,8 @@ $response = $client->security()->deleteUser($params); [[Elasticsearch_Namespaces_SecurityNamespacedisableUser_disableUser]] .`disableUser()` +[[Elasticsearch_Namespaces_SecurityNamespacedisableUser_disableUser]] +.`disableUser(array $params = [])` **** [source,php] ---- @@ -260,13 +234,6 @@ $response = $client->security()->deleteUser($params); $params['username'] = (string) The username of the user to disable $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->disableUser($params); ---- **** @@ -274,6 +241,8 @@ $response = $client->security()->disableUser($params); [[Elasticsearch_Namespaces_SecurityNamespaceenableUser_enableUser]] .`enableUser()` +[[Elasticsearch_Namespaces_SecurityNamespaceenableUser_enableUser]] +.`enableUser(array $params = [])` **** [source,php] ---- @@ -281,13 +250,6 @@ $response = $client->security()->disableUser($params); $params['username'] = (string) The username of the user to enable $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->enableUser($params); ---- **** @@ -295,6 +257,8 @@ $response = $client->security()->enableUser($params); [[Elasticsearch_Namespaces_SecurityNamespacegetApiKey_getApiKey]] .`getApiKey()` +[[Elasticsearch_Namespaces_SecurityNamespacegetApiKey_getApiKey]] +.`getApiKey(array $params = [])` **** [source,php] ---- @@ -305,13 +269,6 @@ $params['username'] = (string) user name of the user who created this API key $params['realm_name'] = (string) realm name of the user who created this API key to be retrieved $params['owner'] = (boolean) flag to query API keys owned by the currently authenticated user (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->getApiKey($params); ---- **** @@ -319,18 +276,13 @@ $response = $client->security()->getApiKey($params); [[Elasticsearch_Namespaces_SecurityNamespacegetBuiltinPrivileges_getBuiltinPrivileges]] .`getBuiltinPrivileges()` +[[Elasticsearch_Namespaces_SecurityNamespacegetBuiltinPrivileges_getBuiltinPrivileges]] +.`getBuiltinPrivileges(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->getBuiltinPrivileges($params); ---- **** @@ -338,6 +290,8 @@ $response = $client->security()->getBuiltinPrivileges($params); [[Elasticsearch_Namespaces_SecurityNamespacegetPrivileges_getPrivileges]] .`getPrivileges()` +[[Elasticsearch_Namespaces_SecurityNamespacegetPrivileges_getPrivileges]] +.`getPrivileges(array $params = [])` **** [source,php] ---- @@ -345,13 +299,6 @@ $response = $client->security()->getBuiltinPrivileges($params); $params['application'] = (string) Application name $params['name'] = (string) Privilege name */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->getPrivileges($params); ---- **** @@ -359,19 +306,14 @@ $response = $client->security()->getPrivileges($params); [[Elasticsearch_Namespaces_SecurityNamespacegetRole_getRole]] .`getRole()` +[[Elasticsearch_Namespaces_SecurityNamespacegetRole_getRole]] +.`getRole(array $params = [])` **** [source,php] ---- /* -$params['name'] = (string) Role name +$params['name'] = (list) A comma-separated list of role names */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->getRole($params); ---- **** @@ -379,19 +321,14 @@ $response = $client->security()->getRole($params); [[Elasticsearch_Namespaces_SecurityNamespacegetRoleMapping_getRoleMapping]] .`getRoleMapping()` +[[Elasticsearch_Namespaces_SecurityNamespacegetRoleMapping_getRoleMapping]] +.`getRoleMapping(array $params = [])` **** [source,php] ---- /* -$params['name'] = (string) Role-Mapping name +$params['name'] = (list) A comma-separated list of role-mapping names */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->getRoleMapping($params); ---- **** @@ -399,19 +336,14 @@ $response = $client->security()->getRoleMapping($params); [[Elasticsearch_Namespaces_SecurityNamespacegetToken_getToken]] .`getToken()` +[[Elasticsearch_Namespaces_SecurityNamespacegetToken_getToken]] +.`getToken(array $params = [])` **** [source,php] ---- /* $params['body'] = (array) The token request to get (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->getToken($params); ---- **** @@ -419,19 +351,14 @@ $response = $client->security()->getToken($params); [[Elasticsearch_Namespaces_SecurityNamespacegetUser_getUser]] .`getUser()` +[[Elasticsearch_Namespaces_SecurityNamespacegetUser_getUser]] +.`getUser(array $params = [])` **** [source,php] ---- /* $params['username'] = (list) A comma-separated list of usernames */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->getUser($params); ---- **** @@ -439,18 +366,29 @@ $response = $client->security()->getUser($params); [[Elasticsearch_Namespaces_SecurityNamespacegetUserPrivileges_getUserPrivileges]] .`getUserPrivileges()` +[[Elasticsearch_Namespaces_SecurityNamespacegetUserPrivileges_getUserPrivileges]] +.`getUserPrivileges(array $params = [])` **** [source,php] ---- /* */ +---- +**** + -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->security()->getUserPrivileges($params); +[[Elasticsearch_Namespaces_SecurityNamespacegrantApiKey_grantApiKey]] +.`grantApiKey()` +[[Elasticsearch_Namespaces_SecurityNamespacegrantApiKey_grantApiKey]] +.`grantApiKey(array $params = [])` +**** +[source,php] +---- +/* +$params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) +$params['body'] = (array) The api key request to create an API key (Required) +*/ ---- **** @@ -458,6 +396,8 @@ $response = $client->security()->getUserPrivileges($params); [[Elasticsearch_Namespaces_SecurityNamespacehasPrivileges_hasPrivileges]] .`hasPrivileges()` +[[Elasticsearch_Namespaces_SecurityNamespacehasPrivileges_hasPrivileges]] +.`hasPrivileges(array $params = [])` **** [source,php] ---- @@ -465,13 +405,6 @@ $response = $client->security()->getUserPrivileges($params); $params['user'] = (string) Username $params['body'] = (array) The privileges to test (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->hasPrivileges($params); ---- **** @@ -479,18 +412,13 @@ $response = $client->security()->hasPrivileges($params); [[Elasticsearch_Namespaces_SecurityNamespaceinvalidateApiKey_invalidateApiKey]] .`invalidateApiKey()` +[[Elasticsearch_Namespaces_SecurityNamespaceinvalidateApiKey_invalidateApiKey]] +.`invalidateApiKey(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->invalidateApiKey($params); ---- **** @@ -498,19 +426,14 @@ $response = $client->security()->invalidateApiKey($params); [[Elasticsearch_Namespaces_SecurityNamespaceinvalidateToken_invalidateToken]] .`invalidateToken()` +[[Elasticsearch_Namespaces_SecurityNamespaceinvalidateToken_invalidateToken]] +.`invalidateToken(array $params = [])` **** [source,php] ---- /* $params['body'] = (array) The token to invalidate (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->invalidateToken($params); ---- **** @@ -518,6 +441,8 @@ $response = $client->security()->invalidateToken($params); [[Elasticsearch_Namespaces_SecurityNamespaceputPrivileges_putPrivileges]] .`putPrivileges()` +[[Elasticsearch_Namespaces_SecurityNamespaceputPrivileges_putPrivileges]] +.`putPrivileges(array $params = [])` **** [source,php] ---- @@ -525,13 +450,6 @@ $response = $client->security()->invalidateToken($params); $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) $params['body'] = (array) The privilege(s) to add (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->putPrivileges($params); ---- **** @@ -539,6 +457,8 @@ $response = $client->security()->putPrivileges($params); [[Elasticsearch_Namespaces_SecurityNamespaceputRole_putRole]] .`putRole()` +[[Elasticsearch_Namespaces_SecurityNamespaceputRole_putRole]] +.`putRole(array $params = [])` **** [source,php] ---- @@ -547,13 +467,6 @@ $params['name'] = (string) Role name $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) $params['body'] = (array) The role to add (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->putRole($params); ---- **** @@ -561,6 +474,8 @@ $response = $client->security()->putRole($params); [[Elasticsearch_Namespaces_SecurityNamespaceputRoleMapping_putRoleMapping]] .`putRoleMapping()` +[[Elasticsearch_Namespaces_SecurityNamespaceputRoleMapping_putRoleMapping]] +.`putRoleMapping(array $params = [])` **** [source,php] ---- @@ -569,13 +484,6 @@ $params['name'] = (string) Role-mapping name $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) $params['body'] = (array) The role mapping to add (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->putRoleMapping($params); ---- **** @@ -583,6 +491,8 @@ $response = $client->security()->putRoleMapping($params); [[Elasticsearch_Namespaces_SecurityNamespaceputUser_putUser]] .`putUser()` +[[Elasticsearch_Namespaces_SecurityNamespaceputUser_putUser]] +.`putUser(array $params = [])` **** [source,php] ---- @@ -591,13 +501,6 @@ $params['username'] = (string) The username of the User $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) $params['body'] = (array) The user to add (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->security()->putUser($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/SlmNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/SlmNamespace.asciidoc index 9cb1e73f5..9128ab31e 100644 --- a/docs/build/Elasticsearch/Namespaces/SlmNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/SlmNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_SlmNamespace]] === Elasticsearch\Namespaces\SlmNamespace Class SlmNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -27,19 +32,14 @@ The class defines the following methods: [[Elasticsearch_Namespaces_SlmNamespacedeleteLifecycle_deleteLifecycle]] .`deleteLifecycle()` +[[Elasticsearch_Namespaces_SlmNamespacedeleteLifecycle_deleteLifecycle]] +.`deleteLifecycle(array $params = [])` **** [source,php] ---- /* $params['policy_id'] = (string) The id of the snapshot lifecycle policy to remove */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->slm()->deleteLifecycle($params); ---- **** @@ -47,19 +47,14 @@ $response = $client->slm()->deleteLifecycle($params); [[Elasticsearch_Namespaces_SlmNamespaceexecuteLifecycle_executeLifecycle]] .`executeLifecycle()` +[[Elasticsearch_Namespaces_SlmNamespaceexecuteLifecycle_executeLifecycle]] +.`executeLifecycle(array $params = [])` **** [source,php] ---- /* $params['policy_id'] = (string) The id of the snapshot lifecycle policy to be executed */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->slm()->executeLifecycle($params); ---- **** @@ -67,18 +62,13 @@ $response = $client->slm()->executeLifecycle($params); [[Elasticsearch_Namespaces_SlmNamespaceexecuteRetention_executeRetention]] .`executeRetention()` +[[Elasticsearch_Namespaces_SlmNamespaceexecuteRetention_executeRetention]] +.`executeRetention(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->slm()->executeRetention($params); ---- **** @@ -86,19 +76,14 @@ $response = $client->slm()->executeRetention($params); [[Elasticsearch_Namespaces_SlmNamespacegetLifecycle_getLifecycle]] .`getLifecycle()` +[[Elasticsearch_Namespaces_SlmNamespacegetLifecycle_getLifecycle]] +.`getLifecycle(array $params = [])` **** [source,php] ---- /* $params['policy_id'] = (list) Comma-separated list of snapshot lifecycle policies to retrieve */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->slm()->getLifecycle($params); ---- **** @@ -106,18 +91,13 @@ $response = $client->slm()->getLifecycle($params); [[Elasticsearch_Namespaces_SlmNamespacegetStats_getStats]] .`getStats()` +[[Elasticsearch_Namespaces_SlmNamespacegetStats_getStats]] +.`getStats(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->slm()->getStats($params); ---- **** @@ -125,18 +105,13 @@ $response = $client->slm()->getStats($params); [[Elasticsearch_Namespaces_SlmNamespacegetStatus_getStatus]] .`getStatus()` +[[Elasticsearch_Namespaces_SlmNamespacegetStatus_getStatus]] +.`getStatus(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->slm()->getStatus($params); ---- **** @@ -144,6 +119,8 @@ $response = $client->slm()->getStatus($params); [[Elasticsearch_Namespaces_SlmNamespaceputLifecycle_putLifecycle]] .`putLifecycle()` +[[Elasticsearch_Namespaces_SlmNamespaceputLifecycle_putLifecycle]] +.`putLifecycle(array $params = [])` **** [source,php] ---- @@ -151,13 +128,6 @@ $response = $client->slm()->getStatus($params); $params['policy_id'] = (string) The id of the snapshot lifecycle policy $params['body'] = (array) The snapshot lifecycle policy definition to register */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->slm()->putLifecycle($params); ---- **** @@ -165,18 +135,13 @@ $response = $client->slm()->putLifecycle($params); [[Elasticsearch_Namespaces_SlmNamespacestart_start]] .`start()` +[[Elasticsearch_Namespaces_SlmNamespacestart_start]] +.`start(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->slm()->start($params); ---- **** @@ -184,18 +149,13 @@ $response = $client->slm()->start($params); [[Elasticsearch_Namespaces_SlmNamespacestop_stop]] .`stop()` +[[Elasticsearch_Namespaces_SlmNamespacestop_stop]] +.`stop(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->slm()->stop($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/SnapshotNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/SnapshotNamespace.asciidoc index cd30a8954..b384c056d 100644 --- a/docs/build/Elasticsearch/Namespaces/SnapshotNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/SnapshotNamespace.asciidoc @@ -1,11 +1,17 @@ -[discrete] + + [[Elasticsearch_Namespaces_SnapshotNamespace]] === Elasticsearch\Namespaces\SnapshotNamespace Class SnapshotNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -13,6 +19,7 @@ Generated running $ php util/GenerateEndpoints.php 7.9 The class defines the following methods: * <> +* <> * <> * <> * <> @@ -27,6 +34,8 @@ The class defines the following methods: [[Elasticsearch_Namespaces_SnapshotNamespacecleanupRepository_cleanupRepository]] .`cleanupRepository()` +[[Elasticsearch_Namespaces_SnapshotNamespacecleanupRepository_cleanupRepository]] +.`cleanupRepository(array $params = [])` **** [source,php] ---- @@ -35,13 +44,25 @@ $params['repository'] = (string) A repository name $params['master_timeout'] = (time) Explicit operation timeout for connection to master node $params['timeout'] = (time) Explicit operation timeout */ +---- +**** + -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->snapshot()->cleanupRepository($params); +[[Elasticsearch_Namespaces_SnapshotNamespaceclone_clone]] +.`clone()` +[[Elasticsearch_Namespaces_SnapshotNamespaceclone_clone]] +.`clone(array $params = [])` +**** +[source,php] +---- +/* +$params['repository'] = (string) A repository name +$params['snapshot'] = (string) The name of the snapshot to clone from +$params['target_snapshot'] = (string) The name of the cloned snapshot to create +$params['master_timeout'] = (time) Explicit operation timeout for connection to master node +$params['body'] = (array) The snapshot clone definition (Required) +*/ ---- **** @@ -49,6 +70,8 @@ $response = $client->snapshot()->cleanupRepository($params); [[Elasticsearch_Namespaces_SnapshotNamespacecreate_create]] .`create()` +[[Elasticsearch_Namespaces_SnapshotNamespacecreate_create]] +.`create(array $params = [])` **** [source,php] ---- @@ -59,13 +82,6 @@ $params['master_timeout'] = (time) Explicit operation timeout for connectio $params['wait_for_completion'] = (boolean) Should this request wait until the operation has completed before returning (Default = false) $params['body'] = (array) The snapshot definition */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->snapshot()->create($params); ---- **** @@ -73,6 +89,8 @@ $response = $client->snapshot()->create($params); [[Elasticsearch_Namespaces_SnapshotNamespacecreateRepository_createRepository]] .`createRepository()` +[[Elasticsearch_Namespaces_SnapshotNamespacecreateRepository_createRepository]] +.`createRepository(array $params = [])` **** [source,php] ---- @@ -83,13 +101,6 @@ $params['timeout'] = (time) Explicit operation timeout $params['verify'] = (boolean) Whether to verify the repository after creation $params['body'] = (array) The repository definition (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->snapshot()->createRepository($params); ---- **** @@ -97,6 +108,8 @@ $response = $client->snapshot()->createRepository($params); [[Elasticsearch_Namespaces_SnapshotNamespacedelete_delete]] .`delete()` +[[Elasticsearch_Namespaces_SnapshotNamespacedelete_delete]] +.`delete(array $params = [])` **** [source,php] ---- @@ -105,13 +118,6 @@ $params['repository'] = (string) A repository name $params['snapshot'] = (string) A snapshot name $params['master_timeout'] = (time) Explicit operation timeout for connection to master node */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->snapshot()->delete($params); ---- **** @@ -119,19 +125,14 @@ $response = $client->snapshot()->delete($params); [[Elasticsearch_Namespaces_SnapshotNamespacedeleteRepository_deleteRepository]] .`deleteRepository()` +[[Elasticsearch_Namespaces_SnapshotNamespacedeleteRepository_deleteRepository]] +.`deleteRepository(array $params = [])` **** [source,php] ---- /* $params['repository'] = (list) Name of the snapshot repository to unregister. Wildcard (`*`) patterns are supported. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->snapshot()->deleteRepository($params); ---- **** @@ -139,6 +140,8 @@ $response = $client->snapshot()->deleteRepository($params); [[Elasticsearch_Namespaces_SnapshotNamespaceget_get]] .`get()` +[[Elasticsearch_Namespaces_SnapshotNamespaceget_get]] +.`get(array $params = [])` **** [source,php] ---- @@ -149,13 +152,6 @@ $params['master_timeout'] = (time) Explicit operation timeout for connection $params['ignore_unavailable'] = (boolean) Whether to ignore unavailable snapshots, defaults to false which means a SnapshotMissingException is thrown $params['verbose'] = (boolean) Whether to show verbose snapshot info or only show the basic info found in the repository index blob */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->snapshot()->get($params); ---- **** @@ -163,6 +159,8 @@ $response = $client->snapshot()->get($params); [[Elasticsearch_Namespaces_SnapshotNamespacegetRepository_getRepository]] .`getRepository()` +[[Elasticsearch_Namespaces_SnapshotNamespacegetRepository_getRepository]] +.`getRepository(array $params = [])` **** [source,php] ---- @@ -171,13 +169,6 @@ $params['repository'] = (list) A comma-separated list of repository names $params['master_timeout'] = (time) Explicit operation timeout for connection to master node $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->snapshot()->getRepository($params); ---- **** @@ -185,6 +176,8 @@ $response = $client->snapshot()->getRepository($params); [[Elasticsearch_Namespaces_SnapshotNamespacerestore_restore]] .`restore()` +[[Elasticsearch_Namespaces_SnapshotNamespacerestore_restore]] +.`restore(array $params = [])` **** [source,php] ---- @@ -195,13 +188,6 @@ $params['master_timeout'] = (time) Explicit operation timeout for connectio $params['wait_for_completion'] = (boolean) Should this request wait until the operation has completed before returning (Default = false) $params['body'] = (array) Details of what to restore */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->snapshot()->restore($params); ---- **** @@ -209,6 +195,8 @@ $response = $client->snapshot()->restore($params); [[Elasticsearch_Namespaces_SnapshotNamespacestatus_status]] .`status()` +[[Elasticsearch_Namespaces_SnapshotNamespacestatus_status]] +.`status(array $params = [])` **** [source,php] ---- @@ -218,13 +206,6 @@ $params['snapshot'] = (list) A comma-separated list of snapshot names $params['master_timeout'] = (time) Explicit operation timeout for connection to master node $params['ignore_unavailable'] = (boolean) Whether to ignore unavailable snapshots, defaults to false which means a SnapshotMissingException is thrown */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->snapshot()->status($params); ---- **** @@ -232,6 +213,8 @@ $response = $client->snapshot()->status($params); [[Elasticsearch_Namespaces_SnapshotNamespaceverifyRepository_verifyRepository]] .`verifyRepository()` +[[Elasticsearch_Namespaces_SnapshotNamespaceverifyRepository_verifyRepository]] +.`verifyRepository(array $params = [])` **** [source,php] ---- @@ -240,13 +223,6 @@ $params['repository'] = (string) A repository name $params['master_timeout'] = (time) Explicit operation timeout for connection to master node $params['timeout'] = (time) Explicit operation timeout */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->snapshot()->verifyRepository($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/SqlNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/SqlNamespace.asciidoc index af732b5ad..58988ef27 100644 --- a/docs/build/Elasticsearch/Namespaces/SqlNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/SqlNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_SqlNamespace]] === Elasticsearch\Namespaces\SqlNamespace Class SqlNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -21,18 +26,13 @@ The class defines the following methods: [[Elasticsearch_Namespaces_SqlNamespaceclearCursor_clearCursor]] .`clearCursor()` +[[Elasticsearch_Namespaces_SqlNamespaceclearCursor_clearCursor]] +.`clearCursor(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->sql()->clearCursor($params); ---- **** @@ -40,6 +40,8 @@ $response = $client->sql()->clearCursor($params); [[Elasticsearch_Namespaces_SqlNamespacequery_query]] .`query()` +[[Elasticsearch_Namespaces_SqlNamespacequery_query]] +.`query(array $params = [])` **** [source,php] ---- @@ -47,13 +49,6 @@ $response = $client->sql()->clearCursor($params); $params['format'] = (string) a short version of the Accept header, e.g. json, yaml $params['body'] = (array) Use the `query` element to start a query. Use the `cursor` element to continue a query. (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->sql()->query($params); ---- **** @@ -61,19 +56,14 @@ $response = $client->sql()->query($params); [[Elasticsearch_Namespaces_SqlNamespacetranslate_translate]] .`translate()` +[[Elasticsearch_Namespaces_SqlNamespacetranslate_translate]] +.`translate(array $params = [])` **** [source,php] ---- /* $params['body'] = (array) Specify the query in the `query` element. (Required) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->sql()->translate($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/SslNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/SslNamespace.asciidoc index ad7bdf947..c539b25ce 100644 --- a/docs/build/Elasticsearch/Namespaces/SslNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/SslNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_SslNamespace]] === Elasticsearch\Namespaces\SslNamespace Class SslNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -19,18 +24,13 @@ The class defines the following methods: [[Elasticsearch_Namespaces_SslNamespacecertificates_certificates]] .`certificates()` +[[Elasticsearch_Namespaces_SslNamespacecertificates_certificates]] +.`certificates(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->ssl()->certificates($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/TasksNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/TasksNamespace.asciidoc index a95efd250..eb4724b02 100644 --- a/docs/build/Elasticsearch/Namespaces/TasksNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/TasksNamespace.asciidoc @@ -1,11 +1,17 @@ -[discrete] + + [[Elasticsearch_Namespaces_TasksNamespace]] === Elasticsearch\Namespaces\TasksNamespace Class TasksNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -21,6 +27,9 @@ The class defines the following methods: [[Elasticsearch_Namespaces_TasksNamespacecancel_cancel]] .`cancel()` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_TasksNamespacecancel_cancel]] +.`cancel(array $params = [])` **** [source,php] ---- @@ -29,13 +38,6 @@ $params['task_id'] = (string) Cancel the task with specified task id $params['nodes'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes $params['actions'] = (list) A comma-separated list of actions that should be cancelled. Leave empty to cancel all. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->tasks()->cancel($params); ---- **** @@ -43,6 +45,9 @@ $response = $client->tasks()->cancel($params); [[Elasticsearch_Namespaces_TasksNamespaceget_get]] .`get()` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_TasksNamespaceget_get]] +.`get(array $params = [])` **** [source,php] ---- @@ -51,13 +56,6 @@ $params['task_id'] = (string) Return the task with specified id (nod $params['wait_for_completion'] = (boolean) Wait for the matching tasks to complete (default: false) $params['timeout'] = (time) Explicit operation timeout */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->tasks()->get($params); ---- **** @@ -65,6 +63,9 @@ $response = $client->tasks()->get($params); [[Elasticsearch_Namespaces_TasksNamespacelist_list]] .`list()` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release +[[Elasticsearch_Namespaces_TasksNamespacelist_list]] +.`list(array $params = [])` **** [source,php] ---- @@ -72,13 +73,6 @@ $response = $client->tasks()->get($params); $params['nodes'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes $params['actions'] = (list) A comma-separated list of actions that should be returned. Leave empty to return all. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->tasks()->list($params); ---- **** @@ -86,19 +80,14 @@ $response = $client->tasks()->list($params); [[Elasticsearch_Namespaces_TasksNamespacetasksList_tasksList]] .`tasksList()` +[[Elasticsearch_Namespaces_TasksNamespacetasksList_tasksList]] +.`tasksList(array $params = [])` **** [source,php] ---- /* Proxy function to list() to prevent BC break since 7.4.0 */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->tasks()->tasksList($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/TextStructureNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/TextStructureNamespace.asciidoc new file mode 100644 index 000000000..efd738e5d --- /dev/null +++ b/docs/build/Elasticsearch/Namespaces/TextStructureNamespace.asciidoc @@ -0,0 +1,52 @@ + + +[[Elasticsearch_Namespaces_TextStructureNamespace]] +=== Elasticsearch\Namespaces\TextStructureNamespace + + + +Class TextStructureNamespace + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) + + +*Methods* + +The class defines the following methods: + +* <> + + + +[[Elasticsearch_Namespaces_TextStructureNamespacefindStructure_findStructure]] +.`findStructure()` +[[Elasticsearch_Namespaces_TextStructureNamespacefindStructure_findStructure]] +.`findStructure(array $params = [])` +**** +[source,php] +---- +/* +$params['lines_to_sample'] = (int) How many lines of the file should be included in the analysis (Default = 1000) +$params['line_merge_size_limit'] = (int) Maximum number of characters permitted in a single message when lines are merged to create messages. (Default = 10000) +$params['timeout'] = (time) Timeout after which the analysis will be aborted (Default = 25s) +$params['charset'] = (string) Optional parameter to specify the character set of the file +$params['format'] = (enum) Optional parameter to specify the high level file format (Options = ndjson,xml,delimited,semi_structured_text) +$params['has_header_row'] = (boolean) Optional parameter to specify whether a delimited file includes the column names in its first row +$params['column_names'] = (list) Optional parameter containing a comma separated list of the column names for a delimited file +$params['delimiter'] = (string) Optional parameter to specify the delimiter character for a delimited file - must be a single character +$params['quote'] = (string) Optional parameter to specify the quote character for a delimited file - must be a single character +$params['should_trim_fields'] = (boolean) Optional parameter to specify whether the values between delimiters in a delimited file should have whitespace trimmed from them +$params['grok_pattern'] = (string) Optional parameter to specify the Grok pattern that should be used to extract fields from messages in a semi-structured text file +$params['timestamp_field'] = (string) Optional parameter to specify the timestamp field in the file +$params['timestamp_format'] = (string) Optional parameter to specify the timestamp format in the file - may be either a Joda or Java time format +$params['explain'] = (boolean) Whether to include a commentary on how the structure was derived (Default = false) +$params['body'] = (array) The contents of the file to be analyzed (Required) +*/ +---- +**** + + diff --git a/docs/build/Elasticsearch/Namespaces/TransformNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/TransformNamespace.asciidoc index 6bcb2e328..40b14345c 100644 --- a/docs/build/Elasticsearch/Namespaces/TransformNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/TransformNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_TransformNamespace]] === Elasticsearch\Namespaces\TransformNamespace Class TransformNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -26,6 +31,8 @@ The class defines the following methods: [[Elasticsearch_Namespaces_TransformNamespacedeleteTransform_deleteTransform]] .`deleteTransform()` +[[Elasticsearch_Namespaces_TransformNamespacedeleteTransform_deleteTransform]] +.`deleteTransform(array $params = [])` **** [source,php] ---- @@ -33,13 +40,6 @@ The class defines the following methods: $params['transform_id'] = (string) The id of the transform to delete $params['force'] = (boolean) When `true`, the transform is deleted regardless of its current state. The default value is `false`, meaning that the transform must be `stopped` before it can be deleted. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->transform()->deleteTransform($params); ---- **** @@ -47,22 +47,18 @@ $response = $client->transform()->deleteTransform($params); [[Elasticsearch_Namespaces_TransformNamespacegetTransform_getTransform]] .`getTransform()` +[[Elasticsearch_Namespaces_TransformNamespacegetTransform_getTransform]] +.`getTransform(array $params = [])` **** [source,php] ---- /* -$params['transform_id'] = (string) The id or comma delimited list of id expressions of the transforms to get, '_all' or '*' implies get all transforms -$params['from'] = (int) skips a number of transform configs, defaults to 0 -$params['size'] = (int) specifies a max number of transforms to get, defaults to 100 -$params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no transforms. (This includes `_all` string or when no transforms have been specified) +$params['transform_id'] = (string) The id or comma delimited list of id expressions of the transforms to get, '_all' or '*' implies get all transforms +$params['from'] = (int) skips a number of transform configs, defaults to 0 +$params['size'] = (int) specifies a max number of transforms to get, defaults to 100 +$params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no transforms. (This includes `_all` string or when no transforms have been specified) +$params['exclude_generated'] = (boolean) Omits fields that are illegal to set on transform PUT (Default = false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->transform()->getTransform($params); ---- **** @@ -70,6 +66,8 @@ $response = $client->transform()->getTransform($params); [[Elasticsearch_Namespaces_TransformNamespacegetTransformStats_getTransformStats]] .`getTransformStats()` +[[Elasticsearch_Namespaces_TransformNamespacegetTransformStats_getTransformStats]] +.`getTransformStats(array $params = [])` **** [source,php] ---- @@ -79,13 +77,6 @@ $params['from'] = (number) skips a number of transform stats, defaults $params['size'] = (number) specifies a max number of transform stats to get, defaults to 100 $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no transforms. (This includes `_all` string or when no transforms have been specified) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->transform()->getTransformStats($params); ---- **** @@ -93,18 +84,13 @@ $response = $client->transform()->getTransformStats($params); [[Elasticsearch_Namespaces_TransformNamespacepreviewTransform_previewTransform]] .`previewTransform()` +[[Elasticsearch_Namespaces_TransformNamespacepreviewTransform_previewTransform]] +.`previewTransform(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->transform()->previewTransform($params); ---- **** @@ -112,19 +98,14 @@ $response = $client->transform()->previewTransform($params); [[Elasticsearch_Namespaces_TransformNamespaceputTransform_putTransform]] .`putTransform()` +[[Elasticsearch_Namespaces_TransformNamespaceputTransform_putTransform]] +.`putTransform(array $params = [])` **** [source,php] ---- /* $params['transform_id'] = (string) The id of the new transform. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->transform()->putTransform($params); ---- **** @@ -132,6 +113,8 @@ $response = $client->transform()->putTransform($params); [[Elasticsearch_Namespaces_TransformNamespacestartTransform_startTransform]] .`startTransform()` +[[Elasticsearch_Namespaces_TransformNamespacestartTransform_startTransform]] +.`startTransform(array $params = [])` **** [source,php] ---- @@ -139,13 +122,6 @@ $response = $client->transform()->putTransform($params); $params['transform_id'] = (string) The id of the transform to start $params['timeout'] = (time) Controls the time to wait for the transform to start */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->transform()->startTransform($params); ---- **** @@ -153,6 +129,8 @@ $response = $client->transform()->startTransform($params); [[Elasticsearch_Namespaces_TransformNamespacestopTransform_stopTransform]] .`stopTransform()` +[[Elasticsearch_Namespaces_TransformNamespacestopTransform_stopTransform]] +.`stopTransform(array $params = [])` **** [source,php] ---- @@ -164,13 +142,6 @@ $params['timeout'] = (time) Controls the time to wait until the tran $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no transforms. (This includes `_all` string or when no transforms have been specified) $params['wait_for_checkpoint'] = (boolean) Whether to wait for the transform to reach a checkpoint before stopping. Default to false */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->transform()->stopTransform($params); ---- **** @@ -178,19 +149,14 @@ $response = $client->transform()->stopTransform($params); [[Elasticsearch_Namespaces_TransformNamespaceupdateTransform_updateTransform]] .`updateTransform()` +[[Elasticsearch_Namespaces_TransformNamespaceupdateTransform_updateTransform]] +.`updateTransform(array $params = [])` **** [source,php] ---- /* $params['transform_id'] = (string) The id of the transform. */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->transform()->updateTransform($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/WatcherNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/WatcherNamespace.asciidoc index 7bf7c0b89..0547c56d4 100644 --- a/docs/build/Elasticsearch/Namespaces/WatcherNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/WatcherNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_WatcherNamespace]] === Elasticsearch\Namespaces\WatcherNamespace Class WatcherNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -20,6 +25,7 @@ The class defines the following methods: * <> * <> * <> +* <> * <> * <> * <> @@ -28,6 +34,8 @@ The class defines the following methods: [[Elasticsearch_Namespaces_WatcherNamespaceackWatch_ackWatch]] .`ackWatch()` +[[Elasticsearch_Namespaces_WatcherNamespaceackWatch_ackWatch]] +.`ackWatch(array $params = [])` **** [source,php] ---- @@ -35,13 +43,6 @@ The class defines the following methods: $params['watch_id'] = (string) Watch ID (Required) $params['action_id'] = (list) A comma-separated list of the action ids to be acked */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->watcher()->ackWatch($params); ---- **** @@ -49,19 +50,14 @@ $response = $client->watcher()->ackWatch($params); [[Elasticsearch_Namespaces_WatcherNamespaceactivateWatch_activateWatch]] .`activateWatch()` +[[Elasticsearch_Namespaces_WatcherNamespaceactivateWatch_activateWatch]] +.`activateWatch(array $params = [])` **** [source,php] ---- /* $params['watch_id'] = (string) Watch ID */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->watcher()->activateWatch($params); ---- **** @@ -69,19 +65,14 @@ $response = $client->watcher()->activateWatch($params); [[Elasticsearch_Namespaces_WatcherNamespacedeactivateWatch_deactivateWatch]] .`deactivateWatch()` +[[Elasticsearch_Namespaces_WatcherNamespacedeactivateWatch_deactivateWatch]] +.`deactivateWatch(array $params = [])` **** [source,php] ---- /* $params['watch_id'] = (string) Watch ID */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->watcher()->deactivateWatch($params); ---- **** @@ -89,19 +80,14 @@ $response = $client->watcher()->deactivateWatch($params); [[Elasticsearch_Namespaces_WatcherNamespacedeleteWatch_deleteWatch]] .`deleteWatch()` +[[Elasticsearch_Namespaces_WatcherNamespacedeleteWatch_deleteWatch]] +.`deleteWatch(array $params = [])` **** [source,php] ---- /* $params['id'] = (string) Watch ID */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->watcher()->deleteWatch($params); ---- **** @@ -109,6 +95,8 @@ $response = $client->watcher()->deleteWatch($params); [[Elasticsearch_Namespaces_WatcherNamespaceexecuteWatch_executeWatch]] .`executeWatch()` +[[Elasticsearch_Namespaces_WatcherNamespaceexecuteWatch_executeWatch]] +.`executeWatch(array $params = [])` **** [source,php] ---- @@ -117,13 +105,6 @@ $params['id'] = (string) Watch ID $params['debug'] = (boolean) indicates whether the watch should execute in debug mode $params['body'] = (array) Execution control */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->watcher()->executeWatch($params); ---- **** @@ -131,19 +112,14 @@ $response = $client->watcher()->executeWatch($params); [[Elasticsearch_Namespaces_WatcherNamespacegetWatch_getWatch]] .`getWatch()` +[[Elasticsearch_Namespaces_WatcherNamespacegetWatch_getWatch]] +.`getWatch(array $params = [])` **** [source,php] ---- /* $params['id'] = (string) Watch ID */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->watcher()->getWatch($params); ---- **** @@ -151,6 +127,8 @@ $response = $client->watcher()->getWatch($params); [[Elasticsearch_Namespaces_WatcherNamespaceputWatch_putWatch]] .`putWatch()` +[[Elasticsearch_Namespaces_WatcherNamespaceputWatch_putWatch]] +.`putWatch(array $params = [])` **** [source,php] ---- @@ -162,13 +140,21 @@ $params['if_seq_no'] = (number) only update the watch if the last operatio $params['if_primary_term'] = (number) only update the watch if the last operation that has changed the watch has the specified primary term $params['body'] = (array) The watch */ +---- +**** -$params = [ - // ... -]; -$client = ClientBuilder::create()->build(); -$response = $client->watcher()->putWatch($params); + +[[Elasticsearch_Namespaces_WatcherNamespacequeryWatches_queryWatches]] +.`queryWatches()` +[[Elasticsearch_Namespaces_WatcherNamespacequeryWatches_queryWatches]] +.`queryWatches(array $params = [])` +**** +[source,php] +---- +/* +$params['body'] = (array) From, size, query, sort and search_after +*/ ---- **** @@ -176,18 +162,13 @@ $response = $client->watcher()->putWatch($params); [[Elasticsearch_Namespaces_WatcherNamespacestart_start]] .`start()` +[[Elasticsearch_Namespaces_WatcherNamespacestart_start]] +.`start(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->watcher()->start($params); ---- **** @@ -195,6 +176,8 @@ $response = $client->watcher()->start($params); [[Elasticsearch_Namespaces_WatcherNamespacestats_stats]] .`stats()` +[[Elasticsearch_Namespaces_WatcherNamespacestats_stats]] +.`stats(array $params = [])` **** [source,php] ---- @@ -202,13 +185,6 @@ $response = $client->watcher()->start($params); $params['metric'] = (list) Controls what additional stat metrics should be include in the response $params['emit_stacktraces'] = (boolean) Emits stack traces of currently running watches */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->watcher()->stats($params); ---- **** @@ -216,18 +192,13 @@ $response = $client->watcher()->stats($params); [[Elasticsearch_Namespaces_WatcherNamespacestop_stop]] .`stop()` +[[Elasticsearch_Namespaces_WatcherNamespacestop_stop]] +.`stop(array $params = [])` **** [source,php] ---- /* */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->watcher()->stop($params); ---- **** diff --git a/docs/build/Elasticsearch/Namespaces/XpackNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/XpackNamespace.asciidoc index 0e8e42baa..4caf784c6 100644 --- a/docs/build/Elasticsearch/Namespaces/XpackNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/XpackNamespace.asciidoc @@ -1,12 +1,17 @@ -[discrete] + [[Elasticsearch_Namespaces_XpackNamespace]] === Elasticsearch\Namespaces\XpackNamespace Class XpackNamespace -Generated running $ php util/GenerateEndpoints.php 7.9 + +*Description* + + +NOTE: this file is autogenerated using util/GenerateEndpoints.php +and Elasticsearch 7.12.1 (3186837139b9c6b6d23c3200870651f10d3343b7) *Methods* @@ -20,6 +25,8 @@ The class defines the following methods: [[Elasticsearch_Namespaces_XpackNamespaceinfo_info]] .`info()` +[[Elasticsearch_Namespaces_XpackNamespaceinfo_info]] +.`info(array $params = [])` **** [source,php] ---- @@ -27,13 +34,6 @@ The class defines the following methods: $params['categories'] = (list) Comma-separated list of info categories. Can be any of: build, license, features $params['accept_enterprise'] = (boolean) If an enterprise license is installed, return the type and mode as 'enterprise' (default: false) */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->xpack()->info($params); ---- **** @@ -41,19 +41,14 @@ $response = $client->xpack()->info($params); [[Elasticsearch_Namespaces_XpackNamespaceusage_usage]] .`usage()` +[[Elasticsearch_Namespaces_XpackNamespaceusage_usage]] +.`usage(array $params = [])` **** [source,php] ---- /* $params['master_timeout'] = (time) Specify timeout for watch write operation */ - -$params = [ - // ... -]; - -$client = ClientBuilder::create()->build(); -$response = $client->xpack()->usage($params); ---- **** diff --git a/docs/build/classes.asciidoc b/docs/build/classes.asciidoc index 40b01b0e8..ffe63929d 100644 --- a/docs/build/classes.asciidoc +++ b/docs/build/classes.asciidoc @@ -1,6 +1,6 @@ [[ElasticsearchPHP_Endpoints]] -== API reference +== Reference - Endpoints This is a complete list of namespaces and their associated endpoints. @@ -17,11 +17,13 @@ NOTE: This is auto-generated documentation * <> * <> * <> +* <> * <> * <> * <> * <> * <> +* <> * <> * <> * <> @@ -34,6 +36,7 @@ NOTE: This is auto-generated documentation * <> * <> * <> +* <> * <> * <> * <> @@ -48,11 +51,13 @@ include::Elasticsearch/Namespaces/DanglingIndicesNamespace.asciidoc[] include::Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.asciidoc[] include::Elasticsearch/Namespaces/EnrichNamespace.asciidoc[] include::Elasticsearch/Namespaces/EqlNamespace.asciidoc[] +include::Elasticsearch/Namespaces/FeaturesNamespace.asciidoc[] include::Elasticsearch/Namespaces/GraphNamespace.asciidoc[] include::Elasticsearch/Namespaces/IlmNamespace.asciidoc[] include::Elasticsearch/Namespaces/IndicesNamespace.asciidoc[] include::Elasticsearch/Namespaces/IngestNamespace.asciidoc[] include::Elasticsearch/Namespaces/LicenseNamespace.asciidoc[] +include::Elasticsearch/Namespaces/LogstashNamespace.asciidoc[] include::Elasticsearch/Namespaces/MigrationNamespace.asciidoc[] include::Elasticsearch/Namespaces/MlNamespace.asciidoc[] include::Elasticsearch/Namespaces/MonitoringNamespace.asciidoc[] @@ -65,7 +70,7 @@ include::Elasticsearch/Namespaces/SnapshotNamespace.asciidoc[] include::Elasticsearch/Namespaces/SqlNamespace.asciidoc[] include::Elasticsearch/Namespaces/SslNamespace.asciidoc[] include::Elasticsearch/Namespaces/TasksNamespace.asciidoc[] +include::Elasticsearch/Namespaces/TextStructureNamespace.asciidoc[] include::Elasticsearch/Namespaces/TransformNamespace.asciidoc[] include::Elasticsearch/Namespaces/WatcherNamespace.asciidoc[] include::Elasticsearch/Namespaces/XpackNamespace.asciidoc[] -include::../experimental-beta-apis.asciidoc[] \ No newline at end of file diff --git a/docs/build/renderer.index b/docs/build/renderer.index index c8469f869..528bc5f17 100644 --- a/docs/build/renderer.index +++ b/docs/build/renderer.index @@ -1 +1 @@ -C:21:"Doctum\Renderer\Index":3099:{a:3:{i:0;a:31:{s:20:"Elasticsearch\Client";s:40:"41392d92c739aeb8e5e162dba05bd03199b2f467";s:27:"Elasticsearch\ClientBuilder";s:40:"64ffad30ba1b1351d03352b742c8cf30ed6f9328";s:45:"Elasticsearch\Namespaces\AsyncSearchNamespace";s:40:"e16f4d6c0c9a35abbccff6e14ca3216295983a8f";s:45:"Elasticsearch\Namespaces\AutoscalingNamespace";s:40:"16fb99466ecbf37ea48f2df03a2ada115a600bc5";s:37:"Elasticsearch\Namespaces\CatNamespace";s:40:"8f3030baf8faf5c9eccb7f07d790b5ae5e9fa385";s:37:"Elasticsearch\Namespaces\CcrNamespace";s:40:"efcb621571da79c8bb4c2f9d925312baaab0e0c0";s:41:"Elasticsearch\Namespaces\ClusterNamespace";s:40:"b88a94c8a26e0a16b20b9c612263338099bb1895";s:49:"Elasticsearch\Namespaces\DanglingIndicesNamespace";s:40:"d737ce8c2b760ed05d9cf9966c83702fd6755598";s:62:"Elasticsearch\Namespaces\DataFrameTransformDeprecatedNamespace";s:40:"e3673920247463d734c67333d0283238ee1ff4bc";s:40:"Elasticsearch\Namespaces\EnrichNamespace";s:40:"b38c8e90bfe59fd35b5cdecb6568ce0dc73e5ae0";s:37:"Elasticsearch\Namespaces\EqlNamespace";s:40:"9e1ff1dedc2188fc82799b843da02a5e14b46014";s:39:"Elasticsearch\Namespaces\GraphNamespace";s:40:"39ae22be2fc902fed161da265a38f5e282f49567";s:37:"Elasticsearch\Namespaces\IlmNamespace";s:40:"22941b09927c52f03c2c44a02287437a10fa13e8";s:41:"Elasticsearch\Namespaces\IndicesNamespace";s:40:"1454bd74fd5c74f828a842cd4f18ec56a1fb9a01";s:40:"Elasticsearch\Namespaces\IngestNamespace";s:40:"35ec23599fabdd5b6dbb3bd2aa163d08010baad2";s:41:"Elasticsearch\Namespaces\LicenseNamespace";s:40:"7323db1fbe2838cab725e96957ac9ed8cb176b72";s:43:"Elasticsearch\Namespaces\MigrationNamespace";s:40:"e1a0596c921bb737cd489e7eecf74eb4c34ae0ca";s:36:"Elasticsearch\Namespaces\MlNamespace";s:40:"f08fb92b1c053e43a2adaed7b019a92633235a44";s:44:"Elasticsearch\Namespaces\MonitoringNamespace";s:40:"7cb9e759038d97c3a82e56c44d1144b4051d7a21";s:39:"Elasticsearch\Namespaces\NodesNamespace";s:40:"c00b4de1b869e0c1f6aa81f729527b9de4772012";s:40:"Elasticsearch\Namespaces\RollupNamespace";s:40:"7d4543d68becd6b2ee3a3d27e1e3de3e9e848aa8";s:53:"Elasticsearch\Namespaces\SearchableSnapshotsNamespace";s:40:"9a38da95e1ca472563d2f0c831a4787c1375f549";s:42:"Elasticsearch\Namespaces\SecurityNamespace";s:40:"341a98c6561ff5b3fa4dc7f0d6d9a5cf5b9c9d2e";s:37:"Elasticsearch\Namespaces\SlmNamespace";s:40:"c7dfd50ccf1a4b584198538a25c9cf857a3ef2d2";s:42:"Elasticsearch\Namespaces\SnapshotNamespace";s:40:"41ff13e453661b78217ffb348820846c0737d62d";s:37:"Elasticsearch\Namespaces\SqlNamespace";s:40:"cb7da0aaadc476b68bf5b13b415e38a2105b7693";s:37:"Elasticsearch\Namespaces\SslNamespace";s:40:"9d3a27f55594e603d07a6aad8bed92350edec1dc";s:39:"Elasticsearch\Namespaces\TasksNamespace";s:40:"316b7494503d525f61699202a01bb5adb27cf278";s:43:"Elasticsearch\Namespaces\TransformNamespace";s:40:"c5e99fd4770ce050f229712843ad7f89bff3b3ac";s:41:"Elasticsearch\Namespaces\WatcherNamespace";s:40:"a8d349b23ab6c5f7e147c62d956b944e34fda11b";s:39:"Elasticsearch\Namespaces\XpackNamespace";s:40:"aecef4a1eb4e821e2a4f788a2e020fcd50a31a43";}i:1;a:1:{i:0;s:4:"main";}i:2;a:2:{i:0;s:13:"Elasticsearch";i:1;s:24:"Elasticsearch\Namespaces";}}} \ No newline at end of file +C:21:"Doctum\Renderer\Index":3398:{a:3:{i:0;a:34:{s:20:"Elasticsearch\Client";s:40:"f6943c4681d5ffdba5a789013583e504cb70a3cf";s:27:"Elasticsearch\ClientBuilder";s:40:"21cec9bf2a59d975831ec9d69035a3a120a9a345";s:45:"Elasticsearch\Namespaces\AsyncSearchNamespace";s:40:"6fc9a92dc7816ba2093823ab3c1455ec9cc5879c";s:45:"Elasticsearch\Namespaces\AutoscalingNamespace";s:40:"2c3b926711f575a452ded86435e8c9e57cfe969a";s:37:"Elasticsearch\Namespaces\CatNamespace";s:40:"3577f88d273f0170263f35019bb3651b33deda4c";s:37:"Elasticsearch\Namespaces\CcrNamespace";s:40:"181fad0acdd4f0707617435b078b5312ba9d9cc0";s:41:"Elasticsearch\Namespaces\ClusterNamespace";s:40:"fb55e4fdf067430390b1bd40ab4e03fe20119630";s:49:"Elasticsearch\Namespaces\DanglingIndicesNamespace";s:40:"89a2fd6f7f7b2c34c599355919f75fa3ebbcedd3";s:62:"Elasticsearch\Namespaces\DataFrameTransformDeprecatedNamespace";s:40:"6ff68fa9e63fc3c44472521f406d8c5bb7acf97f";s:40:"Elasticsearch\Namespaces\EnrichNamespace";s:40:"b1f74a1ce1201744cdcae0d7d84cba4bb32f798a";s:37:"Elasticsearch\Namespaces\EqlNamespace";s:40:"530663bc407ad80efb08a7af1f26f09ac1bf3786";s:42:"Elasticsearch\Namespaces\FeaturesNamespace";s:40:"862ca554e424a0bccac65a083f27f5dd807b8ec8";s:39:"Elasticsearch\Namespaces\GraphNamespace";s:40:"c80fb7aab5e8e9aeb85d10a6feefad2c26051128";s:37:"Elasticsearch\Namespaces\IlmNamespace";s:40:"dae205c8235e2ae28e74bbcd3282aaed3a581953";s:41:"Elasticsearch\Namespaces\IndicesNamespace";s:40:"9e227074e3f8a86e61241a3a7cfe6f455889cb49";s:40:"Elasticsearch\Namespaces\IngestNamespace";s:40:"ca485d69ad49add09288377088795d9be72adc0d";s:41:"Elasticsearch\Namespaces\LicenseNamespace";s:40:"a6db2f0ef144c67332d085076e627692c4b1c4b1";s:42:"Elasticsearch\Namespaces\LogstashNamespace";s:40:"dc55ee9684e08f92b849c76c453a093ac07458b4";s:43:"Elasticsearch\Namespaces\MigrationNamespace";s:40:"1b46c7dc2889307648099673289461d7c6af9830";s:36:"Elasticsearch\Namespaces\MlNamespace";s:40:"17febf7c489f89cec873d9d4261b22fdce9f041e";s:44:"Elasticsearch\Namespaces\MonitoringNamespace";s:40:"99778ccc7e53dd9bc993df297768c767b23cc9ab";s:39:"Elasticsearch\Namespaces\NodesNamespace";s:40:"1ec0dd8ae912d54a2ef035b144201f7a1ea77612";s:40:"Elasticsearch\Namespaces\RollupNamespace";s:40:"d835ed84cf7cb159962fd4934344392e36e5e939";s:53:"Elasticsearch\Namespaces\SearchableSnapshotsNamespace";s:40:"b26b22778efe2fb4d1686c352497d0cda0c0a261";s:42:"Elasticsearch\Namespaces\SecurityNamespace";s:40:"4942863314524474f90a775f0fefd8ab1a53efd3";s:37:"Elasticsearch\Namespaces\SlmNamespace";s:40:"604c7c85b35e856157da837b52ef22b1812d5951";s:42:"Elasticsearch\Namespaces\SnapshotNamespace";s:40:"58460ba514e23082008c66f92b6491d04712ff2b";s:37:"Elasticsearch\Namespaces\SqlNamespace";s:40:"2bc520074409c32a3f83dac02ebd95b1b30963c5";s:37:"Elasticsearch\Namespaces\SslNamespace";s:40:"75f30381c019d44465a53c60e4f860d74da536da";s:39:"Elasticsearch\Namespaces\TasksNamespace";s:40:"104958f5e7b77fddd28e41bce971748743914a0c";s:47:"Elasticsearch\Namespaces\TextStructureNamespace";s:40:"8af30a0f80eff56a2ff1bb5297cf5c2dce8e5b6f";s:43:"Elasticsearch\Namespaces\TransformNamespace";s:40:"831a900f6688083fdf78828b801278fa3b28839a";s:41:"Elasticsearch\Namespaces\WatcherNamespace";s:40:"f320fdc36854d712991911b21c4033c3d674ee0a";s:39:"Elasticsearch\Namespaces\XpackNamespace";s:40:"4671646d2224ed2e7eba96798a2434f3fd88b662";}i:1;a:1:{i:0;s:4:"main";}i:2;a:2:{i:0;s:13:"Elasticsearch";i:1;s:24:"Elasticsearch\Namespaces";}}} \ No newline at end of file From fc0d3daad7a882732ba2bbc926fe50989c89a8cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Istv=C3=A1n=20Zolt=C3=A1n=20Szab=C3=B3?= Date: Wed, 12 May 2021 15:54:52 +0200 Subject: [PATCH 16/81] [DOCS] Adds Helpers section to PHP book (#1129) * [DOCS] Adds Helpers section to PHP book. * [DOCS] Changes attribute to absolute link. --- docs/breaking-changes.asciidoc | 10 ++-- docs/community.asciidoc | 33 ++++++------- docs/configuration.asciidoc | 4 ++ docs/helpers.asciidoc | 84 ++++++++++++++++++++++++++++++++++ docs/index.asciidoc | 6 +-- docs/overview.asciidoc | 11 ++++- docs/php_json_objects.asciidoc | 8 ++-- 7 files changed, 125 insertions(+), 31 deletions(-) create mode 100644 docs/helpers.asciidoc diff --git a/docs/breaking-changes.asciidoc b/docs/breaking-changes.asciidoc index ff9a190bd..844a85906 100644 --- a/docs/breaking-changes.asciidoc +++ b/docs/breaking-changes.asciidoc @@ -1,8 +1,8 @@ [[breaking_changes]] -== Breaking changes from 6.x +=== Breaking changes from 6.x [discrete] -=== E_USER_DEPRECATED notice when using deprecated parameters +==== E_USER_DEPRECATED notice when using deprecated parameters Starting from elasticsearch-php 7.4.0, we generate a PHP https://www.php.net/manual/en/errorfunc.constants.php[E_USER_DEPRECATED] notice @@ -25,7 +25,7 @@ set_error_handler(function ($errno, $errstr) { ---- [discrete] -=== Moving from types to typeless APIs in {es} 7.0 +==== Moving from types to typeless APIs in {es} 7.0 {es} 7.0 deprecated APIs that accept types, introduced new typeless APIs, and removed support for the _default_ mapping. Read @@ -33,13 +33,13 @@ https://www.elastic.co/blog/moving-from-types-to-typeless-apis-in-elasticsearch- blog post for more information. [discrete] -=== Type hint and return type +==== Type hint and return type Added type hints and return type declarations in all the code base where possible. See PR https://github.com/elastic/elasticsearch-php/pull/897[#897]. [discrete] -=== PHP 7.1+ Requirement +==== PHP 7.1+ Requirement We require using PHP 7.1+ for elasticsearch-php. PHP 7.0 is not supported since 1st Jan 2019. Refer diff --git a/docs/community.asciidoc b/docs/community.asciidoc index 21b9e1eb6..39511e02e 100644 --- a/docs/community.asciidoc +++ b/docs/community.asciidoc @@ -1,8 +1,8 @@ [[community_dsls]] -== Community DSLs +=== Community DSLs [discrete] -=== ElasticsearchDSL +==== ElasticsearchDSL https://github.com/ongr-io/ElasticsearchDSL[Link: ElasticsearchDSL] [quote, ElasticsearchDSL] @@ -13,7 +13,7 @@ it to an array. __________________________ [discrete] -=== elasticsearcher +==== elasticsearcher https://github.com/madewithlove/elasticsearcher[Link: elasticsearcher] @@ -26,7 +26,7 @@ client. __________________________ [discrete] -=== ElasticSearchQueryDSL +==== ElasticSearchQueryDSL https://github.com/gskema/elasticsearch-query-dsl-php[Link: ElasticSearchQueryDSL] @@ -38,13 +38,14 @@ explicit naming. __________________________ -== Community Integrations +[[community-integrations]] +=== Community Integrations [discrete] -=== Symfony +==== Symfony [discrete] -==== ONGR Elasticsearch Bundle +===== ONGR Elasticsearch Bundle https://github.com/ongr-io/ElasticsearchBundle[Link: ONGR {es} Bundle] @@ -70,7 +71,7 @@ Technical goodies: __________________________ [discrete] -==== FOS Elastica Bundle +===== FOS Elastica Bundle https://github.com/FriendsOfSymfony/FOSElasticaBundle[Link: FOS Elastica Bundle] @@ -87,10 +88,10 @@ __________________________ [discrete] -=== Drupal +==== Drupal [discrete] -==== {es} Connector +===== {es} Connector https://www.drupal.org/project/elasticsearch_connector[Link: {es} Connector] @@ -101,10 +102,10 @@ Drupal. __________________________ [discrete] -=== Laravel +==== Laravel [discrete] -==== shift31/Laravel-Elasticsearch +===== shift31/Laravel-Elasticsearch https://github.com/shift31/laravel-elasticsearch[Link: shift31/Laravel-Elasticsearch] @@ -115,7 +116,7 @@ __________________________ [discrete] -==== cviebrock/Laravel-Elasticsearch +===== cviebrock/Laravel-Elasticsearch https://github.com/cviebrock/laravel-elasticsearch[Link: cviebrock/Laravel-Elasticsearch] @@ -126,7 +127,7 @@ __________________________ [discrete] -==== Plastic +===== Plastic https://github.com/sleimanx2/plastic[Link: Plastic] @@ -138,10 +139,10 @@ mapping, querying, and storing eloquent models. __________________________ [discrete] -=== Helper +==== Helper [discrete] -==== Index Helper +===== Index Helper https://github.com/Nexucis/es-php-index-helper[Link: nexucis/es-php-index-helper] diff --git a/docs/configuration.asciidoc b/docs/configuration.asciidoc index b0063a661..567228204 100644 --- a/docs/configuration.asciidoc +++ b/docs/configuration.asciidoc @@ -9,6 +9,8 @@ Custom configuration is accomplished before the client is instantiated, through the ClientBuilder helper object. You can find all the configuration options and check sample code that helps you replace the various components. +To learn more about JSON in PHP, read <>. + * <> * <> * <> @@ -24,6 +26,8 @@ check sample code that helps you replace the various components. * <> +include::php_json_objects.asciidoc[] + include::host-config.asciidoc[] include::set-retries.asciidoc[] diff --git a/docs/helpers.asciidoc b/docs/helpers.asciidoc new file mode 100644 index 000000000..89631bc92 --- /dev/null +++ b/docs/helpers.asciidoc @@ -0,0 +1,84 @@ +[[client-helpers]] +== Client helpers + +The client comes with helpers to give you a more comfortable experience with +some APIs. + + +[discrete] +[[iterators]] +=== Iterators + + +[discrete] +[[search-response-iterator]] +==== Search response iterator + +The `SearchResponseIterator` can be used to iterate page by page in a search +result using +https://www.elastic.co/guide/en/elasticsearch/reference/current/paginate-search-results.html#paginate-search-results[pagination]. + +An example as follows: + +[source,php] +---- +use Elasticsearch\Helper\Iterators\SearchResponseIterator; + +$search_params = [ + 'scroll' => '5m', // period to retain the search context + 'index' => '', // here the index name + 'size' => 100, // 100 results per page + 'body' => [ + 'query' => [ + 'match_all' => new StdClass // {} in JSON + ] + ] +]; +// $client is Elasticsearch\Client instance +$pages = new SearchResponseIterator($client, $search_params); + +// Sample usage of iterating over page results +foreach($pages as $page) { + // do something with hit e.g. copy its data to another index + // e.g. prints the number of document per page (100) + echo count($page['hits']['hits']), PHP_EOL; +} +---- + + +[discrete] +[[search-hit-iterator]] +==== Search hit iterator + +The `SearchHitIterator` can be used to iterate in a `SearchResponseIterator` +without worrying about +https://www.elastic.co/guide/en/elasticsearch/reference/current/paginate-search-results.html#paginate-search-results[pagination]. + +An example as follows: + +[source,php] +---- +use Elasticsearch\Helper\Iterators\SearchHitIterator; +use Elasticsearch\Helper\Iterators\SearchResponseIterator; + +$search_params = [ + 'scroll' => '5m', // period to retain the search context + 'index' => '', // here the index name + 'size' => 100, // 100 results per page + 'body' => [ + 'query' => [ + 'match_all' => new StdClass // {} in JSON + ] + ] +]; +// $client is Elasticsearch\Client instance +$pages = new SearchResponseIterator($client, $search_params); +$hits = new SearchHitIterator($pages); + +// Sample usage of iterating over hits +foreach($hits as $hit) { + // do something with hit e.g. write to CSV, update a database, etc + // e.g. prints the document id + echo $hit['_id'], PHP_EOL; +} +---- \ No newline at end of file diff --git a/docs/index.asciidoc b/docs/index.asciidoc index f26b8925b..319852d51 100644 --- a/docs/index.asciidoc +++ b/docs/index.asciidoc @@ -15,10 +15,6 @@ include::operations.asciidoc[] include::build/classes.asciidoc[] -include::php_json_objects.asciidoc[] - -include::breaking-changes.asciidoc[] - -include::community.asciidoc[] +include::helpers.asciidoc[] include::redirects.asciidoc[] diff --git a/docs/overview.asciidoc b/docs/overview.asciidoc index 637be8436..d079f9d12 100644 --- a/docs/overview.asciidoc +++ b/docs/overview.asciidoc @@ -12,4 +12,13 @@ from one language to the next with minimal effort. The client is designed to be "unopinionated". There are a few universal niceties added to the client (cluster state sniffing, round-robin requests, and so on) but largely it is very barebones. This was intentional; we want a common base -that more sophisticated libraries can build on top of. \ No newline at end of file +that more sophisticated libraries can build on top of. + +* <> +* <> +* <> + + +include::community.asciidoc[] + +include::breaking-changes.asciidoc[] \ No newline at end of file diff --git a/docs/php_json_objects.asciidoc b/docs/php_json_objects.asciidoc index 1e1c39d53..fa29496dd 100644 --- a/docs/php_json_objects.asciidoc +++ b/docs/php_json_objects.asciidoc @@ -1,5 +1,5 @@ [[php_json_objects]] -== Dealing with JSON arrays and objects in PHP +=== Dealing with JSON arrays and objects in PHP A common source of confusion with the client revolves around JSON arrays and objects, and how to specify them in PHP. In particular, problems are caused by @@ -7,7 +7,7 @@ empty objects and arrays of objects. This page shows you some common patterns used in {es} JSON API and how to convert that to a PHP representation. [discrete] -=== Empty Objects +==== Empty Objects The {es} API uses empty JSON objects in several locations which can cause problems for PHP. Unlike other languages, PHP does not have a "short" notation @@ -63,7 +63,7 @@ solution is the only way to acomplish the goal in PHP... there is no "short" version of an empty object. [discrete] -=== Arrays of Objects +==== Arrays of Objects Another common pattern in {es} DSL is an array of objects. For example, consider adding a sort to your query: @@ -126,7 +126,7 @@ $results = $client->search($params); ---- [discrete] -=== Arrays of empty objects +==== Arrays of empty objects Occasionally, you'll encounter DSL that requires both of the previous patterns. The function score query is a good example, it sometimes requires an array of From 4c019a766000a841e3b8cd8019f22b2569c82d5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Istv=C3=A1n=20Zolt=C3=A1n=20Szab=C3=B3?= Date: Wed, 12 May 2021 15:55:09 +0200 Subject: [PATCH 17/81] [DOCS] Adds Release notes section to PHP book (#1132) * [DOCS] Adds Release notes section to PHP book. * [DOCS] Adds attribute to subsections. --- docs/index.asciidoc | 2 + docs/release-notes.asciidoc | 357 ++++++++++++++++++++++++++++++++++++ 2 files changed, 359 insertions(+) create mode 100644 docs/release-notes.asciidoc diff --git a/docs/index.asciidoc b/docs/index.asciidoc index f26b8925b..25414e765 100644 --- a/docs/index.asciidoc +++ b/docs/index.asciidoc @@ -21,4 +21,6 @@ include::breaking-changes.asciidoc[] include::community.asciidoc[] +include::release-notes.asciidoc[] + include::redirects.asciidoc[] diff --git a/docs/release-notes.asciidoc b/docs/release-notes.asciidoc new file mode 100644 index 000000000..19f4bb2f0 --- /dev/null +++ b/docs/release-notes.asciidoc @@ -0,0 +1,357 @@ +[[release-notes]] +== Release notes + +* <> +* <> +* <> +* <> +* <> +* <> +* <> +* <> +* <> +* <> +* <> +* <> +* <> +* <> +* <> +* <> +* <> +* <> +* <> +* <> +* <> +* <> + + +[discrete] +[[rn-7-12-0]] +=== 7.12.0 + +* Updated the endpoints for ES 7.12 + removed `cpliakas/git-wrapper` in favor of + `symplify/git-wrapper` + https://github.com/elastic/elasticsearch-php/commit/136d5b9717b3806c6b34ef8a5076bfe7cee8b46e[136d5b9] +* Fixed warning header as array in YAML tests generator + https://github.com/elastic/elasticsearch-php/commit/0d81be131bfc7eff6ef82468e61c16077a892aab[0d81be1] +* Refactored TEST_SUITE with free, platinum + removed old YamlRunnerTest + https://github.com/elastic/elasticsearch-php/commit/f69d96fc283580177002b4088c279c3d0c07befe[f69d96f] + + +[discrete] +[[rn-7-11-0]] +=== 7.11.0 + +* Added the `X-Elastic-Client-Meta` header which is used by Elastic Cloud and + can be disabled with `ClientBuilder::setElasticMetaHeader(false)` + https://github.com/elastic/elasticsearch-php/pull/1089[#1089] +* Replaced `array_walk` with `array_map` in `Connection::getURI` for PHP 8 + compatibility + https://github.com/elastic/elasticsearch-php/pull/1075[#1075] +* Remove unnecessary `InvalidArgumentExceptions` + https://github.com/elastic/elasticsearch-php/pull/1069[#1069] +* Introducing PHP 8 compatibility + https://github.com/elastic/elasticsearch-php/pull/1063[#1063] +* Replace Sami by Doctum and fix `.gitignore` + https://github.com/elastic/elasticsearch-php/pull/1062[#1062] + + +[discrete] +[[rn-7-10-0]] +=== 7.10.0 + +* Updated endpoints and namespaces for {es} 7.10 + https://github.com/elastic/elasticsearch-php/commit/3ceb7484a111aa20126168460c79f098c4fe0792[3ceb748] +* Fixed ClientBuilder::fromConfig allowing multiple function parameters (for + example, `setApiKey`) + https://github.com/elastic/elasticsearch-php/pull/1076[#1076] +* Refactored the YAML tests using generated PHPUnit code + [85fadc2](https://github.com/elastic/elasticsearch-php/commit/85fadc2bd4b2b309b19761a50ff13010d43a524d) + + +[discrete] +[[rn-7-9-1]] +=== 7.9.1 + +* Fixed using object instead of array in onFailure transport event + https://github.com/elastic/elasticsearch-php/pull/1066[#1066] +* Fixed reset custom header after endpoint call + https://github.com/elastic/elasticsearch-php/pull/1065[#1065] +* Show generic error messages when server returns no response + https://github.com/elastic/elasticsearch-php/pull/1056[#1056] + + +[discrete] +[[rn-7-9-0]] +=== 7.9.0 + +* Updated endpoints and namespaces for {es} 7.9 + https://github.com/elastic/elasticsearch-php/commit/28bf0ed6df6bc95f83f369509431d97907bfdeb0[28bf0ed] +* Moved `scroll_id` into `body` for search operations in the documentation + https://github.com/elastic/elasticsearch-php/pull/1052[#1052] +* Fixed PHP 7.4 preloading feature for autoload.php + https://github.com/elastic/elasticsearch-php/pull/1051[#1051] +* Improved message of JSON errors using `json_last_error_msg()` + https://github.com/elastic/elasticsearch-php/pull/1045[#1045] + + +[discrete] +[[rn-7-8-0]] +=== 7.8.0 + +* Updated endpoints and namespaces for {es} 7.8 + https://github.com/elastic/elasticsearch-php/commit/f2a0828d5ee9d126ad63e2a1d43f70b4013845e2[f2a0828] +* Improved documentation + https://github.com/elastic/elasticsearch-php/pull/1038[#1038], + https://github.com/elastic/elasticsearch-php/pull/1027[#1027], + https://github.com/elastic/elasticsearch-php/pull/1025[#1025] + + +[discrete] +[[rn-7-7-0]] +=== 7.7.0 + +* Removed setId() into endpoints, fixed `util/GenerateEndpoints.php` + https://github.com/elastic/elasticsearch-php/pull/1026[#1026] +* Fixes JsonErrorException with code instead of message + https://github.com/elastic/elasticsearch-php/pull/1022[#1022] +* Better exception message for Could not parse URI + https://github.com/elastic/elasticsearch-php/pull/1016[#1016] +* Added JUnit log for PHPUnit + https://github.com/elastic/elasticsearch-php/commit/88b7e1ce80a5a52c1d64d00c55fef77097bbd8a9[88b7e1c] +* Added the XPack endpoints + https://github.com/elastic/elasticsearch-php/commit/763d91a3d506075316b84a38b2bed7a098da5028[763d91a] + + + +[discrete] +[[rn-7-6-1]] +=== 7.6.1 + +* Fixed issue with `guzzlehttp/ringphp` and `guzzle/streams` using forks + `ezimuel/ringphp` and `ezimuel/guzzlestreams` + https://github.com/elastic/elasticsearch-php/commit/92a6a4adda5eafd1823c7c9c386e2c7e5e75cd08[92a6a4a] + + +[discrete] +[[rn-7-6-0]] +=== 7.6.0 + +* Generated the new endpoints for {es} 7.6.0 + https://github.com/elastic/elasticsearch-php/commit/be31f317af704f333b43bbcc7c01ddc7c91ec6f8[be31f31] + + +[discrete] +[[rn-7-5-1]] +=== 7.5.1 + +* Fixes port missing in log https://github.com/elastic/elasticsearch-php/issues/925[#925] + https://github.com/elastic/elasticsearch-php/commit/125594b40d167ef1509b3ee49a3f93426390c426[75e0888] +* Added `ClientBuilder::includePortInHostHeader()` to add the `port` in the + `Host` header. This fixes https://github.com/elastic/elasticsearch-php/issues/993[#993]. + By default the `port` is not included in the `Host` header. + https://github.com/elastic/elasticsearch-php/pull/997[#997] +* Replace abandoned packages: ringphp, streams and phpstan-shim + https://github.com/elastic/elasticsearch-php/pull/996[#996] +* Fixed gzip compression when setting Cloud Id + https://github.com/elastic/elasticsearch-php/pull/986[#986] + + +[discrete] +[[rn-7-5-0]] +=== 7.5.0 + +* Fixed `Client::extractArgument` iterable casting to array; this allows passing + a `Traversable` body for some endpoints (for example, Bulk, Msearch, + MsearchTemplate) + https://github.com/elastic/elasticsearch-php/pull/983[#983] +* Fixed the Response Exception if the `reason` field is null + https://github.com/elastic/elasticsearch-php/pull/980[#980] +* Added support for PHP 7.4 + https://github.com/elastic/elasticsearch-php/pull/976[#976] + + +[discrete] +[[rn-7-4-1]] +=== 7.4.1 + +* We added the suppress operator `@` for the deprecation messages + `@trigger_error()`. With this approach, we don't break existing application + that convert PHP errors in Exception (for example, using Laravel with issue + https://github.com/babenkoivan/scout-elasticsearch-driver/issues/297[297]) + Using the `@` operator is still possible to intercept the deprecation message + using a custom error handler. + https://github.com/elastic/elasticsearch-php/pull/973[#973] +* Add missing leading slash in the URL of put mapping endpoint + https://github.com/elastic/elasticsearch-php/pull/970[#970] +* Fix pre 7.2 endpoint class name with aliases + reapply fix #947. This PR + solved the unexpected BC break introduce in 7.4.0 with the code + generation tool + https://github.com/elastic/elasticsearch-php/pull/968[#968] + + +[discrete] +[[rn-7-4-0]] +=== 7.4.0 + +* Added the code generation for endpoints and namespaces based on the + https://github.com/elastic/elasticsearch/tree/v7.4.2/rest-api-spec/src/main/resources/rest-api-spec/api[REST API specification] + of {es}. This tool is available in `util/GenerateEndpoints.php`. + https://github.com/elastic/elasticsearch-php/pull/966[#966] +* Fixed the asciidoc + https://www.elastic.co/guide/en/elasticsearch/client/php-api/current/ElasticsearchPHP_Endpoints.html[endpoints documentation] + based on the code generation using https://github.com/FriendsOfPHP/Sami[Sami] + project https://github.com/elastic/elasticsearch-php/pull/966[#966] +* All the `experimental` and `beta` APIs are now signed with a `@note` tag in + the phpdoc section (for example, + https://github.com/elastic/elasticsearch-php/blob/master/src/Elasticsearch/Client.php[$client->rankEval()]). + For more information read the + https://www.elastic.co/guide/en/elasticsearch/client/php-api/master/experimental_and_beta_apis.html[experimental and beta APIs] + section in the documentation. + https://github.com/elastic/elasticsearch-php/pull/966[#966] +* Removed `AlreadyExpiredException` since it has been removed + from {es} with https://github.com/elastic/elasticsearch/pull/24857[#24857] + https://github.com/elastic/elasticsearch-php/pull/954[#954] + + +[discrete] +[[rn-7-3-0]] +=== 7.3.0 + +* Added support for simplified access to the `X-Opaque-Id` header + https://github.com/elastic/elasticsearch-php/pull/952[#952] +* Added the HTTP port in the log messages + https://github.com/elastic/elasticsearch-php/pull/950[#950] +* Fixed hostname with underscore (ClientBuilder::prependMissingScheme) + https://github.com/elastic/elasticsearch-php/pull/949[#949] +* Removed unused Monolog in ClientBuilder + https://github.com/elastic/elasticsearch-php/pull/948[#948] + + +[discrete] +[[rn-7-2-2]] +=== 7.2.2 + +* Reintroduced the optional parameter in + `Elasticsearch\Namespaces\IndicesNamespace::getAliases()`. + This fixes the BC break introduced in 7.2.0 and 7.2.1. + https://github.com/elastic/elasticsearch-php/pull/947[#947] + + +[discrete] +[[rn-7-2-1]] +=== 7.2.1 + +* Reintroduced `Elasticsearch\Namespaces\IndicesNamespace::getAliases()` as proxy + to `IndicesNamespace::getAlias()` to prevent BC breaks. The `getAliases()` is + marked as deprecated and it will be removed from `elasticsearch-php 8.0` + https://github.com/elastic/elasticsearch-php/pull/943[#943] + +[discrete] +==== Docs + +* Fixed missing put mapping code snippet in code examples + https://github.com/elastic/elasticsearch-php/pull/938[#938] + + +[discrete] +[[rn-7-2-0]] +=== 7.2.0 + +* Updated the API endpoints for working with {es} 7.2.0: + * added `wait_for_active_shards` parameter to `indices.close` API; + * added `expand_wildcards` parameter to `cluster.health` API; + * added include_unloaded_segments`, `expand_wildcards`, `forbid_closed_indices` + parameters to `indices.stats` API. + https://github.com/elastic/elasticsearch-php/pull/933/commits/27d721ba44b8c199388650c5a1c8bd69757229aa[27d721b] +* Updated the phpdoc parameters for all the API endpoints + https://github.com/elastic/elasticsearch-php/pull/933/commits/27d721ba44b8c199388650c5a1c8bd69757229aa[27d721b] +* Improved the Travis CI speed using cache feature with composer + https://github.com/elastic/elasticsearch-php/pull/929[#929] +* Fixed `php_uname()` usage checking if it is disabled + https://github.com/elastic/elasticsearch-php/pull/927[#927] +* Added support of Elastic Cloud ID and API key authentication + https://github.com/elastic/elasticsearch-php/pull/923[#923] + + +[discrete] +[[rn-7-1-1]] +=== 7.1.1 + +* Fixed `ClientBuilder::setSSLVerification()` to accept string or boolean + https://github.com/elastic/elasticsearch-php/pull/917[#917] +* Fix type hinting for `setBody` in + `Elasticsearch\Endpoints\Ingest\Pipeline\Put` + https://github.com/elastic/elasticsearch-php/pull/913[#913] + + +[discrete] +[[rn-7-1-0]] +=== 7.1.0 + +* Added warning log for {es} response containing the `Warning` header + https://github.com/elastic/elasticsearch-php/pull/911[#911] +* Fixed #838 hosting company is blocking ports because of `YamlRunnerTest.php` + https://github.com/elastic/elasticsearch-php/pull/844[#844] +* Specialized inheritance of `NoNodesAvailableException` to extend + `ServerErrorResponseException` instead of the generic `\Exception` + https://github.com/elastic/elasticsearch-php/pull/607[#607] +* Fixed scroll TTL is extracted but not set as a body param + https://github.com/elastic/elasticsearch-php/pull/907[#907] + +[discrete] +==== Testing + +* Improved the speed of integration tests removing snapshots delete from + `YamlRunnerTest::clean` + https://github.com/elastic/elasticsearch-php/pull/911[#911] +* Reduced the number of skipping YAML integration tests from 20 to 6 + https://github.com/elastic/elasticsearch-php/pull/911[#911] + +[discrete] +==== Docs + +* Documentation updated for {es} 7 + https://github.com/elastic/elasticsearch-php/pull/904[#904] + + +[discrete] +[[rn-7-0-2]] +=== 7.0.2 + +* Fixed incorrect return type hint when using async requests/futures + https://github.com/elastic/elasticsearch-php/pull/905[#905] + + +[discrete] +[[rn-7-0-1]] +=== 7.0.1 + +* Fixed SniffingConnectionPool removing the return type of Connection::sniff() + https://github.com/elastic/elasticsearch-php/pull/899[#899] + + +[discrete] +[[rn-7-0-0]] +=== 7.0.0 + +* Requirement of PHP 7.1 instead of 7.0 that is not supported since 1 Jan 2019. + https://github.com/elastic/elasticsearch-php/pull/897[#897] +* Code refactoring using type hints and return type declarations where possible + https://github.com/elastic/elasticsearch-php/pull/897[#897] +* Update vendor libraries (PHPUnit 7.5, Symfony YAML 4.3, and so on) + https://github.com/elastic/elasticsearch-php/pull/897[#897] +* Updated all the API endpoints using the + https://github.com/elastic/elasticsearch/tree/v7.0.0/rest-api-spec/src/main/resources/rest-api-spec/api[latest 7.0.0 specs] + of {es} https://github.com/elastic/elasticsearch-php/pull/897[#897] +* Added the `User-Agent` in each HTTP request + https://github.com/elastic/elasticsearch-php/pull/898[#898] +* Simplified the logging methods + `logRequestFail($request, $response, $exception)` and + `logRequestSuccess($request, $response)` in + `Elasticsearch\Connections\Connection` + https://github.com/elastic/elasticsearch-php/pull/876[#876] +* Fix `json_encode` for unicode(emoji) characters + https://github.com/elastic/elasticsearch-php/pull/856[#856] +* Fix HTTP port specification using CURLOPT_PORT, not anymore in the host + https://github.com/elastic/elasticsearch-php/pull/782[#782] From 16b43e379915ac807069d18a913093d88aba64ed Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 12 May 2021 16:33:59 +0200 Subject: [PATCH 18/81] Fixed asciidoc with duplicated id --- docs/build/Elasticsearch/Client.asciidoc | 156 +----------------- .../Elasticsearch/ClientBuilder.asciidoc | 64 ------- .../Namespaces/AsyncSearchNamespace.asciidoc | 8 - .../Namespaces/AutoscalingNamespace.asciidoc | 8 - .../Namespaces/CatNamespace.asciidoc | 50 ------ .../Namespaces/CcrNamespace.asciidoc | 26 --- .../Namespaces/ClusterNamespace.asciidoc | 30 ---- .../DanglingIndicesNamespace.asciidoc | 6 - ...FrameTransformDeprecatedNamespace.asciidoc | 30 +--- .../Namespaces/EnrichNamespace.asciidoc | 10 -- .../Namespaces/EqlNamespace.asciidoc | 8 - .../Namespaces/FeaturesNamespace.asciidoc | 2 - .../Namespaces/GraphNamespace.asciidoc | 2 - .../Namespaces/IlmNamespace.asciidoc | 20 --- .../Namespaces/IndicesNamespace.asciidoc | 114 +------------ .../Namespaces/IngestNamespace.asciidoc | 10 -- .../Namespaces/LicenseNamespace.asciidoc | 14 -- .../Namespaces/LogstashNamespace.asciidoc | 6 - .../Namespaces/MigrationNamespace.asciidoc | 2 - .../Namespaces/MlNamespace.asciidoc | 148 ++--------------- .../Namespaces/MonitoringNamespace.asciidoc | 4 +- .../Namespaces/NodesNamespace.asciidoc | 10 -- .../Namespaces/RollupNamespace.asciidoc | 34 +--- .../SearchableSnapshotsNamespace.asciidoc | 16 +- .../Namespaces/SecurityNamespace.asciidoc | 58 ------- .../Namespaces/SlmNamespace.asciidoc | 18 -- .../Namespaces/SnapshotNamespace.asciidoc | 22 --- .../Namespaces/SqlNamespace.asciidoc | 6 - .../Namespaces/SslNamespace.asciidoc | 2 - .../Namespaces/TasksNamespace.asciidoc | 14 +- .../TextStructureNamespace.asciidoc | 2 - .../Namespaces/TransformNamespace.asciidoc | 16 -- .../Namespaces/WatcherNamespace.asciidoc | 22 --- .../Namespaces/XpackNamespace.asciidoc | 4 - util/docstheme/pages/class.twig | 4 +- 35 files changed, 42 insertions(+), 904 deletions(-) diff --git a/docs/build/Elasticsearch/Client.asciidoc b/docs/build/Elasticsearch/Client.asciidoc index 7034f962c..21dfde481 100644 --- a/docs/build/Elasticsearch/Client.asciidoc +++ b/docs/build/Elasticsearch/Client.asciidoc @@ -96,8 +96,6 @@ The class defines the following methods: -[[Elasticsearch_Clientbulk_bulk]] -.`bulk()` [[Elasticsearch_Clientbulk_bulk]] .`bulk(array $params = [])` **** @@ -122,8 +120,6 @@ $params['body'] = (array) The operation definition and data (a -[[Elasticsearch_ClientclearScroll_clearScroll]] -.`clearScroll()` [[Elasticsearch_ClientclearScroll_clearScroll]] .`clearScroll(array $params = [])` **** @@ -138,8 +134,6 @@ $params['body'] = (array) A comma-separated list of scroll IDs to clear if -[[Elasticsearch_ClientclosePointInTime_closePointInTime]] -.`closePointInTime()` [[Elasticsearch_ClientclosePointInTime_closePointInTime]] .`closePointInTime(array $params = [])` **** @@ -153,8 +147,6 @@ $params['body'] = (array) a point-in-time id to close -[[Elasticsearch_Clientcount_count]] -.`count()` [[Elasticsearch_Clientcount_count]] .`count(array $params = [])` **** @@ -184,8 +176,6 @@ $params['body'] = (array) A query to restrict the results specifie -[[Elasticsearch_Clientcreate_create]] -.`create()` [[Elasticsearch_Clientcreate_create]] .`create(array $params = [])` **** @@ -209,8 +199,6 @@ $params['body'] = (array) The document (Required) -[[Elasticsearch_Clientdelete_delete]] -.`delete()` [[Elasticsearch_Clientdelete_delete]] .`delete(array $params = [])` **** @@ -234,8 +222,6 @@ $params['version_type'] = (enum) Specific version type (Options = inte -[[Elasticsearch_ClientdeleteByQuery_deleteByQuery]] -.`deleteByQuery()` [[Elasticsearch_ClientdeleteByQuery_deleteByQuery]] .`deleteByQuery(array $params = [])` **** @@ -266,8 +252,6 @@ $params['search_timeout'] = (time) Explicit timeout for each search requ -[[Elasticsearch_ClientdeleteByQueryRethrottle_deleteByQueryRethrottle]] -.`deleteByQueryRethrottle()` [[Elasticsearch_ClientdeleteByQueryRethrottle_deleteByQueryRethrottle]] .`deleteByQueryRethrottle(array $params = [])` **** @@ -282,8 +266,6 @@ $params['requests_per_second'] = (number) The throttle to set on this request in -[[Elasticsearch_ClientdeleteScript_deleteScript]] -.`deleteScript()` [[Elasticsearch_ClientdeleteScript_deleteScript]] .`deleteScript(array $params = [])` **** @@ -299,8 +281,6 @@ $params['master_timeout'] = (time) Specify timeout for connection to master -[[Elasticsearch_Clientexists_exists]] -.`exists()` [[Elasticsearch_Clientexists_exists]] .`exists(array $params = [])` **** @@ -326,8 +306,6 @@ $params['version_type'] = (enum) Specific version type (Options = internal,e -[[Elasticsearch_ClientexistsSource_existsSource]] -.`existsSource()` [[Elasticsearch_ClientexistsSource_existsSource]] .`existsSource(array $params = [])` **** @@ -352,8 +330,6 @@ $params['version_type'] = (enum) Specific version type (Options = internal,e -[[Elasticsearch_Clientexplain_explain]] -.`explain()` [[Elasticsearch_Clientexplain_explain]] .`explain(array $params = [])` **** @@ -382,8 +358,6 @@ $params['body'] = (array) The query definition using the Query DSL -[[Elasticsearch_ClientfieldCaps_fieldCaps]] -.`fieldCaps()` [[Elasticsearch_ClientfieldCaps_fieldCaps]] .`fieldCaps(array $params = [])` **** @@ -403,8 +377,6 @@ $params['body'] = (array) An index filter specified with the Query -[[Elasticsearch_Clientget_get]] -.`get()` [[Elasticsearch_Clientget_get]] .`get(array $params = [])` **** @@ -430,8 +402,6 @@ $params['version_type'] = (enum) Specific version type (Options = internal,e -[[Elasticsearch_ClientgetScript_getScript]] -.`getScript()` [[Elasticsearch_ClientgetScript_getScript]] .`getScript(array $params = [])` **** @@ -446,11 +416,9 @@ $params['master_timeout'] = (time) Specify timeout for connection to master -[[Elasticsearch_ClientgetScriptContext_getScriptContext]] -.`getScriptContext()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_ClientgetScriptContext_getScriptContext]] .`getScriptContext(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- @@ -461,11 +429,9 @@ $params['master_timeout'] = (time) Specify timeout for connection to master -[[Elasticsearch_ClientgetScriptLanguages_getScriptLanguages]] -.`getScriptLanguages()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_ClientgetScriptLanguages_getScriptLanguages]] .`getScriptLanguages(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- @@ -476,8 +442,6 @@ $params['master_timeout'] = (time) Specify timeout for connection to master -[[Elasticsearch_ClientgetSource_getSource]] -.`getSource()` [[Elasticsearch_ClientgetSource_getSource]] .`getSource(array $params = [])` **** @@ -502,8 +466,6 @@ $params['version_type'] = (enum) Specific version type (Options = internal,e -[[Elasticsearch_Clientindex_index]] -.`index()` [[Elasticsearch_Clientindex_index]] .`index(array $params = [])` **** @@ -531,8 +493,6 @@ $params['body'] = (array) The document (Required) -[[Elasticsearch_Clientinfo_info]] -.`info()` [[Elasticsearch_Clientinfo_info]] .`info(array $params = [])` **** @@ -545,8 +505,6 @@ $params['body'] = (array) The document (Required) -[[Elasticsearch_Clientmget_mget]] -.`mget()` [[Elasticsearch_Clientmget_mget]] .`mget(array $params = [])` **** @@ -570,8 +528,6 @@ $params['body'] = (array) Document identifiers; can be either `docs` -[[Elasticsearch_Clientmsearch_msearch]] -.`msearch()` [[Elasticsearch_Clientmsearch_msearch]] .`msearch(array $params = [])` **** @@ -590,8 +546,6 @@ $params['pre_filter_shard_size'] = (number) A threshold that enforces a -[[Elasticsearch_ClientmsearchTemplate_msearchTemplate]] -.`msearchTemplate()` [[Elasticsearch_ClientmsearchTemplate_msearchTemplate]] .`msearchTemplate(array $params = [])` **** @@ -612,8 +566,6 @@ $params['body'] = (array) The request definitions (metadata-s -[[Elasticsearch_Clientmtermvectors_mtermvectors]] -.`mtermvectors()` [[Elasticsearch_Clientmtermvectors_mtermvectors]] .`mtermvectors(array $params = [])` **** @@ -627,8 +579,6 @@ $params['index'] = (string) The index in which the document resides. -[[Elasticsearch_ClientopenPointInTime_openPointInTime]] -.`openPointInTime()` [[Elasticsearch_ClientopenPointInTime_openPointInTime]] .`openPointInTime(array $params = [])` **** @@ -647,8 +597,6 @@ $params['keep_alive'] = (string) Specific the time to live for the point -[[Elasticsearch_Clientping_ping]] -.`ping()` [[Elasticsearch_Clientping_ping]] .`ping(array $params = [])` **** @@ -661,8 +609,6 @@ $params['keep_alive'] = (string) Specific the time to live for the point -[[Elasticsearch_ClientputScript_putScript]] -.`putScript()` [[Elasticsearch_ClientputScript_putScript]] .`putScript(array $params = [])` **** @@ -680,11 +626,9 @@ $params['body'] = (array) The document (Required) -[[Elasticsearch_ClientrankEval_rankEval]] -.`rankEval()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_ClientrankEval_rankEval]] .`rankEval(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- @@ -701,8 +645,6 @@ $params['body'] = (array) The ranking evaluation search definition -[[Elasticsearch_Clientreindex_reindex]] -.`reindex()` [[Elasticsearch_Clientreindex_reindex]] .`reindex(array $params = [])` **** @@ -724,8 +666,6 @@ $params['body'] = (array) The search definition using the Quer -[[Elasticsearch_ClientreindexRethrottle_reindexRethrottle]] -.`reindexRethrottle()` [[Elasticsearch_ClientreindexRethrottle_reindexRethrottle]] .`reindexRethrottle(array $params = [])` **** @@ -740,8 +680,6 @@ $params['requests_per_second'] = (number) The throttle to set on this request in -[[Elasticsearch_ClientrenderSearchTemplate_renderSearchTemplate]] -.`renderSearchTemplate()` [[Elasticsearch_ClientrenderSearchTemplate_renderSearchTemplate]] .`renderSearchTemplate(array $params = [])` **** @@ -756,11 +694,9 @@ $params['body'] = (array) The search definition template and its params -[[Elasticsearch_ClientscriptsPainlessExecute_scriptsPainlessExecute]] -.`scriptsPainlessExecute()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_ClientscriptsPainlessExecute_scriptsPainlessExecute]] .`scriptsPainlessExecute(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- @@ -772,8 +708,6 @@ $params['body'] = (array) The script to execute -[[Elasticsearch_Clientscroll_scroll]] -.`scroll()` [[Elasticsearch_Clientscroll_scroll]] .`scroll(array $params = [])` **** @@ -790,8 +724,6 @@ $params['body'] = (array) The scroll ID if not passed by URL o -[[Elasticsearch_Clientsearch_search]] -.`search()` [[Elasticsearch_Clientsearch_search]] .`search(array $params = [])` **** @@ -831,8 +763,6 @@ $params['terminate_after'] = (number) The maximum number of docume -[[Elasticsearch_ClientsearchShards_searchShards]] -.`searchShards()` [[Elasticsearch_ClientsearchShards_searchShards]] .`searchShards(array $params = [])` **** @@ -852,8 +782,6 @@ $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to -[[Elasticsearch_ClientsearchTemplate_searchTemplate]] -.`searchTemplate()` [[Elasticsearch_ClientsearchTemplate_searchTemplate]] .`searchTemplate(array $params = [])` **** @@ -882,8 +810,6 @@ $params['body'] = (array) The search definition template and -[[Elasticsearch_Clienttermvectors_termvectors]] -.`termvectors()` [[Elasticsearch_Clienttermvectors_termvectors]] .`termvectors(array $params = [])` **** @@ -898,8 +824,6 @@ $params['id'] = (string) The id of the document, when not specifie -[[Elasticsearch_Clientupdate_update]] -.`update()` [[Elasticsearch_Clientupdate_update]] .`update(array $params = [])` **** @@ -928,8 +852,6 @@ $params['body'] = (array) The request definition requires eith -[[Elasticsearch_ClientupdateByQuery_updateByQuery]] -.`updateByQuery()` [[Elasticsearch_ClientupdateByQuery_updateByQuery]] .`updateByQuery(array $params = [])` **** @@ -961,8 +883,6 @@ $params['search_timeout'] = (time) Explicit timeout for each search requ -[[Elasticsearch_ClientupdateByQueryRethrottle_updateByQueryRethrottle]] -.`updateByQueryRethrottle()` [[Elasticsearch_ClientupdateByQueryRethrottle_updateByQueryRethrottle]] .`updateByQueryRethrottle(array $params = [])` **** @@ -977,8 +897,6 @@ $params['requests_per_second'] = (number) The throttle to set on this request in -[[Elasticsearch_ClientasyncSearch_asyncSearch]] -.`asyncSearch()` [[Elasticsearch_ClientasyncSearch_asyncSearch]] .`asyncSearch()` **** @@ -992,8 +910,6 @@ Returns the asyncSearch namespace -[[Elasticsearch_Clientautoscaling_autoscaling]] -.`autoscaling()` [[Elasticsearch_Clientautoscaling_autoscaling]] .`autoscaling()` **** @@ -1007,8 +923,6 @@ Returns the autoscaling namespace -[[Elasticsearch_Clientcat_cat]] -.`cat()` [[Elasticsearch_Clientcat_cat]] .`cat()` **** @@ -1022,8 +936,6 @@ Returns the cat namespace -[[Elasticsearch_Clientccr_ccr]] -.`ccr()` [[Elasticsearch_Clientccr_ccr]] .`ccr()` **** @@ -1037,8 +949,6 @@ Returns the ccr namespace -[[Elasticsearch_Clientcluster_cluster]] -.`cluster()` [[Elasticsearch_Clientcluster_cluster]] .`cluster()` **** @@ -1052,8 +962,6 @@ Returns the cluster namespace -[[Elasticsearch_ClientdanglingIndices_danglingIndices]] -.`danglingIndices()` [[Elasticsearch_ClientdanglingIndices_danglingIndices]] .`danglingIndices()` **** @@ -1067,8 +975,6 @@ Returns the danglingIndices namespace -[[Elasticsearch_ClientdataFrameTransformDeprecated_dataFrameTransformDeprecated]] -.`dataFrameTransformDeprecated()` [[Elasticsearch_ClientdataFrameTransformDeprecated_dataFrameTransformDeprecated]] .`dataFrameTransformDeprecated()` **** @@ -1082,8 +988,6 @@ Returns the dataFrameTransformDeprecated namespace -[[Elasticsearch_Clientenrich_enrich]] -.`enrich()` [[Elasticsearch_Clientenrich_enrich]] .`enrich()` **** @@ -1097,8 +1001,6 @@ Returns the enrich namespace -[[Elasticsearch_Clienteql_eql]] -.`eql()` [[Elasticsearch_Clienteql_eql]] .`eql()` **** @@ -1112,8 +1014,6 @@ Returns the eql namespace -[[Elasticsearch_Clientfeatures_features]] -.`features()` [[Elasticsearch_Clientfeatures_features]] .`features()` **** @@ -1127,8 +1027,6 @@ Returns the features namespace -[[Elasticsearch_Clientgraph_graph]] -.`graph()` [[Elasticsearch_Clientgraph_graph]] .`graph()` **** @@ -1142,8 +1040,6 @@ Returns the graph namespace -[[Elasticsearch_Clientilm_ilm]] -.`ilm()` [[Elasticsearch_Clientilm_ilm]] .`ilm()` **** @@ -1157,8 +1053,6 @@ Returns the ilm namespace -[[Elasticsearch_Clientindices_indices]] -.`indices()` [[Elasticsearch_Clientindices_indices]] .`indices()` **** @@ -1172,8 +1066,6 @@ Returns the indices namespace -[[Elasticsearch_Clientingest_ingest]] -.`ingest()` [[Elasticsearch_Clientingest_ingest]] .`ingest()` **** @@ -1187,8 +1079,6 @@ Returns the ingest namespace -[[Elasticsearch_Clientlicense_license]] -.`license()` [[Elasticsearch_Clientlicense_license]] .`license()` **** @@ -1202,8 +1092,6 @@ Returns the license namespace -[[Elasticsearch_Clientlogstash_logstash]] -.`logstash()` [[Elasticsearch_Clientlogstash_logstash]] .`logstash()` **** @@ -1217,8 +1105,6 @@ Returns the logstash namespace -[[Elasticsearch_Clientmigration_migration]] -.`migration()` [[Elasticsearch_Clientmigration_migration]] .`migration()` **** @@ -1232,8 +1118,6 @@ Returns the migration namespace -[[Elasticsearch_Clientml_ml]] -.`ml()` [[Elasticsearch_Clientml_ml]] .`ml()` **** @@ -1247,8 +1131,6 @@ Returns the ml namespace -[[Elasticsearch_Clientmonitoring_monitoring]] -.`monitoring()` [[Elasticsearch_Clientmonitoring_monitoring]] .`monitoring()` **** @@ -1262,8 +1144,6 @@ Returns the monitoring namespace -[[Elasticsearch_Clientnodes_nodes]] -.`nodes()` [[Elasticsearch_Clientnodes_nodes]] .`nodes()` **** @@ -1277,8 +1157,6 @@ Returns the nodes namespace -[[Elasticsearch_Clientrollup_rollup]] -.`rollup()` [[Elasticsearch_Clientrollup_rollup]] .`rollup()` **** @@ -1292,8 +1170,6 @@ Returns the rollup namespace -[[Elasticsearch_ClientsearchableSnapshots_searchableSnapshots]] -.`searchableSnapshots()` [[Elasticsearch_ClientsearchableSnapshots_searchableSnapshots]] .`searchableSnapshots()` **** @@ -1307,8 +1183,6 @@ Returns the searchableSnapshots namespace -[[Elasticsearch_Clientsecurity_security]] -.`security()` [[Elasticsearch_Clientsecurity_security]] .`security()` **** @@ -1322,8 +1196,6 @@ Returns the security namespace -[[Elasticsearch_Clientslm_slm]] -.`slm()` [[Elasticsearch_Clientslm_slm]] .`slm()` **** @@ -1337,8 +1209,6 @@ Returns the slm namespace -[[Elasticsearch_Clientsnapshot_snapshot]] -.`snapshot()` [[Elasticsearch_Clientsnapshot_snapshot]] .`snapshot()` **** @@ -1352,8 +1222,6 @@ Returns the snapshot namespace -[[Elasticsearch_Clientsql_sql]] -.`sql()` [[Elasticsearch_Clientsql_sql]] .`sql()` **** @@ -1367,8 +1235,6 @@ Returns the sql namespace -[[Elasticsearch_Clientssl_ssl]] -.`ssl()` [[Elasticsearch_Clientssl_ssl]] .`ssl()` **** @@ -1382,8 +1248,6 @@ Returns the ssl namespace -[[Elasticsearch_Clienttasks_tasks]] -.`tasks()` [[Elasticsearch_Clienttasks_tasks]] .`tasks()` **** @@ -1397,8 +1261,6 @@ Returns the tasks namespace -[[Elasticsearch_ClienttextStructure_textStructure]] -.`textStructure()` [[Elasticsearch_ClienttextStructure_textStructure]] .`textStructure()` **** @@ -1412,8 +1274,6 @@ Returns the textStructure namespace -[[Elasticsearch_Clienttransform_transform]] -.`transform()` [[Elasticsearch_Clienttransform_transform]] .`transform()` **** @@ -1427,8 +1287,6 @@ Returns the transform namespace -[[Elasticsearch_Clientwatcher_watcher]] -.`watcher()` [[Elasticsearch_Clientwatcher_watcher]] .`watcher()` **** @@ -1442,8 +1300,6 @@ Returns the watcher namespace -[[Elasticsearch_Clientxpack_xpack]] -.`xpack()` [[Elasticsearch_Clientxpack_xpack]] .`xpack()` **** @@ -1457,8 +1313,6 @@ Returns the xpack namespace -[[Elasticsearch_Client-call-_call]] -.`__call()` [[Elasticsearch_Client-call-_call]] .`__call(string $name, array $arguments)` **** @@ -1472,8 +1326,6 @@ Catchall for registered namespaces -[[Elasticsearch_ClientextractArgument_extractArgument]] -.`extractArgument()` [[Elasticsearch_ClientextractArgument_extractArgument]] .`extractArgument(array $params, string $arg)` **** diff --git a/docs/build/Elasticsearch/ClientBuilder.asciidoc b/docs/build/Elasticsearch/ClientBuilder.asciidoc index 693b697cb..a27b7cd03 100644 --- a/docs/build/Elasticsearch/ClientBuilder.asciidoc +++ b/docs/build/Elasticsearch/ClientBuilder.asciidoc @@ -45,8 +45,6 @@ The class defines the following methods: -[[Elasticsearch_ClientBuildercreate_create]] -.`create()` [[Elasticsearch_ClientBuildercreate_create]] .`create()` **** @@ -60,8 +58,6 @@ Create an instance of ClientBuilder -[[Elasticsearch_ClientBuildergetTransport_getTransport]] -.`getTransport()` [[Elasticsearch_ClientBuildergetTransport_getTransport]] .`getTransport()` **** @@ -75,8 +71,6 @@ Can supply first parm to Client::__construct() when invoking manually or with de -[[Elasticsearch_ClientBuildergetEndpoint_getEndpoint]] -.`getEndpoint()` [[Elasticsearch_ClientBuildergetEndpoint_getEndpoint]] .`getEndpoint()` **** @@ -90,8 +84,6 @@ Can supply second parm to Client::__construct() when invoking manually or with d -[[Elasticsearch_ClientBuildergetRegisteredNamespacesBuilders_getRegisteredNamespacesBuilders]] -.`getRegisteredNamespacesBuilders()` [[Elasticsearch_ClientBuildergetRegisteredNamespacesBuilders_getRegisteredNamespacesBuilders]] .`getRegisteredNamespacesBuilders()` **** @@ -105,8 +97,6 @@ Can supply third parm to Client::__construct() when invoking manually or with de -[[Elasticsearch_ClientBuilderfromConfig_fromConfig]] -.`fromConfig()` [[Elasticsearch_ClientBuilderfromConfig_fromConfig]] .`fromConfig(array $config, bool $quiet = false)` **** @@ -122,8 +112,6 @@ corresponds to setConnectionPool(). -[[Elasticsearch_ClientBuilderdefaultHandler_defaultHandler]] -.`defaultHandler()` [[Elasticsearch_ClientBuilderdefaultHandler_defaultHandler]] .`defaultHandler(array $multiParams = [], array $singleParams = [])` **** @@ -137,8 +125,6 @@ Get the default handler -[[Elasticsearch_ClientBuildermultiHandler_multiHandler]] -.`multiHandler()` [[Elasticsearch_ClientBuildermultiHandler_multiHandler]] .`multiHandler(array $params = [])` **** @@ -152,8 +138,6 @@ Get the multi handler for async (CurlMultiHandler) -[[Elasticsearch_ClientBuildersingleHandler_singleHandler]] -.`singleHandler()` [[Elasticsearch_ClientBuildersingleHandler_singleHandler]] .`singleHandler()` **** @@ -167,8 +151,6 @@ Get the handler instance (CurlHandler) -[[Elasticsearch_ClientBuildersetConnectionFactory_setConnectionFactory]] -.`setConnectionFactory()` [[Elasticsearch_ClientBuildersetConnectionFactory_setConnectionFactory]] .`setConnectionFactory(Elasticsearch\Connections\ConnectionFactoryInterface $connectionFactory)` **** @@ -182,8 +164,6 @@ Set connection Factory -[[Elasticsearch_ClientBuildersetConnectionPool_setConnectionPool]] -.`setConnectionPool()` [[Elasticsearch_ClientBuildersetConnectionPool_setConnectionPool]] .`setConnectionPool(AbstractConnectionPool|string $connectionPool, array $args = [])` **** @@ -197,8 +177,6 @@ Set the connection pool (default is StaticNoPingConnectionPool) -[[Elasticsearch_ClientBuildersetEndpoint_setEndpoint]] -.`setEndpoint()` [[Elasticsearch_ClientBuildersetEndpoint_setEndpoint]] .`setEndpoint(callable $endpoint)` **** @@ -212,8 +190,6 @@ Set the endpoint -[[Elasticsearch_ClientBuilderregisterNamespace_registerNamespace]] -.`registerNamespace()` [[Elasticsearch_ClientBuilderregisterNamespace_registerNamespace]] .`registerNamespace(Elasticsearch\Namespaces\NamespaceBuilderInterface $namespaceBuilder)` **** @@ -227,8 +203,6 @@ Register namespace -[[Elasticsearch_ClientBuildersetTransport_setTransport]] -.`setTransport()` [[Elasticsearch_ClientBuildersetTransport_setTransport]] .`setTransport(Elasticsearch\Transport $transport)` **** @@ -242,8 +216,6 @@ Set the transport -[[Elasticsearch_ClientBuildersetHandler_setHandler]] -.`setHandler()` [[Elasticsearch_ClientBuildersetHandler_setHandler]] .`setHandler(mixed $handler)` **** @@ -257,8 +229,6 @@ Set the HTTP handler (cURL is default) -[[Elasticsearch_ClientBuildersetLogger_setLogger]] -.`setLogger()` [[Elasticsearch_ClientBuildersetLogger_setLogger]] .`setLogger(Psr\Log\LoggerInterface $logger)` **** @@ -272,8 +242,6 @@ Set the PSR-3 Logger -[[Elasticsearch_ClientBuildersetTracer_setTracer]] -.`setTracer()` [[Elasticsearch_ClientBuildersetTracer_setTracer]] .`setTracer(Psr\Log\LoggerInterface $tracer)` **** @@ -287,8 +255,6 @@ Set the PSR-3 tracer -[[Elasticsearch_ClientBuildersetSerializer_setSerializer]] -.`setSerializer()` [[Elasticsearch_ClientBuildersetSerializer_setSerializer]] .`setSerializer(Elasticsearch\Serializers\SerializerInterface|string $serializer)` **** @@ -302,8 +268,6 @@ Set the serializer -[[Elasticsearch_ClientBuildersetHosts_setHosts]] -.`setHosts()` [[Elasticsearch_ClientBuildersetHosts_setHosts]] .`setHosts(array $hosts)` **** @@ -317,8 +281,6 @@ Set the hosts (nodes) -[[Elasticsearch_ClientBuildersetApiKey_setApiKey]] -.`setApiKey()` [[Elasticsearch_ClientBuildersetApiKey_setApiKey]] .`setApiKey(string $id, string $apiKey)` **** @@ -332,8 +294,6 @@ Set the APIKey Pair, consiting of the API Id and the ApiKey of the Response from -[[Elasticsearch_ClientBuildersetBasicAuthentication_setBasicAuthentication]] -.`setBasicAuthentication()` [[Elasticsearch_ClientBuildersetBasicAuthentication_setBasicAuthentication]] .`setBasicAuthentication(string $username, string $password)` **** @@ -347,8 +307,6 @@ Set Basic access authentication -[[Elasticsearch_ClientBuildersetElasticCloudId_setElasticCloudId]] -.`setElasticCloudId()` [[Elasticsearch_ClientBuildersetElasticCloudId_setElasticCloudId]] .`setElasticCloudId(string $cloudId)` **** @@ -362,8 +320,6 @@ Set Elastic Cloud ID to connect to Elastic Cloud -[[Elasticsearch_ClientBuildersetConnectionParams_setConnectionParams]] -.`setConnectionParams()` [[Elasticsearch_ClientBuildersetConnectionParams_setConnectionParams]] .`setConnectionParams(array $params)` **** @@ -377,8 +333,6 @@ Set connection parameters -[[Elasticsearch_ClientBuildersetRetries_setRetries]] -.`setRetries()` [[Elasticsearch_ClientBuildersetRetries_setRetries]] .`setRetries(int $retries)` **** @@ -392,8 +346,6 @@ Set number or retries (default is equal to number of nodes) -[[Elasticsearch_ClientBuildersetSelector_setSelector]] -.`setSelector()` [[Elasticsearch_ClientBuildersetSelector_setSelector]] .`setSelector(Elasticsearch\ConnectionPool\Selectors\SelectorInterface|string $selector)` **** @@ -407,8 +359,6 @@ Set the selector algorithm -[[Elasticsearch_ClientBuildersetSniffOnStart_setSniffOnStart]] -.`setSniffOnStart()` [[Elasticsearch_ClientBuildersetSniffOnStart_setSniffOnStart]] .`setSniffOnStart(bool $sniffOnStart)` **** @@ -422,8 +372,6 @@ Set sniff on start -[[Elasticsearch_ClientBuildersetSSLCert_setSSLCert]] -.`setSSLCert()` [[Elasticsearch_ClientBuildersetSSLCert_setSSLCert]] .`setSSLCert(string $cert, string $password = null)` **** @@ -437,8 +385,6 @@ Set SSL certificate -[[Elasticsearch_ClientBuildersetSSLKey_setSSLKey]] -.`setSSLKey()` [[Elasticsearch_ClientBuildersetSSLKey_setSSLKey]] .`setSSLKey(string $key, string $password = null)` **** @@ -452,8 +398,6 @@ Set SSL key -[[Elasticsearch_ClientBuildersetSSLVerification_setSSLVerification]] -.`setSSLVerification()` [[Elasticsearch_ClientBuildersetSSLVerification_setSSLVerification]] .`setSSLVerification(bool|string $value = true)` **** @@ -467,8 +411,6 @@ Set SSL verification -[[Elasticsearch_ClientBuildersetElasticMetaHeader_setElasticMetaHeader]] -.`setElasticMetaHeader()` [[Elasticsearch_ClientBuildersetElasticMetaHeader_setElasticMetaHeader]] .`setElasticMetaHeader($value = true)` **** @@ -482,8 +424,6 @@ Set or disable the x-elastic-client-meta header -[[Elasticsearch_ClientBuilderincludePortInHostHeader_includePortInHostHeader]] -.`includePortInHostHeader()` [[Elasticsearch_ClientBuilderincludePortInHostHeader_includePortInHostHeader]] .`includePortInHostHeader(bool $enable)` **** @@ -497,8 +437,6 @@ Include the port in Host header -[[Elasticsearch_ClientBuilderbuild_build]] -.`build()` [[Elasticsearch_ClientBuilderbuild_build]] .`build()` **** @@ -512,8 +450,6 @@ Build and returns the Client object -[[Elasticsearch_ClientBuilderinstantiate_instantiate]] -.`instantiate()` [[Elasticsearch_ClientBuilderinstantiate_instantiate]] .`instantiate(Elasticsearch\Transport $transport, callable $endpoint, array $registeredNamespaces)` **** diff --git a/docs/build/Elasticsearch/Namespaces/AsyncSearchNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/AsyncSearchNamespace.asciidoc index 106cfb08a..54344a4ed 100644 --- a/docs/build/Elasticsearch/Namespaces/AsyncSearchNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/AsyncSearchNamespace.asciidoc @@ -25,8 +25,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_AsyncSearchNamespacedelete_delete]] -.`delete()` [[Elasticsearch_Namespaces_AsyncSearchNamespacedelete_delete]] .`delete(array $params = [])` **** @@ -40,8 +38,6 @@ $params['id'] = (string) The async search ID -[[Elasticsearch_Namespaces_AsyncSearchNamespaceget_get]] -.`get()` [[Elasticsearch_Namespaces_AsyncSearchNamespaceget_get]] .`get(array $params = [])` **** @@ -58,8 +54,6 @@ $params['typed_keys'] = (boolean) Specify whether aggregation a -[[Elasticsearch_Namespaces_AsyncSearchNamespacestatus_status]] -.`status()` [[Elasticsearch_Namespaces_AsyncSearchNamespacestatus_status]] .`status(array $params = [])` **** @@ -73,8 +67,6 @@ $params['id'] = (string) The async search ID -[[Elasticsearch_Namespaces_AsyncSearchNamespacesubmit_submit]] -.`submit()` [[Elasticsearch_Namespaces_AsyncSearchNamespacesubmit_submit]] .`submit(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/AutoscalingNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/AutoscalingNamespace.asciidoc index b02ff363c..869cb6106 100644 --- a/docs/build/Elasticsearch/Namespaces/AutoscalingNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/AutoscalingNamespace.asciidoc @@ -25,8 +25,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_AutoscalingNamespacedeleteAutoscalingPolicy_deleteAutoscalingPolicy]] -.`deleteAutoscalingPolicy()` [[Elasticsearch_Namespaces_AutoscalingNamespacedeleteAutoscalingPolicy_deleteAutoscalingPolicy]] .`deleteAutoscalingPolicy(array $params = [])` **** @@ -40,8 +38,6 @@ $params['name'] = (string) the name of the autoscaling policy -[[Elasticsearch_Namespaces_AutoscalingNamespacegetAutoscalingCapacity_getAutoscalingCapacity]] -.`getAutoscalingCapacity()` [[Elasticsearch_Namespaces_AutoscalingNamespacegetAutoscalingCapacity_getAutoscalingCapacity]] .`getAutoscalingCapacity(array $params = [])` **** @@ -54,8 +50,6 @@ $params['name'] = (string) the name of the autoscaling policy -[[Elasticsearch_Namespaces_AutoscalingNamespacegetAutoscalingPolicy_getAutoscalingPolicy]] -.`getAutoscalingPolicy()` [[Elasticsearch_Namespaces_AutoscalingNamespacegetAutoscalingPolicy_getAutoscalingPolicy]] .`getAutoscalingPolicy(array $params = [])` **** @@ -69,8 +63,6 @@ $params['name'] = (string) the name of the autoscaling policy -[[Elasticsearch_Namespaces_AutoscalingNamespaceputAutoscalingPolicy_putAutoscalingPolicy]] -.`putAutoscalingPolicy()` [[Elasticsearch_Namespaces_AutoscalingNamespaceputAutoscalingPolicy_putAutoscalingPolicy]] .`putAutoscalingPolicy(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/CatNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/CatNamespace.asciidoc index 3324a9868..81a1f6e45 100644 --- a/docs/build/Elasticsearch/Namespaces/CatNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/CatNamespace.asciidoc @@ -46,8 +46,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_CatNamespacealiases_aliases]] -.`aliases()` [[Elasticsearch_Namespaces_CatNamespacealiases_aliases]] .`aliases(array $params = [])` **** @@ -68,8 +66,6 @@ $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to co -[[Elasticsearch_Namespaces_CatNamespaceallocation_allocation]] -.`allocation()` [[Elasticsearch_Namespaces_CatNamespaceallocation_allocation]] .`allocation(array $params = [])` **** @@ -91,8 +87,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers (Defa -[[Elasticsearch_Namespaces_CatNamespacecount_count]] -.`count()` [[Elasticsearch_Namespaces_CatNamespacecount_count]] .`count(array $params = [])` **** @@ -111,8 +105,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers (Default = fa -[[Elasticsearch_Namespaces_CatNamespacefielddata_fielddata]] -.`fielddata()` [[Elasticsearch_Namespaces_CatNamespacefielddata_fielddata]] .`fielddata(array $params = [])` **** @@ -132,8 +124,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers (Default = fa -[[Elasticsearch_Namespaces_CatNamespacehealth_health]] -.`health()` [[Elasticsearch_Namespaces_CatNamespacehealth_health]] .`health(array $params = [])` **** @@ -153,8 +143,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers (Default = fa -[[Elasticsearch_Namespaces_CatNamespacehelp_help]] -.`help()` [[Elasticsearch_Namespaces_CatNamespacehelp_help]] .`help(array $params = [])` **** @@ -169,8 +157,6 @@ $params['s'] = (list) Comma-separated list of column names or column aliases -[[Elasticsearch_Namespaces_CatNamespaceindices_indices]] -.`indices()` [[Elasticsearch_Namespaces_CatNamespaceindices_indices]] .`indices(array $params = [])` **** @@ -197,8 +183,6 @@ $params['expand_wildcards'] = (enum) Whether to expand wildcard express -[[Elasticsearch_Namespaces_CatNamespacemaster_master]] -.`master()` [[Elasticsearch_Namespaces_CatNamespacemaster_master]] .`master(array $params = [])` **** @@ -218,8 +202,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers (Defa -[[Elasticsearch_Namespaces_CatNamespacemlDataFrameAnalytics_mlDataFrameAnalytics]] -.`mlDataFrameAnalytics()` [[Elasticsearch_Namespaces_CatNamespacemlDataFrameAnalytics_mlDataFrameAnalytics]] .`mlDataFrameAnalytics(array $params = [])` **** @@ -241,8 +223,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers (Defa -[[Elasticsearch_Namespaces_CatNamespacemlDatafeeds_mlDatafeeds]] -.`mlDatafeeds()` [[Elasticsearch_Namespaces_CatNamespacemlDatafeeds_mlDatafeeds]] .`mlDatafeeds(array $params = [])` **** @@ -264,8 +244,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers ( -[[Elasticsearch_Namespaces_CatNamespacemlJobs_mlJobs]] -.`mlJobs()` [[Elasticsearch_Namespaces_CatNamespacemlJobs_mlJobs]] .`mlJobs(array $params = [])` **** @@ -288,8 +266,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers (Defa -[[Elasticsearch_Namespaces_CatNamespacemlTrainedModels_mlTrainedModels]] -.`mlTrainedModels()` [[Elasticsearch_Namespaces_CatNamespacemlTrainedModels_mlTrainedModels]] .`mlTrainedModels(array $params = [])` **** @@ -313,8 +289,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers (Defa -[[Elasticsearch_Namespaces_CatNamespacenodeattrs_nodeattrs]] -.`nodeattrs()` [[Elasticsearch_Namespaces_CatNamespacenodeattrs_nodeattrs]] .`nodeattrs(array $params = [])` **** @@ -334,8 +308,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers (Defa -[[Elasticsearch_Namespaces_CatNamespacenodes_nodes]] -.`nodes()` [[Elasticsearch_Namespaces_CatNamespacenodes_nodes]] .`nodes(array $params = [])` **** @@ -358,8 +330,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers (Defa -[[Elasticsearch_Namespaces_CatNamespacependingTasks_pendingTasks]] -.`pendingTasks()` [[Elasticsearch_Namespaces_CatNamespacependingTasks_pendingTasks]] .`pendingTasks(array $params = [])` **** @@ -380,8 +350,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers (Defa -[[Elasticsearch_Namespaces_CatNamespaceplugins_plugins]] -.`plugins()` [[Elasticsearch_Namespaces_CatNamespaceplugins_plugins]] .`plugins(array $params = [])` **** @@ -402,8 +370,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers (D -[[Elasticsearch_Namespaces_CatNamespacerecovery_recovery]] -.`recovery()` [[Elasticsearch_Namespaces_CatNamespacerecovery_recovery]] .`recovery(array $params = [])` **** @@ -426,8 +392,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers (Default -[[Elasticsearch_Namespaces_CatNamespacerepositories_repositories]] -.`repositories()` [[Elasticsearch_Namespaces_CatNamespacerepositories_repositories]] .`repositories(array $params = [])` **** @@ -447,8 +411,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers (Defa -[[Elasticsearch_Namespaces_CatNamespacesegments_segments]] -.`segments()` [[Elasticsearch_Namespaces_CatNamespacesegments_segments]] .`segments(array $params = [])` **** @@ -468,8 +430,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers (Default = fa -[[Elasticsearch_Namespaces_CatNamespaceshards_shards]] -.`shards()` [[Elasticsearch_Namespaces_CatNamespaceshards_shards]] .`shards(array $params = [])` **** @@ -492,8 +452,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers (Defa -[[Elasticsearch_Namespaces_CatNamespacesnapshots_snapshots]] -.`snapshots()` [[Elasticsearch_Namespaces_CatNamespacesnapshots_snapshots]] .`snapshots(array $params = [])` **** @@ -515,8 +473,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers ( -[[Elasticsearch_Namespaces_CatNamespacetasks_tasks]] -.`tasks()` [[Elasticsearch_Namespaces_CatNamespacetasks_tasks]] .`tasks(array $params = [])` **** @@ -532,8 +488,6 @@ $params['actions'] = (list) A comma-separated list of actions that should -[[Elasticsearch_Namespaces_CatNamespacetemplates_templates]] -.`templates()` [[Elasticsearch_Namespaces_CatNamespacetemplates_templates]] .`templates(array $params = [])` **** @@ -554,8 +508,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers (Defa -[[Elasticsearch_Namespaces_CatNamespacethreadPool_threadPool]] -.`threadPool()` [[Elasticsearch_Namespaces_CatNamespacethreadPool_threadPool]] .`threadPool(array $params = [])` **** @@ -577,8 +529,6 @@ $params['v'] = (boolean) Verbose mode. Display column headers -[[Elasticsearch_Namespaces_CatNamespacetransforms_transforms]] -.`transforms()` [[Elasticsearch_Namespaces_CatNamespacetransforms_transforms]] .`transforms(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/CcrNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/CcrNamespace.asciidoc index 3547ef2a4..7003c839b 100644 --- a/docs/build/Elasticsearch/Namespaces/CcrNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/CcrNamespace.asciidoc @@ -34,8 +34,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_CcrNamespacedeleteAutoFollowPattern_deleteAutoFollowPattern]] -.`deleteAutoFollowPattern()` [[Elasticsearch_Namespaces_CcrNamespacedeleteAutoFollowPattern_deleteAutoFollowPattern]] .`deleteAutoFollowPattern(array $params = [])` **** @@ -49,8 +47,6 @@ $params['name'] = (string) The name of the auto follow pattern. -[[Elasticsearch_Namespaces_CcrNamespacefollow_follow]] -.`follow()` [[Elasticsearch_Namespaces_CcrNamespacefollow_follow]] .`follow(array $params = [])` **** @@ -66,8 +62,6 @@ $params['body'] = (array) The name of the leader index and oth -[[Elasticsearch_Namespaces_CcrNamespacefollowInfo_followInfo]] -.`followInfo()` [[Elasticsearch_Namespaces_CcrNamespacefollowInfo_followInfo]] .`followInfo(array $params = [])` **** @@ -81,8 +75,6 @@ $params['index'] = (list) A comma-separated list of index patterns; use `_all` t -[[Elasticsearch_Namespaces_CcrNamespacefollowStats_followStats]] -.`followStats()` [[Elasticsearch_Namespaces_CcrNamespacefollowStats_followStats]] .`followStats(array $params = [])` **** @@ -96,8 +88,6 @@ $params['index'] = (list) A comma-separated list of index patterns; use `_all` t -[[Elasticsearch_Namespaces_CcrNamespaceforgetFollower_forgetFollower]] -.`forgetFollower()` [[Elasticsearch_Namespaces_CcrNamespaceforgetFollower_forgetFollower]] .`forgetFollower(array $params = [])` **** @@ -112,8 +102,6 @@ $params['body'] = (array) the name and UUID of the follower index, the name of -[[Elasticsearch_Namespaces_CcrNamespacegetAutoFollowPattern_getAutoFollowPattern]] -.`getAutoFollowPattern()` [[Elasticsearch_Namespaces_CcrNamespacegetAutoFollowPattern_getAutoFollowPattern]] .`getAutoFollowPattern(array $params = [])` **** @@ -127,8 +115,6 @@ $params['name'] = (string) The name of the auto follow pattern. -[[Elasticsearch_Namespaces_CcrNamespacepauseAutoFollowPattern_pauseAutoFollowPattern]] -.`pauseAutoFollowPattern()` [[Elasticsearch_Namespaces_CcrNamespacepauseAutoFollowPattern_pauseAutoFollowPattern]] .`pauseAutoFollowPattern(array $params = [])` **** @@ -142,8 +128,6 @@ $params['name'] = (string) The name of the auto follow pattern that should pause -[[Elasticsearch_Namespaces_CcrNamespacepauseFollow_pauseFollow]] -.`pauseFollow()` [[Elasticsearch_Namespaces_CcrNamespacepauseFollow_pauseFollow]] .`pauseFollow(array $params = [])` **** @@ -157,8 +141,6 @@ $params['index'] = (string) The name of the follower index that should pause fol -[[Elasticsearch_Namespaces_CcrNamespaceputAutoFollowPattern_putAutoFollowPattern]] -.`putAutoFollowPattern()` [[Elasticsearch_Namespaces_CcrNamespaceputAutoFollowPattern_putAutoFollowPattern]] .`putAutoFollowPattern(array $params = [])` **** @@ -172,8 +154,6 @@ $params['name'] = (string) The name of the auto follow pattern. -[[Elasticsearch_Namespaces_CcrNamespaceresumeAutoFollowPattern_resumeAutoFollowPattern]] -.`resumeAutoFollowPattern()` [[Elasticsearch_Namespaces_CcrNamespaceresumeAutoFollowPattern_resumeAutoFollowPattern]] .`resumeAutoFollowPattern(array $params = [])` **** @@ -187,8 +167,6 @@ $params['name'] = (string) The name of the auto follow pattern to resume discove -[[Elasticsearch_Namespaces_CcrNamespaceresumeFollow_resumeFollow]] -.`resumeFollow()` [[Elasticsearch_Namespaces_CcrNamespaceresumeFollow_resumeFollow]] .`resumeFollow(array $params = [])` **** @@ -202,8 +180,6 @@ $params['index'] = (string) The name of the follow index to resume following. -[[Elasticsearch_Namespaces_CcrNamespacestats_stats]] -.`stats()` [[Elasticsearch_Namespaces_CcrNamespacestats_stats]] .`stats(array $params = [])` **** @@ -216,8 +192,6 @@ $params['index'] = (string) The name of the follow index to resume following. -[[Elasticsearch_Namespaces_CcrNamespaceunfollow_unfollow]] -.`unfollow()` [[Elasticsearch_Namespaces_CcrNamespaceunfollow_unfollow]] .`unfollow(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/ClusterNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/ClusterNamespace.asciidoc index dcbe9110a..a4a954800 100644 --- a/docs/build/Elasticsearch/Namespaces/ClusterNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/ClusterNamespace.asciidoc @@ -36,8 +36,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_ClusterNamespaceallocationExplain_allocationExplain]] -.`allocationExplain()` [[Elasticsearch_Namespaces_ClusterNamespaceallocationExplain_allocationExplain]] .`allocationExplain(array $params = [])` **** @@ -53,8 +51,6 @@ $params['body'] = (array) The index, shard, and primary flag to -[[Elasticsearch_Namespaces_ClusterNamespacedeleteComponentTemplate_deleteComponentTemplate]] -.`deleteComponentTemplate()` [[Elasticsearch_Namespaces_ClusterNamespacedeleteComponentTemplate_deleteComponentTemplate]] .`deleteComponentTemplate(array $params = [])` **** @@ -70,8 +66,6 @@ $params['master_timeout'] = (time) Specify timeout for connection to master -[[Elasticsearch_Namespaces_ClusterNamespacedeleteVotingConfigExclusions_deleteVotingConfigExclusions]] -.`deleteVotingConfigExclusions()` [[Elasticsearch_Namespaces_ClusterNamespacedeleteVotingConfigExclusions_deleteVotingConfigExclusions]] .`deleteVotingConfigExclusions(array $params = [])` **** @@ -85,8 +79,6 @@ $params['wait_for_removal'] = (boolean) Specifies whether to wait for all exclud -[[Elasticsearch_Namespaces_ClusterNamespaceexistsComponentTemplate_existsComponentTemplate]] -.`existsComponentTemplate()` [[Elasticsearch_Namespaces_ClusterNamespaceexistsComponentTemplate_existsComponentTemplate]] .`existsComponentTemplate(array $params = [])` **** @@ -102,8 +94,6 @@ $params['local'] = (boolean) Return local information, do not retrieve -[[Elasticsearch_Namespaces_ClusterNamespacegetComponentTemplate_getComponentTemplate]] -.`getComponentTemplate()` [[Elasticsearch_Namespaces_ClusterNamespacegetComponentTemplate_getComponentTemplate]] .`getComponentTemplate(array $params = [])` **** @@ -119,8 +109,6 @@ $params['local'] = (boolean) Return local information, do not retrieve -[[Elasticsearch_Namespaces_ClusterNamespacegetSettings_getSettings]] -.`getSettings()` [[Elasticsearch_Namespaces_ClusterNamespacegetSettings_getSettings]] .`getSettings(array $params = [])` **** @@ -137,8 +125,6 @@ $params['include_defaults'] = (boolean) Whether to return all default clusters s -[[Elasticsearch_Namespaces_ClusterNamespacehealth_health]] -.`health()` [[Elasticsearch_Namespaces_ClusterNamespacehealth_health]] .`health(array $params = [])` **** @@ -163,8 +149,6 @@ $params['wait_for_status'] = (enum) Wait until cluster is in a s -[[Elasticsearch_Namespaces_ClusterNamespacependingTasks_pendingTasks]] -.`pendingTasks()` [[Elasticsearch_Namespaces_ClusterNamespacependingTasks_pendingTasks]] .`pendingTasks(array $params = [])` **** @@ -179,8 +163,6 @@ $params['master_timeout'] = (time) Specify timeout for connection to master -[[Elasticsearch_Namespaces_ClusterNamespacepostVotingConfigExclusions_postVotingConfigExclusions]] -.`postVotingConfigExclusions()` [[Elasticsearch_Namespaces_ClusterNamespacepostVotingConfigExclusions_postVotingConfigExclusions]] .`postVotingConfigExclusions(array $params = [])` **** @@ -194,8 +176,6 @@ $params['node_ids'] = (string) A comma-separated list of the persistent ids of -[[Elasticsearch_Namespaces_ClusterNamespaceputComponentTemplate_putComponentTemplate]] -.`putComponentTemplate()` [[Elasticsearch_Namespaces_ClusterNamespaceputComponentTemplate_putComponentTemplate]] .`putComponentTemplate(array $params = [])` **** @@ -213,8 +193,6 @@ $params['body'] = (array) The template definition (Required) -[[Elasticsearch_Namespaces_ClusterNamespaceputSettings_putSettings]] -.`putSettings()` [[Elasticsearch_Namespaces_ClusterNamespaceputSettings_putSettings]] .`putSettings(array $params = [])` **** @@ -231,8 +209,6 @@ $params['body'] = (array) The settings to be updated. Can be either `t -[[Elasticsearch_Namespaces_ClusterNamespaceremoteInfo_remoteInfo]] -.`remoteInfo()` [[Elasticsearch_Namespaces_ClusterNamespaceremoteInfo_remoteInfo]] .`remoteInfo(array $params = [])` **** @@ -245,8 +221,6 @@ $params['body'] = (array) The settings to be updated. Can be either `t -[[Elasticsearch_Namespaces_ClusterNamespacereroute_reroute]] -.`reroute()` [[Elasticsearch_Namespaces_ClusterNamespacereroute_reroute]] .`reroute(array $params = [])` **** @@ -266,8 +240,6 @@ $params['body'] = (array) The definition of `commands` to perform (`mo -[[Elasticsearch_Namespaces_ClusterNamespacestate_state]] -.`state()` [[Elasticsearch_Namespaces_ClusterNamespacestate_state]] .`state(array $params = [])` **** @@ -290,8 +262,6 @@ $params['expand_wildcards'] = (enum) Whether to expand wildcard express -[[Elasticsearch_Namespaces_ClusterNamespacestats_stats]] -.`stats()` [[Elasticsearch_Namespaces_ClusterNamespacestats_stats]] .`stats(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/DanglingIndicesNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/DanglingIndicesNamespace.asciidoc index 4bfaa9f36..15976aa09 100644 --- a/docs/build/Elasticsearch/Namespaces/DanglingIndicesNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/DanglingIndicesNamespace.asciidoc @@ -24,8 +24,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_DanglingIndicesNamespacedeleteDanglingIndex_deleteDanglingIndex]] -.`deleteDanglingIndex()` [[Elasticsearch_Namespaces_DanglingIndicesNamespacedeleteDanglingIndex_deleteDanglingIndex]] .`deleteDanglingIndex(array $params = [])` **** @@ -42,8 +40,6 @@ $params['master_timeout'] = (time) Specify timeout for connection to master -[[Elasticsearch_Namespaces_DanglingIndicesNamespaceimportDanglingIndex_importDanglingIndex]] -.`importDanglingIndex()` [[Elasticsearch_Namespaces_DanglingIndicesNamespaceimportDanglingIndex_importDanglingIndex]] .`importDanglingIndex(array $params = [])` **** @@ -60,8 +56,6 @@ $params['master_timeout'] = (time) Specify timeout for connection to master -[[Elasticsearch_Namespaces_DanglingIndicesNamespacelistDanglingIndices_listDanglingIndices]] -.`listDanglingIndices()` [[Elasticsearch_Namespaces_DanglingIndicesNamespacelistDanglingIndices_listDanglingIndices]] .`listDanglingIndices(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.asciidoc index 351617ace..d0fe2f51f 100644 --- a/docs/build/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.asciidoc @@ -29,11 +29,9 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacedeleteTransform_deleteTransform]] -.`deleteTransform()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible [[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacedeleteTransform_deleteTransform]] .`deleteTransform(array $params = [])` +*NOTE:* This API is BETA and may change in ways that are not backwards compatible **** [source,php] ---- @@ -46,11 +44,9 @@ $params['force'] = (boolean) When `true`, the transform is deleted regard -[[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacegetTransform_getTransform]] -.`getTransform()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible [[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacegetTransform_getTransform]] .`getTransform(array $params = [])` +*NOTE:* This API is BETA and may change in ways that are not backwards compatible **** [source,php] ---- @@ -66,11 +62,9 @@ $params['exclude_generated'] = (boolean) Omits generated fields. Allows transfor -[[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacegetTransformStats_getTransformStats]] -.`getTransformStats()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible [[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacegetTransformStats_getTransformStats]] .`getTransformStats(array $params = [])` +*NOTE:* This API is BETA and may change in ways that are not backwards compatible **** [source,php] ---- @@ -85,8 +79,6 @@ $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression -[[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacepreviewTransform_previewTransform]] -.`previewTransform()` [[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacepreviewTransform_previewTransform]] .`previewTransform(array $params = [])` **** @@ -99,11 +91,9 @@ $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression -[[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespaceputTransform_putTransform]] -.`putTransform()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible [[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespaceputTransform_putTransform]] .`putTransform(array $params = [])` +*NOTE:* This API is BETA and may change in ways that are not backwards compatible **** [source,php] ---- @@ -115,11 +105,9 @@ $params['transform_id'] = (string) The id of the new transform. -[[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacestartTransform_startTransform]] -.`startTransform()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible [[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacestartTransform_startTransform]] .`startTransform(array $params = [])` +*NOTE:* This API is BETA and may change in ways that are not backwards compatible **** [source,php] ---- @@ -132,11 +120,9 @@ $params['timeout'] = (time) Controls the time to wait for the transform to -[[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacestopTransform_stopTransform]] -.`stopTransform()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible [[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespacestopTransform_stopTransform]] .`stopTransform(array $params = [])` +*NOTE:* This API is BETA and may change in ways that are not backwards compatible **** [source,php] ---- @@ -151,11 +137,9 @@ $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expre -[[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespaceupdateTransform_updateTransform]] -.`updateTransform()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible [[Elasticsearch_Namespaces_DataFrameTransformDeprecatedNamespaceupdateTransform_updateTransform]] .`updateTransform(array $params = [])` +*NOTE:* This API is BETA and may change in ways that are not backwards compatible **** [source,php] ---- diff --git a/docs/build/Elasticsearch/Namespaces/EnrichNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/EnrichNamespace.asciidoc index 39536082d..3af256826 100644 --- a/docs/build/Elasticsearch/Namespaces/EnrichNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/EnrichNamespace.asciidoc @@ -26,8 +26,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_EnrichNamespacedeletePolicy_deletePolicy]] -.`deletePolicy()` [[Elasticsearch_Namespaces_EnrichNamespacedeletePolicy_deletePolicy]] .`deletePolicy(array $params = [])` **** @@ -41,8 +39,6 @@ $params['name'] = (string) The name of the enrich policy -[[Elasticsearch_Namespaces_EnrichNamespaceexecutePolicy_executePolicy]] -.`executePolicy()` [[Elasticsearch_Namespaces_EnrichNamespaceexecutePolicy_executePolicy]] .`executePolicy(array $params = [])` **** @@ -57,8 +53,6 @@ $params['wait_for_completion'] = (boolean) Should the request should block until -[[Elasticsearch_Namespaces_EnrichNamespacegetPolicy_getPolicy]] -.`getPolicy()` [[Elasticsearch_Namespaces_EnrichNamespacegetPolicy_getPolicy]] .`getPolicy(array $params = [])` **** @@ -72,8 +66,6 @@ $params['name'] = (list) A comma-separated list of enrich policy names -[[Elasticsearch_Namespaces_EnrichNamespaceputPolicy_putPolicy]] -.`putPolicy()` [[Elasticsearch_Namespaces_EnrichNamespaceputPolicy_putPolicy]] .`putPolicy(array $params = [])` **** @@ -88,8 +80,6 @@ $params['body'] = (array) The enrich policy to register (Required) -[[Elasticsearch_Namespaces_EnrichNamespacestats_stats]] -.`stats()` [[Elasticsearch_Namespaces_EnrichNamespacestats_stats]] .`stats(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/EqlNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/EqlNamespace.asciidoc index ca5b5460e..9db0d2926 100644 --- a/docs/build/Elasticsearch/Namespaces/EqlNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/EqlNamespace.asciidoc @@ -25,8 +25,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_EqlNamespacedelete_delete]] -.`delete()` [[Elasticsearch_Namespaces_EqlNamespacedelete_delete]] .`delete(array $params = [])` **** @@ -40,8 +38,6 @@ $params['id'] = (string) The async search ID -[[Elasticsearch_Namespaces_EqlNamespaceget_get]] -.`get()` [[Elasticsearch_Namespaces_EqlNamespaceget_get]] .`get(array $params = [])` **** @@ -57,8 +53,6 @@ $params['keep_alive'] = (time) Update the time interval in whic -[[Elasticsearch_Namespaces_EqlNamespacegetStatus_getStatus]] -.`getStatus()` [[Elasticsearch_Namespaces_EqlNamespacegetStatus_getStatus]] .`getStatus(array $params = [])` **** @@ -72,8 +66,6 @@ $params['id'] = (string) The async search ID -[[Elasticsearch_Namespaces_EqlNamespacesearch_search]] -.`search()` [[Elasticsearch_Namespaces_EqlNamespacesearch_search]] .`search(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/FeaturesNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/FeaturesNamespace.asciidoc index 553fa9f01..b71fc6ee2 100644 --- a/docs/build/Elasticsearch/Namespaces/FeaturesNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/FeaturesNamespace.asciidoc @@ -22,8 +22,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_FeaturesNamespacegetFeatures_getFeatures]] -.`getFeatures()` [[Elasticsearch_Namespaces_FeaturesNamespacegetFeatures_getFeatures]] .`getFeatures(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/GraphNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/GraphNamespace.asciidoc index 40e41b676..a2163dc27 100644 --- a/docs/build/Elasticsearch/Namespaces/GraphNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/GraphNamespace.asciidoc @@ -22,8 +22,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_GraphNamespaceexplore_explore]] -.`explore()` [[Elasticsearch_Namespaces_GraphNamespaceexplore_explore]] .`explore(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/IlmNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/IlmNamespace.asciidoc index a05e7e166..deb627e56 100644 --- a/docs/build/Elasticsearch/Namespaces/IlmNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/IlmNamespace.asciidoc @@ -31,8 +31,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_IlmNamespacedeleteLifecycle_deleteLifecycle]] -.`deleteLifecycle()` [[Elasticsearch_Namespaces_IlmNamespacedeleteLifecycle_deleteLifecycle]] .`deleteLifecycle(array $params = [])` **** @@ -46,8 +44,6 @@ $params['policy'] = (string) The name of the index lifecycle policy -[[Elasticsearch_Namespaces_IlmNamespaceexplainLifecycle_explainLifecycle]] -.`explainLifecycle()` [[Elasticsearch_Namespaces_IlmNamespaceexplainLifecycle_explainLifecycle]] .`explainLifecycle(array $params = [])` **** @@ -63,8 +59,6 @@ $params['only_errors'] = (boolean) filters the indices included in the response -[[Elasticsearch_Namespaces_IlmNamespacegetLifecycle_getLifecycle]] -.`getLifecycle()` [[Elasticsearch_Namespaces_IlmNamespacegetLifecycle_getLifecycle]] .`getLifecycle(array $params = [])` **** @@ -78,8 +72,6 @@ $params['policy'] = (string) The name of the index lifecycle policy -[[Elasticsearch_Namespaces_IlmNamespacegetStatus_getStatus]] -.`getStatus()` [[Elasticsearch_Namespaces_IlmNamespacegetStatus_getStatus]] .`getStatus(array $params = [])` **** @@ -92,8 +84,6 @@ $params['policy'] = (string) The name of the index lifecycle policy -[[Elasticsearch_Namespaces_IlmNamespacemoveToStep_moveToStep]] -.`moveToStep()` [[Elasticsearch_Namespaces_IlmNamespacemoveToStep_moveToStep]] .`moveToStep(array $params = [])` **** @@ -108,8 +98,6 @@ $params['body'] = (array) The new lifecycle step to move to -[[Elasticsearch_Namespaces_IlmNamespaceputLifecycle_putLifecycle]] -.`putLifecycle()` [[Elasticsearch_Namespaces_IlmNamespaceputLifecycle_putLifecycle]] .`putLifecycle(array $params = [])` **** @@ -124,8 +112,6 @@ $params['body'] = (array) The lifecycle policy definition to register -[[Elasticsearch_Namespaces_IlmNamespaceremovePolicy_removePolicy]] -.`removePolicy()` [[Elasticsearch_Namespaces_IlmNamespaceremovePolicy_removePolicy]] .`removePolicy(array $params = [])` **** @@ -139,8 +125,6 @@ $params['index'] = (string) The name of the index to remove policy on -[[Elasticsearch_Namespaces_IlmNamespaceretry_retry]] -.`retry()` [[Elasticsearch_Namespaces_IlmNamespaceretry_retry]] .`retry(array $params = [])` **** @@ -154,8 +138,6 @@ $params['index'] = (string) The name of the indices (comma-separated) whose fail -[[Elasticsearch_Namespaces_IlmNamespacestart_start]] -.`start()` [[Elasticsearch_Namespaces_IlmNamespacestart_start]] .`start(array $params = [])` **** @@ -168,8 +150,6 @@ $params['index'] = (string) The name of the indices (comma-separated) whose fail -[[Elasticsearch_Namespaces_IlmNamespacestop_stop]] -.`stop()` [[Elasticsearch_Namespaces_IlmNamespacestop_stop]] .`stop(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/IndicesNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/IndicesNamespace.asciidoc index eaf8f9168..74d02f75f 100644 --- a/docs/build/Elasticsearch/Namespaces/IndicesNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/IndicesNamespace.asciidoc @@ -77,8 +77,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_IndicesNamespaceaddBlock_addBlock]] -.`addBlock()` [[Elasticsearch_Namespaces_IndicesNamespaceaddBlock_addBlock]] .`addBlock(array $params = [])` **** @@ -98,8 +96,6 @@ $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to -[[Elasticsearch_Namespaces_IndicesNamespaceanalyze_analyze]] -.`analyze()` [[Elasticsearch_Namespaces_IndicesNamespaceanalyze_analyze]] .`analyze(array $params = [])` **** @@ -114,8 +110,6 @@ $params['body'] = (array) Define analyzer/tokenizer parameters and the text on -[[Elasticsearch_Namespaces_IndicesNamespaceclearCache_clearCache]] -.`clearCache()` [[Elasticsearch_Namespaces_IndicesNamespaceclearCache_clearCache]] .`clearCache(array $params = [])` **** @@ -136,8 +130,6 @@ $params['request'] = (boolean) Clear request cache -[[Elasticsearch_Namespaces_IndicesNamespaceclone_clone]] -.`clone()` [[Elasticsearch_Namespaces_IndicesNamespaceclone_clone]] .`clone(array $params = [])` **** @@ -155,8 +147,6 @@ $params['wait_for_active_shards'] = (string) Set the number of active shards to -[[Elasticsearch_Namespaces_IndicesNamespaceclose_close]] -.`close()` [[Elasticsearch_Namespaces_IndicesNamespaceclose_close]] .`close(array $params = [])` **** @@ -176,8 +166,6 @@ $params['wait_for_active_shards'] = (string) Sets the number of active shards to -[[Elasticsearch_Namespaces_IndicesNamespacecreate_create]] -.`create()` [[Elasticsearch_Namespaces_IndicesNamespacecreate_create]] .`create(array $params = [])` **** @@ -192,8 +180,6 @@ $params['include_type_name'] = (boolean) Whether a type should be expected -[[Elasticsearch_Namespaces_IndicesNamespacecreateDataStream_createDataStream]] -.`createDataStream()` [[Elasticsearch_Namespaces_IndicesNamespacecreateDataStream_createDataStream]] .`createDataStream(array $params = [])` **** @@ -207,8 +193,6 @@ $params['name'] = (string) The name of the data stream -[[Elasticsearch_Namespaces_IndicesNamespacedataStreamsStats_dataStreamsStats]] -.`dataStreamsStats()` [[Elasticsearch_Namespaces_IndicesNamespacedataStreamsStats_dataStreamsStats]] .`dataStreamsStats(array $params = [])` **** @@ -222,8 +206,6 @@ $params['name'] = (list) A comma-separated list of data stream names; use `_all` -[[Elasticsearch_Namespaces_IndicesNamespacedelete_delete]] -.`delete()` [[Elasticsearch_Namespaces_IndicesNamespacedelete_delete]] .`delete(array $params = [])` **** @@ -242,8 +224,6 @@ $params['expand_wildcards'] = (enum) Whether wildcard expressions should get e -[[Elasticsearch_Namespaces_IndicesNamespacedeleteAlias_deleteAlias]] -.`deleteAlias()` [[Elasticsearch_Namespaces_IndicesNamespacedeleteAlias_deleteAlias]] .`deleteAlias(array $params = [])` **** @@ -260,8 +240,6 @@ $params['master_timeout'] = (time) Specify timeout for connection to master -[[Elasticsearch_Namespaces_IndicesNamespacedeleteDataStream_deleteDataStream]] -.`deleteDataStream()` [[Elasticsearch_Namespaces_IndicesNamespacedeleteDataStream_deleteDataStream]] .`deleteDataStream(array $params = [])` **** @@ -276,8 +254,6 @@ $params['expand_wildcards'] = (enum) Whether wildcard expressions should get exp -[[Elasticsearch_Namespaces_IndicesNamespacedeleteIndexTemplate_deleteIndexTemplate]] -.`deleteIndexTemplate()` [[Elasticsearch_Namespaces_IndicesNamespacedeleteIndexTemplate_deleteIndexTemplate]] .`deleteIndexTemplate(array $params = [])` **** @@ -293,8 +269,6 @@ $params['master_timeout'] = (time) Specify timeout for connection to master -[[Elasticsearch_Namespaces_IndicesNamespacedeleteTemplate_deleteTemplate]] -.`deleteTemplate()` [[Elasticsearch_Namespaces_IndicesNamespacedeleteTemplate_deleteTemplate]] .`deleteTemplate(array $params = [])` **** @@ -310,8 +284,6 @@ $params['master_timeout'] = (time) Specify timeout for connection to master -[[Elasticsearch_Namespaces_IndicesNamespaceexists_exists]] -.`exists()` [[Elasticsearch_Namespaces_IndicesNamespaceexists_exists]] .`exists(array $params = [])` **** @@ -331,8 +303,6 @@ $params['include_defaults'] = (boolean) Whether to return all default setting -[[Elasticsearch_Namespaces_IndicesNamespaceexistsAlias_existsAlias]] -.`existsAlias()` [[Elasticsearch_Namespaces_IndicesNamespaceexistsAlias_existsAlias]] .`existsAlias(array $params = [])` **** @@ -351,8 +321,6 @@ $params['local'] = (boolean) Return local information, do not retri -[[Elasticsearch_Namespaces_IndicesNamespaceexistsIndexTemplate_existsIndexTemplate]] -.`existsIndexTemplate()` [[Elasticsearch_Namespaces_IndicesNamespaceexistsIndexTemplate_existsIndexTemplate]] .`existsIndexTemplate(array $params = [])` **** @@ -369,8 +337,6 @@ $params['local'] = (boolean) Return local information, do not retrieve -[[Elasticsearch_Namespaces_IndicesNamespaceexistsTemplate_existsTemplate]] -.`existsTemplate()` [[Elasticsearch_Namespaces_IndicesNamespaceexistsTemplate_existsTemplate]] .`existsTemplate(array $params = [])` **** @@ -387,8 +353,6 @@ $params['local'] = (boolean) Return local information, do not retrieve -[[Elasticsearch_Namespaces_IndicesNamespaceexistsType_existsType]] -.`existsType()` [[Elasticsearch_Namespaces_IndicesNamespaceexistsType_existsType]] .`existsType(array $params = [])` **** @@ -407,8 +371,6 @@ $params['local'] = (boolean) Return local information, do not retri -[[Elasticsearch_Namespaces_IndicesNamespaceflush_flush]] -.`flush()` [[Elasticsearch_Namespaces_IndicesNamespaceflush_flush]] .`flush(array $params = [])` **** @@ -424,8 +386,6 @@ $params['wait_if_ongoing'] = (boolean) If set to true the flush operation wil -[[Elasticsearch_Namespaces_IndicesNamespaceflushSynced_flushSynced]] -.`flushSynced()` [[Elasticsearch_Namespaces_IndicesNamespaceflushSynced_flushSynced]] .`flushSynced(array $params = [])` **** @@ -442,8 +402,6 @@ $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to -[[Elasticsearch_Namespaces_IndicesNamespaceforcemerge_forcemerge]] -.`forcemerge()` [[Elasticsearch_Namespaces_IndicesNamespaceforcemerge_forcemerge]] .`forcemerge(array $params = [])` **** @@ -463,8 +421,6 @@ $params['only_expunge_deletes'] = (boolean) Specify whether the operation should -[[Elasticsearch_Namespaces_IndicesNamespacefreeze_freeze]] -.`freeze()` [[Elasticsearch_Namespaces_IndicesNamespacefreeze_freeze]] .`freeze(array $params = [])` **** @@ -484,8 +440,6 @@ $params['wait_for_active_shards'] = (string) Sets the number of active shards to -[[Elasticsearch_Namespaces_IndicesNamespaceget_get]] -.`get()` [[Elasticsearch_Namespaces_IndicesNamespaceget_get]] .`get(array $params = [])` **** @@ -507,8 +461,6 @@ $params['master_timeout'] = (time) Specify timeout for connection to master -[[Elasticsearch_Namespaces_IndicesNamespacegetAlias_getAlias]] -.`getAlias()` [[Elasticsearch_Namespaces_IndicesNamespacegetAlias_getAlias]] .`getAlias(array $params = [])` **** @@ -527,8 +479,6 @@ $params['local'] = (boolean) Return local information, do not retri -[[Elasticsearch_Namespaces_IndicesNamespacegetDataStream_getDataStream]] -.`getDataStream()` [[Elasticsearch_Namespaces_IndicesNamespacegetDataStream_getDataStream]] .`getDataStream(array $params = [])` **** @@ -543,8 +493,6 @@ $params['expand_wildcards'] = (enum) Whether wildcard expressions should get exp -[[Elasticsearch_Namespaces_IndicesNamespacegetFieldMapping_getFieldMapping]] -.`getFieldMapping()` [[Elasticsearch_Namespaces_IndicesNamespacegetFieldMapping_getFieldMapping]] .`getFieldMapping(array $params = [])` **** @@ -561,8 +509,6 @@ $params['include_type_name'] = (boolean) Whether a type should be returned in t -[[Elasticsearch_Namespaces_IndicesNamespacegetIndexTemplate_getIndexTemplate]] -.`getIndexTemplate()` [[Elasticsearch_Namespaces_IndicesNamespacegetIndexTemplate_getIndexTemplate]] .`getIndexTemplate(array $params = [])` **** @@ -579,8 +525,6 @@ $params['local'] = (boolean) Return local information, do not retrieve -[[Elasticsearch_Namespaces_IndicesNamespacegetMapping_getMapping]] -.`getMapping()` [[Elasticsearch_Namespaces_IndicesNamespacegetMapping_getMapping]] .`getMapping(array $params = [])` **** @@ -601,8 +545,6 @@ $params['local'] = (boolean) Return local information, do not retri -[[Elasticsearch_Namespaces_IndicesNamespacegetSettings_getSettings]] -.`getSettings()` [[Elasticsearch_Namespaces_IndicesNamespacegetSettings_getSettings]] .`getSettings(array $params = [])` **** @@ -624,8 +566,6 @@ $params['include_defaults'] = (boolean) Whether to return all default setting -[[Elasticsearch_Namespaces_IndicesNamespacegetTemplate_getTemplate]] -.`getTemplate()` [[Elasticsearch_Namespaces_IndicesNamespacegetTemplate_getTemplate]] .`getTemplate(array $params = [])` **** @@ -640,8 +580,6 @@ $params['include_type_name'] = (boolean) Whether a type should be returned in th -[[Elasticsearch_Namespaces_IndicesNamespacegetUpgrade_getUpgrade]] -.`getUpgrade()` [[Elasticsearch_Namespaces_IndicesNamespacegetUpgrade_getUpgrade]] .`getUpgrade(array $params = [])` **** @@ -658,8 +596,6 @@ $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to -[[Elasticsearch_Namespaces_IndicesNamespacemigrateToDataStream_migrateToDataStream]] -.`migrateToDataStream()` [[Elasticsearch_Namespaces_IndicesNamespacemigrateToDataStream_migrateToDataStream]] .`migrateToDataStream(array $params = [])` **** @@ -673,8 +609,6 @@ $params['name'] = (string) The name of the alias to migrate -[[Elasticsearch_Namespaces_IndicesNamespaceopen_open]] -.`open()` [[Elasticsearch_Namespaces_IndicesNamespaceopen_open]] .`open(array $params = [])` **** @@ -694,8 +628,6 @@ $params['wait_for_active_shards'] = (string) Sets the number of active shards to -[[Elasticsearch_Namespaces_IndicesNamespacepromoteDataStream_promoteDataStream]] -.`promoteDataStream()` [[Elasticsearch_Namespaces_IndicesNamespacepromoteDataStream_promoteDataStream]] .`promoteDataStream(array $params = [])` **** @@ -709,8 +641,6 @@ $params['name'] = (string) The name of the data stream -[[Elasticsearch_Namespaces_IndicesNamespaceputAlias_putAlias]] -.`putAlias()` [[Elasticsearch_Namespaces_IndicesNamespaceputAlias_putAlias]] .`putAlias(array $params = [])` **** @@ -728,8 +658,6 @@ $params['body'] = (array) The settings for the alias, such as `routing -[[Elasticsearch_Namespaces_IndicesNamespaceputIndexTemplate_putIndexTemplate]] -.`putIndexTemplate()` [[Elasticsearch_Namespaces_IndicesNamespaceputIndexTemplate_putIndexTemplate]] .`putIndexTemplate(array $params = [])` **** @@ -747,8 +675,6 @@ $params['body'] = (array) The template definition (Required) -[[Elasticsearch_Namespaces_IndicesNamespaceputMapping_putMapping]] -.`putMapping()` [[Elasticsearch_Namespaces_IndicesNamespaceputMapping_putMapping]] .`putMapping(array $params = [])` **** @@ -762,8 +688,6 @@ $params['index'] = (list) A comma-separated list of index names the -[[Elasticsearch_Namespaces_IndicesNamespaceputSettings_putSettings]] -.`putSettings()` [[Elasticsearch_Namespaces_IndicesNamespaceputSettings_putSettings]] .`putSettings(array $params = [])` **** @@ -785,8 +709,6 @@ $params['body'] = (array) The index settings to be updated (Requir -[[Elasticsearch_Namespaces_IndicesNamespaceputTemplate_putTemplate]] -.`putTemplate()` [[Elasticsearch_Namespaces_IndicesNamespaceputTemplate_putTemplate]] .`putTemplate(array $params = [])` **** @@ -801,8 +723,6 @@ $params['include_type_name'] = (boolean) Whether a type should be returned in th -[[Elasticsearch_Namespaces_IndicesNamespacerecovery_recovery]] -.`recovery()` [[Elasticsearch_Namespaces_IndicesNamespacerecovery_recovery]] .`recovery(array $params = [])` **** @@ -818,8 +738,6 @@ $params['active_only'] = (boolean) Display only those recoveries that are curren -[[Elasticsearch_Namespaces_IndicesNamespacerefresh_refresh]] -.`refresh()` [[Elasticsearch_Namespaces_IndicesNamespacerefresh_refresh]] .`refresh(array $params = [])` **** @@ -836,8 +754,6 @@ $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to -[[Elasticsearch_Namespaces_IndicesNamespacereloadSearchAnalyzers_reloadSearchAnalyzers]] -.`reloadSearchAnalyzers()` [[Elasticsearch_Namespaces_IndicesNamespacereloadSearchAnalyzers_reloadSearchAnalyzers]] .`reloadSearchAnalyzers(array $params = [])` **** @@ -854,11 +770,9 @@ $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to -[[Elasticsearch_Namespaces_IndicesNamespaceresolveIndex_resolveIndex]] -.`resolveIndex()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_Namespaces_IndicesNamespaceresolveIndex_resolveIndex]] .`resolveIndex(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- @@ -871,8 +785,6 @@ $params['expand_wildcards'] = (enum) Whether wildcard expressions should get exp -[[Elasticsearch_Namespaces_IndicesNamespacerollover_rollover]] -.`rollover()` [[Elasticsearch_Namespaces_IndicesNamespacerollover_rollover]] .`rollover(array $params = [])` **** @@ -888,8 +800,6 @@ $params['include_type_name'] = (boolean) Whether a type should be included -[[Elasticsearch_Namespaces_IndicesNamespacesegments_segments]] -.`segments()` [[Elasticsearch_Namespaces_IndicesNamespacesegments_segments]] .`segments(array $params = [])` **** @@ -907,8 +817,6 @@ $params['verbose'] = (boolean) Includes detailed memory usage by Luce -[[Elasticsearch_Namespaces_IndicesNamespaceshardStores_shardStores]] -.`shardStores()` [[Elasticsearch_Namespaces_IndicesNamespaceshardStores_shardStores]] .`shardStores(array $params = [])` **** @@ -926,8 +834,6 @@ $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to -[[Elasticsearch_Namespaces_IndicesNamespaceshrink_shrink]] -.`shrink()` [[Elasticsearch_Namespaces_IndicesNamespaceshrink_shrink]] .`shrink(array $params = [])` **** @@ -946,8 +852,6 @@ $params['wait_for_active_shards'] = (string) Set the number of active shards to -[[Elasticsearch_Namespaces_IndicesNamespacesimulateIndexTemplate_simulateIndexTemplate]] -.`simulateIndexTemplate()` [[Elasticsearch_Namespaces_IndicesNamespacesimulateIndexTemplate_simulateIndexTemplate]] .`simulateIndexTemplate(array $params = [])` **** @@ -965,8 +869,6 @@ $params['body'] = (array) New index template definition, which will be -[[Elasticsearch_Namespaces_IndicesNamespacesimulateTemplate_simulateTemplate]] -.`simulateTemplate()` [[Elasticsearch_Namespaces_IndicesNamespacesimulateTemplate_simulateTemplate]] .`simulateTemplate(array $params = [])` **** @@ -984,8 +886,6 @@ $params['body'] = (array) New index template definition to be simulate -[[Elasticsearch_Namespaces_IndicesNamespacesplit_split]] -.`split()` [[Elasticsearch_Namespaces_IndicesNamespacesplit_split]] .`split(array $params = [])` **** @@ -1004,8 +904,6 @@ $params['wait_for_active_shards'] = (string) Set the number of active shards to -[[Elasticsearch_Namespaces_IndicesNamespacestats_stats]] -.`stats()` [[Elasticsearch_Namespaces_IndicesNamespacestats_stats]] .`stats(array $params = [])` **** @@ -1019,8 +917,6 @@ $params['metric'] = (list) Limit the information returned th -[[Elasticsearch_Namespaces_IndicesNamespaceunfreeze_unfreeze]] -.`unfreeze()` [[Elasticsearch_Namespaces_IndicesNamespaceunfreeze_unfreeze]] .`unfreeze(array $params = [])` **** @@ -1040,8 +936,6 @@ $params['wait_for_active_shards'] = (string) Sets the number of active shards to -[[Elasticsearch_Namespaces_IndicesNamespaceupdateAliases_updateAliases]] -.`updateAliases()` [[Elasticsearch_Namespaces_IndicesNamespaceupdateAliases_updateAliases]] .`updateAliases(array $params = [])` **** @@ -1057,8 +951,6 @@ $params['body'] = (array) The definition of `actions` to perform (Requ -[[Elasticsearch_Namespaces_IndicesNamespaceupgrade_upgrade]] -.`upgrade()` [[Elasticsearch_Namespaces_IndicesNamespaceupgrade_upgrade]] .`upgrade(array $params = [])` **** @@ -1077,8 +969,6 @@ $params['only_ancient_segments'] = (boolean) If true, only ancient (an older Luc -[[Elasticsearch_Namespaces_IndicesNamespacevalidateQuery_validateQuery]] -.`validateQuery()` [[Elasticsearch_Namespaces_IndicesNamespacevalidateQuery_validateQuery]] .`validateQuery(array $params = [])` **** @@ -1104,8 +994,6 @@ $params['rewrite'] = (boolean) Provide a more detailed explanation sh -[[Elasticsearch_Namespaces_IndicesNamespacegetAliases_getAliases]] -.`getAliases()` [[Elasticsearch_Namespaces_IndicesNamespacegetAliases_getAliases]] .`getAliases(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/IngestNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/IngestNamespace.asciidoc index a0fb09011..ef6b17e47 100644 --- a/docs/build/Elasticsearch/Namespaces/IngestNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/IngestNamespace.asciidoc @@ -26,8 +26,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_IngestNamespacedeletePipeline_deletePipeline]] -.`deletePipeline()` [[Elasticsearch_Namespaces_IngestNamespacedeletePipeline_deletePipeline]] .`deletePipeline(array $params = [])` **** @@ -43,8 +41,6 @@ $params['timeout'] = (time) Explicit operation timeout -[[Elasticsearch_Namespaces_IngestNamespacegetPipeline_getPipeline]] -.`getPipeline()` [[Elasticsearch_Namespaces_IngestNamespacegetPipeline_getPipeline]] .`getPipeline(array $params = [])` **** @@ -59,8 +55,6 @@ $params['master_timeout'] = (time) Explicit operation timeout for connection to -[[Elasticsearch_Namespaces_IngestNamespaceprocessorGrok_processorGrok]] -.`processorGrok()` [[Elasticsearch_Namespaces_IngestNamespaceprocessorGrok_processorGrok]] .`processorGrok(array $params = [])` **** @@ -73,8 +67,6 @@ $params['master_timeout'] = (time) Explicit operation timeout for connection to -[[Elasticsearch_Namespaces_IngestNamespaceputPipeline_putPipeline]] -.`putPipeline()` [[Elasticsearch_Namespaces_IngestNamespaceputPipeline_putPipeline]] .`putPipeline(array $params = [])` **** @@ -91,8 +83,6 @@ $params['body'] = (array) The ingest definition (Required) -[[Elasticsearch_Namespaces_IngestNamespacesimulate_simulate]] -.`simulate()` [[Elasticsearch_Namespaces_IngestNamespacesimulate_simulate]] .`simulate(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/LicenseNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/LicenseNamespace.asciidoc index 71617cad0..691ae2a42 100644 --- a/docs/build/Elasticsearch/Namespaces/LicenseNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/LicenseNamespace.asciidoc @@ -28,8 +28,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_LicenseNamespacedelete_delete]] -.`delete()` [[Elasticsearch_Namespaces_LicenseNamespacedelete_delete]] .`delete(array $params = [])` **** @@ -42,8 +40,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_LicenseNamespaceget_get]] -.`get()` [[Elasticsearch_Namespaces_LicenseNamespaceget_get]] .`get(array $params = [])` **** @@ -58,8 +54,6 @@ $params['accept_enterprise'] = (boolean) If the active license is an enterprise -[[Elasticsearch_Namespaces_LicenseNamespacegetBasicStatus_getBasicStatus]] -.`getBasicStatus()` [[Elasticsearch_Namespaces_LicenseNamespacegetBasicStatus_getBasicStatus]] .`getBasicStatus(array $params = [])` **** @@ -72,8 +66,6 @@ $params['accept_enterprise'] = (boolean) If the active license is an enterprise -[[Elasticsearch_Namespaces_LicenseNamespacegetTrialStatus_getTrialStatus]] -.`getTrialStatus()` [[Elasticsearch_Namespaces_LicenseNamespacegetTrialStatus_getTrialStatus]] .`getTrialStatus(array $params = [])` **** @@ -86,8 +78,6 @@ $params['accept_enterprise'] = (boolean) If the active license is an enterprise -[[Elasticsearch_Namespaces_LicenseNamespacepost_post]] -.`post()` [[Elasticsearch_Namespaces_LicenseNamespacepost_post]] .`post(array $params = [])` **** @@ -102,8 +92,6 @@ $params['body'] = (array) licenses to be installed -[[Elasticsearch_Namespaces_LicenseNamespacepostStartBasic_postStartBasic]] -.`postStartBasic()` [[Elasticsearch_Namespaces_LicenseNamespacepostStartBasic_postStartBasic]] .`postStartBasic(array $params = [])` **** @@ -117,8 +105,6 @@ $params['acknowledge'] = (boolean) whether the user has acknowledged acknowledge -[[Elasticsearch_Namespaces_LicenseNamespacepostStartTrial_postStartTrial]] -.`postStartTrial()` [[Elasticsearch_Namespaces_LicenseNamespacepostStartTrial_postStartTrial]] .`postStartTrial(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/LogstashNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/LogstashNamespace.asciidoc index a88943a22..09a5fcb05 100644 --- a/docs/build/Elasticsearch/Namespaces/LogstashNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/LogstashNamespace.asciidoc @@ -24,8 +24,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_LogstashNamespacedeletePipeline_deletePipeline]] -.`deletePipeline()` [[Elasticsearch_Namespaces_LogstashNamespacedeletePipeline_deletePipeline]] .`deletePipeline(array $params = [])` **** @@ -39,8 +37,6 @@ $params['id'] = (string) The ID of the Pipeline -[[Elasticsearch_Namespaces_LogstashNamespacegetPipeline_getPipeline]] -.`getPipeline()` [[Elasticsearch_Namespaces_LogstashNamespacegetPipeline_getPipeline]] .`getPipeline(array $params = [])` **** @@ -54,8 +50,6 @@ $params['id'] = (string) A comma-separated list of Pipeline IDs -[[Elasticsearch_Namespaces_LogstashNamespaceputPipeline_putPipeline]] -.`putPipeline()` [[Elasticsearch_Namespaces_LogstashNamespaceputPipeline_putPipeline]] .`putPipeline(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/MigrationNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/MigrationNamespace.asciidoc index f3ba68cbc..9488bb64a 100644 --- a/docs/build/Elasticsearch/Namespaces/MigrationNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/MigrationNamespace.asciidoc @@ -22,8 +22,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_MigrationNamespacedeprecations_deprecations]] -.`deprecations()` [[Elasticsearch_Namespaces_MigrationNamespacedeprecations_deprecations]] .`deprecations(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/MlNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/MlNamespace.asciidoc index 96b989e52..9b86f7a74 100644 --- a/docs/build/Elasticsearch/Namespaces/MlNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/MlNamespace.asciidoc @@ -82,8 +82,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_MlNamespacecloseJob_closeJob]] -.`closeJob()` [[Elasticsearch_Namespaces_MlNamespacecloseJob_closeJob]] .`closeJob(array $params = [])` **** @@ -102,8 +100,6 @@ $params['body'] = (array) The URL params optionally sent in the body -[[Elasticsearch_Namespaces_MlNamespacedeleteCalendar_deleteCalendar]] -.`deleteCalendar()` [[Elasticsearch_Namespaces_MlNamespacedeleteCalendar_deleteCalendar]] .`deleteCalendar(array $params = [])` **** @@ -117,8 +113,6 @@ $params['calendar_id'] = (string) The ID of the calendar to delete -[[Elasticsearch_Namespaces_MlNamespacedeleteCalendarEvent_deleteCalendarEvent]] -.`deleteCalendarEvent()` [[Elasticsearch_Namespaces_MlNamespacedeleteCalendarEvent_deleteCalendarEvent]] .`deleteCalendarEvent(array $params = [])` **** @@ -133,8 +127,6 @@ $params['event_id'] = (string) The ID of the event to remove from the calenda -[[Elasticsearch_Namespaces_MlNamespacedeleteCalendarJob_deleteCalendarJob]] -.`deleteCalendarJob()` [[Elasticsearch_Namespaces_MlNamespacedeleteCalendarJob_deleteCalendarJob]] .`deleteCalendarJob(array $params = [])` **** @@ -149,11 +141,9 @@ $params['job_id'] = (string) The ID of the job to remove from the calendar -[[Elasticsearch_Namespaces_MlNamespacedeleteDataFrameAnalytics_deleteDataFrameAnalytics]] -.`deleteDataFrameAnalytics()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible [[Elasticsearch_Namespaces_MlNamespacedeleteDataFrameAnalytics_deleteDataFrameAnalytics]] .`deleteDataFrameAnalytics(array $params = [])` +*NOTE:* This API is BETA and may change in ways that are not backwards compatible **** [source,php] ---- @@ -167,8 +157,6 @@ $params['timeout'] = (time) Controls the time to wait until a job is deleted. De -[[Elasticsearch_Namespaces_MlNamespacedeleteDatafeed_deleteDatafeed]] -.`deleteDatafeed()` [[Elasticsearch_Namespaces_MlNamespacedeleteDatafeed_deleteDatafeed]] .`deleteDatafeed(array $params = [])` **** @@ -183,8 +171,6 @@ $params['force'] = (boolean) True if the datafeed should be forcefully del -[[Elasticsearch_Namespaces_MlNamespacedeleteExpiredData_deleteExpiredData]] -.`deleteExpiredData()` [[Elasticsearch_Namespaces_MlNamespacedeleteExpiredData_deleteExpiredData]] .`deleteExpiredData(array $params = [])` **** @@ -199,8 +185,6 @@ $params['requests_per_second'] = (number) The desired requests per second for th -[[Elasticsearch_Namespaces_MlNamespacedeleteFilter_deleteFilter]] -.`deleteFilter()` [[Elasticsearch_Namespaces_MlNamespacedeleteFilter_deleteFilter]] .`deleteFilter(array $params = [])` **** @@ -214,8 +198,6 @@ $params['filter_id'] = (string) The ID of the filter to delete -[[Elasticsearch_Namespaces_MlNamespacedeleteForecast_deleteForecast]] -.`deleteForecast()` [[Elasticsearch_Namespaces_MlNamespacedeleteForecast_deleteForecast]] .`deleteForecast(array $params = [])` **** @@ -232,8 +214,6 @@ $params['timeout'] = (time) Controls the time to wait until the forec -[[Elasticsearch_Namespaces_MlNamespacedeleteJob_deleteJob]] -.`deleteJob()` [[Elasticsearch_Namespaces_MlNamespacedeleteJob_deleteJob]] .`deleteJob(array $params = [])` **** @@ -249,8 +229,6 @@ $params['wait_for_completion'] = (boolean) Should this request wait until the op -[[Elasticsearch_Namespaces_MlNamespacedeleteModelSnapshot_deleteModelSnapshot]] -.`deleteModelSnapshot()` [[Elasticsearch_Namespaces_MlNamespacedeleteModelSnapshot_deleteModelSnapshot]] .`deleteModelSnapshot(array $params = [])` **** @@ -265,11 +243,9 @@ $params['snapshot_id'] = (string) The ID of the snapshot to delete -[[Elasticsearch_Namespaces_MlNamespacedeleteTrainedModel_deleteTrainedModel]] -.`deleteTrainedModel()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible [[Elasticsearch_Namespaces_MlNamespacedeleteTrainedModel_deleteTrainedModel]] .`deleteTrainedModel(array $params = [])` +*NOTE:* This API is BETA and may change in ways that are not backwards compatible **** [source,php] ---- @@ -281,8 +257,6 @@ $params['model_id'] = (string) The ID of the trained model to delete -[[Elasticsearch_Namespaces_MlNamespaceestimateModelMemory_estimateModelMemory]] -.`estimateModelMemory()` [[Elasticsearch_Namespaces_MlNamespaceestimateModelMemory_estimateModelMemory]] .`estimateModelMemory(array $params = [])` **** @@ -296,8 +270,6 @@ $params['body'] = (array) The analysis config, plus cardinality estimates for fi -[[Elasticsearch_Namespaces_MlNamespaceevaluateDataFrame_evaluateDataFrame]] -.`evaluateDataFrame()` [[Elasticsearch_Namespaces_MlNamespaceevaluateDataFrame_evaluateDataFrame]] .`evaluateDataFrame(array $params = [])` **** @@ -310,11 +282,9 @@ $params['body'] = (array) The analysis config, plus cardinality estimates for fi -[[Elasticsearch_Namespaces_MlNamespaceexplainDataFrameAnalytics_explainDataFrameAnalytics]] -.`explainDataFrameAnalytics()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible [[Elasticsearch_Namespaces_MlNamespaceexplainDataFrameAnalytics_explainDataFrameAnalytics]] .`explainDataFrameAnalytics(array $params = [])` +*NOTE:* This API is BETA and may change in ways that are not backwards compatible **** [source,php] ---- @@ -327,11 +297,9 @@ $params['body'] = (array) The data frame analytics config to explain -[[Elasticsearch_Namespaces_MlNamespacefindFileStructure_findFileStructure]] -.`findFileStructure()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_Namespaces_MlNamespacefindFileStructure_findFileStructure]] .`findFileStructure(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- @@ -357,8 +325,6 @@ $params['body'] = (array) The contents of the file to be analyz -[[Elasticsearch_Namespaces_MlNamespaceflushJob_flushJob]] -.`flushJob()` [[Elasticsearch_Namespaces_MlNamespaceflushJob_flushJob]] .`flushJob(array $params = [])` **** @@ -378,8 +344,6 @@ $params['body'] = (array) Flush parameters -[[Elasticsearch_Namespaces_MlNamespaceforecast_forecast]] -.`forecast()` [[Elasticsearch_Namespaces_MlNamespaceforecast_forecast]] .`forecast(array $params = [])` **** @@ -395,8 +359,6 @@ $params['expires_in'] = (time) The time interval after which the forecast -[[Elasticsearch_Namespaces_MlNamespacegetBuckets_getBuckets]] -.`getBuckets()` [[Elasticsearch_Namespaces_MlNamespacegetBuckets_getBuckets]] .`getBuckets(array $params = [])` **** @@ -421,8 +383,6 @@ $params['body'] = (array) Bucket selection details if not provided in -[[Elasticsearch_Namespaces_MlNamespacegetCalendarEvents_getCalendarEvents]] -.`getCalendarEvents()` [[Elasticsearch_Namespaces_MlNamespacegetCalendarEvents_getCalendarEvents]] .`getCalendarEvents(array $params = [])` **** @@ -441,8 +401,6 @@ $params['size'] = (int) Specifies a max number of events to get -[[Elasticsearch_Namespaces_MlNamespacegetCalendars_getCalendars]] -.`getCalendars()` [[Elasticsearch_Namespaces_MlNamespacegetCalendars_getCalendars]] .`getCalendars(array $params = [])` **** @@ -459,8 +417,6 @@ $params['body'] = (array) The from and size parameters optionally sent in -[[Elasticsearch_Namespaces_MlNamespacegetCategories_getCategories]] -.`getCategories()` [[Elasticsearch_Namespaces_MlNamespacegetCategories_getCategories]] .`getCategories(array $params = [])` **** @@ -478,11 +434,9 @@ $params['partition_field_value'] = (string) Specifies the partition to retrieve -[[Elasticsearch_Namespaces_MlNamespacegetDataFrameAnalytics_getDataFrameAnalytics]] -.`getDataFrameAnalytics()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible [[Elasticsearch_Namespaces_MlNamespacegetDataFrameAnalytics_getDataFrameAnalytics]] .`getDataFrameAnalytics(array $params = [])` +*NOTE:* This API is BETA and may change in ways that are not backwards compatible **** [source,php] ---- @@ -498,11 +452,9 @@ $params['exclude_generated'] = (boolean) Omits fields that are illegal to set on -[[Elasticsearch_Namespaces_MlNamespacegetDataFrameAnalyticsStats_getDataFrameAnalyticsStats]] -.`getDataFrameAnalyticsStats()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible [[Elasticsearch_Namespaces_MlNamespacegetDataFrameAnalyticsStats_getDataFrameAnalyticsStats]] .`getDataFrameAnalyticsStats(array $params = [])` +*NOTE:* This API is BETA and may change in ways that are not backwards compatible **** [source,php] ---- @@ -518,8 +470,6 @@ $params['verbose'] = (boolean) whether the stats response should be verbo -[[Elasticsearch_Namespaces_MlNamespacegetDatafeedStats_getDatafeedStats]] -.`getDatafeedStats()` [[Elasticsearch_Namespaces_MlNamespacegetDatafeedStats_getDatafeedStats]] .`getDatafeedStats(array $params = [])` **** @@ -535,8 +485,6 @@ $params['allow_no_datafeeds'] = (boolean) Whether to ignore if a wildcard expres -[[Elasticsearch_Namespaces_MlNamespacegetDatafeeds_getDatafeeds]] -.`getDatafeeds()` [[Elasticsearch_Namespaces_MlNamespacegetDatafeeds_getDatafeeds]] .`getDatafeeds(array $params = [])` **** @@ -553,8 +501,6 @@ $params['exclude_generated'] = (boolean) Omits fields that are illegal to set o -[[Elasticsearch_Namespaces_MlNamespacegetFilters_getFilters]] -.`getFilters()` [[Elasticsearch_Namespaces_MlNamespacegetFilters_getFilters]] .`getFilters(array $params = [])` **** @@ -570,8 +516,6 @@ $params['size'] = (int) specifies a max number of filters to get -[[Elasticsearch_Namespaces_MlNamespacegetInfluencers_getInfluencers]] -.`getInfluencers()` [[Elasticsearch_Namespaces_MlNamespacegetInfluencers_getInfluencers]] .`getInfluencers(array $params = [])` **** @@ -594,8 +538,6 @@ $params['body'] = (array) Influencer selection criteria -[[Elasticsearch_Namespaces_MlNamespacegetJobStats_getJobStats]] -.`getJobStats()` [[Elasticsearch_Namespaces_MlNamespacegetJobStats_getJobStats]] .`getJobStats(array $params = [])` **** @@ -611,8 +553,6 @@ $params['allow_no_jobs'] = (boolean) Whether to ignore if a wildcard expression -[[Elasticsearch_Namespaces_MlNamespacegetJobs_getJobs]] -.`getJobs()` [[Elasticsearch_Namespaces_MlNamespacegetJobs_getJobs]] .`getJobs(array $params = [])` **** @@ -629,8 +569,6 @@ $params['exclude_generated'] = (boolean) Omits fields that are illegal to set on -[[Elasticsearch_Namespaces_MlNamespacegetModelSnapshots_getModelSnapshots]] -.`getModelSnapshots()` [[Elasticsearch_Namespaces_MlNamespacegetModelSnapshots_getModelSnapshots]] .`getModelSnapshots(array $params = [])` **** @@ -647,8 +585,6 @@ $params['size'] = (int) The default number of documents returned in queri -[[Elasticsearch_Namespaces_MlNamespacegetOverallBuckets_getOverallBuckets]] -.`getOverallBuckets()` [[Elasticsearch_Namespaces_MlNamespacegetOverallBuckets_getOverallBuckets]] .`getOverallBuckets(array $params = [])` **** @@ -671,8 +607,6 @@ $params['body'] = (array) Overall bucket selection details if not pro -[[Elasticsearch_Namespaces_MlNamespacegetRecords_getRecords]] -.`getRecords()` [[Elasticsearch_Namespaces_MlNamespacegetRecords_getRecords]] .`getRecords(array $params = [])` **** @@ -695,11 +629,9 @@ $params['body'] = (array) Record selection criteria -[[Elasticsearch_Namespaces_MlNamespacegetTrainedModels_getTrainedModels]] -.`getTrainedModels()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible [[Elasticsearch_Namespaces_MlNamespacegetTrainedModels_getTrainedModels]] .`getTrainedModels(array $params = [])` +*NOTE:* This API is BETA and may change in ways that are not backwards compatible **** [source,php] ---- @@ -713,11 +645,9 @@ $params['include'] = (string) A comma-separate list of fields t -[[Elasticsearch_Namespaces_MlNamespacegetTrainedModelsStats_getTrainedModelsStats]] -.`getTrainedModelsStats()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible [[Elasticsearch_Namespaces_MlNamespacegetTrainedModelsStats_getTrainedModelsStats]] .`getTrainedModelsStats(array $params = [])` +*NOTE:* This API is BETA and may change in ways that are not backwards compatible **** [source,php] ---- @@ -732,8 +662,6 @@ $params['size'] = (int) specifies a max number of trained models to ge -[[Elasticsearch_Namespaces_MlNamespaceinfo_info]] -.`info()` [[Elasticsearch_Namespaces_MlNamespaceinfo_info]] .`info(array $params = [])` **** @@ -746,8 +674,6 @@ $params['size'] = (int) specifies a max number of trained models to ge -[[Elasticsearch_Namespaces_MlNamespaceopenJob_openJob]] -.`openJob()` [[Elasticsearch_Namespaces_MlNamespaceopenJob_openJob]] .`openJob(array $params = [])` **** @@ -761,8 +687,6 @@ $params['job_id'] = (string) The ID of the job to open -[[Elasticsearch_Namespaces_MlNamespacepostCalendarEvents_postCalendarEvents]] -.`postCalendarEvents()` [[Elasticsearch_Namespaces_MlNamespacepostCalendarEvents_postCalendarEvents]] .`postCalendarEvents(array $params = [])` **** @@ -777,8 +701,6 @@ $params['body'] = (array) A list of events (Required) -[[Elasticsearch_Namespaces_MlNamespacepostData_postData]] -.`postData()` [[Elasticsearch_Namespaces_MlNamespacepostData_postData]] .`postData(array $params = [])` **** @@ -795,8 +717,6 @@ $params['body'] = (array) The data to process (Required) -[[Elasticsearch_Namespaces_MlNamespacepreviewDatafeed_previewDatafeed]] -.`previewDatafeed()` [[Elasticsearch_Namespaces_MlNamespacepreviewDatafeed_previewDatafeed]] .`previewDatafeed(array $params = [])` **** @@ -810,8 +730,6 @@ $params['datafeed_id'] = (string) The ID of the datafeed to preview -[[Elasticsearch_Namespaces_MlNamespaceputCalendar_putCalendar]] -.`putCalendar()` [[Elasticsearch_Namespaces_MlNamespaceputCalendar_putCalendar]] .`putCalendar(array $params = [])` **** @@ -826,8 +744,6 @@ $params['body'] = (array) The calendar details -[[Elasticsearch_Namespaces_MlNamespaceputCalendarJob_putCalendarJob]] -.`putCalendarJob()` [[Elasticsearch_Namespaces_MlNamespaceputCalendarJob_putCalendarJob]] .`putCalendarJob(array $params = [])` **** @@ -842,11 +758,9 @@ $params['job_id'] = (string) The ID of the job to add to the calendar -[[Elasticsearch_Namespaces_MlNamespaceputDataFrameAnalytics_putDataFrameAnalytics]] -.`putDataFrameAnalytics()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible [[Elasticsearch_Namespaces_MlNamespaceputDataFrameAnalytics_putDataFrameAnalytics]] .`putDataFrameAnalytics(array $params = [])` +*NOTE:* This API is BETA and may change in ways that are not backwards compatible **** [source,php] ---- @@ -859,8 +773,6 @@ $params['body'] = (array) The data frame analytics configuration (Required) -[[Elasticsearch_Namespaces_MlNamespaceputDatafeed_putDatafeed]] -.`putDatafeed()` [[Elasticsearch_Namespaces_MlNamespaceputDatafeed_putDatafeed]] .`putDatafeed(array $params = [])` **** @@ -879,8 +791,6 @@ $params['body'] = (array) The datafeed config (Required) -[[Elasticsearch_Namespaces_MlNamespaceputFilter_putFilter]] -.`putFilter()` [[Elasticsearch_Namespaces_MlNamespaceputFilter_putFilter]] .`putFilter(array $params = [])` **** @@ -895,8 +805,6 @@ $params['body'] = (array) The filter details (Required) -[[Elasticsearch_Namespaces_MlNamespaceputJob_putJob]] -.`putJob()` [[Elasticsearch_Namespaces_MlNamespaceputJob_putJob]] .`putJob(array $params = [])` **** @@ -911,11 +819,9 @@ $params['body'] = (array) The job (Required) -[[Elasticsearch_Namespaces_MlNamespaceputTrainedModel_putTrainedModel]] -.`putTrainedModel()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible [[Elasticsearch_Namespaces_MlNamespaceputTrainedModel_putTrainedModel]] .`putTrainedModel(array $params = [])` +*NOTE:* This API is BETA and may change in ways that are not backwards compatible **** [source,php] ---- @@ -928,8 +834,6 @@ $params['body'] = (array) The trained model configuration (Required) -[[Elasticsearch_Namespaces_MlNamespacerevertModelSnapshot_revertModelSnapshot]] -.`revertModelSnapshot()` [[Elasticsearch_Namespaces_MlNamespacerevertModelSnapshot_revertModelSnapshot]] .`revertModelSnapshot(array $params = [])` **** @@ -946,8 +850,6 @@ $params['body'] = (array) Reversion options -[[Elasticsearch_Namespaces_MlNamespacesetUpgradeMode_setUpgradeMode]] -.`setUpgradeMode()` [[Elasticsearch_Namespaces_MlNamespacesetUpgradeMode_setUpgradeMode]] .`setUpgradeMode(array $params = [])` **** @@ -961,11 +863,9 @@ $params['enabled'] = (boolean) Whether to enable upgrade_mode ML setting or not. -[[Elasticsearch_Namespaces_MlNamespacestartDataFrameAnalytics_startDataFrameAnalytics]] -.`startDataFrameAnalytics()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible [[Elasticsearch_Namespaces_MlNamespacestartDataFrameAnalytics_startDataFrameAnalytics]] .`startDataFrameAnalytics(array $params = [])` +*NOTE:* This API is BETA and may change in ways that are not backwards compatible **** [source,php] ---- @@ -979,8 +879,6 @@ $params['body'] = (array) The start data frame analytics parameters -[[Elasticsearch_Namespaces_MlNamespacestartDatafeed_startDatafeed]] -.`startDatafeed()` [[Elasticsearch_Namespaces_MlNamespacestartDatafeed_startDatafeed]] .`startDatafeed(array $params = [])` **** @@ -998,11 +896,9 @@ $params['body'] = (array) The start datafeed parameters -[[Elasticsearch_Namespaces_MlNamespacestopDataFrameAnalytics_stopDataFrameAnalytics]] -.`stopDataFrameAnalytics()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible [[Elasticsearch_Namespaces_MlNamespacestopDataFrameAnalytics_stopDataFrameAnalytics]] .`stopDataFrameAnalytics(array $params = [])` +*NOTE:* This API is BETA and may change in ways that are not backwards compatible **** [source,php] ---- @@ -1018,8 +914,6 @@ $params['body'] = (array) The stop data frame analytics parameters -[[Elasticsearch_Namespaces_MlNamespacestopDatafeed_stopDatafeed]] -.`stopDatafeed()` [[Elasticsearch_Namespaces_MlNamespacestopDatafeed_stopDatafeed]] .`stopDatafeed(array $params = [])` **** @@ -1036,11 +930,9 @@ $params['force'] = (boolean) True if the datafeed should be forcefu -[[Elasticsearch_Namespaces_MlNamespaceupdateDataFrameAnalytics_updateDataFrameAnalytics]] -.`updateDataFrameAnalytics()` -*NOTE:* This API is BETA and may change in ways that are not backwards compatible [[Elasticsearch_Namespaces_MlNamespaceupdateDataFrameAnalytics_updateDataFrameAnalytics]] .`updateDataFrameAnalytics(array $params = [])` +*NOTE:* This API is BETA and may change in ways that are not backwards compatible **** [source,php] ---- @@ -1053,8 +945,6 @@ $params['body'] = (array) The data frame analytics settings to update (Required) -[[Elasticsearch_Namespaces_MlNamespaceupdateDatafeed_updateDatafeed]] -.`updateDatafeed()` [[Elasticsearch_Namespaces_MlNamespaceupdateDatafeed_updateDatafeed]] .`updateDatafeed(array $params = [])` **** @@ -1073,8 +963,6 @@ $params['body'] = (array) The datafeed update settings (Required) -[[Elasticsearch_Namespaces_MlNamespaceupdateFilter_updateFilter]] -.`updateFilter()` [[Elasticsearch_Namespaces_MlNamespaceupdateFilter_updateFilter]] .`updateFilter(array $params = [])` **** @@ -1089,8 +977,6 @@ $params['body'] = (array) The filter update (Required) -[[Elasticsearch_Namespaces_MlNamespaceupdateJob_updateJob]] -.`updateJob()` [[Elasticsearch_Namespaces_MlNamespaceupdateJob_updateJob]] .`updateJob(array $params = [])` **** @@ -1105,8 +991,6 @@ $params['body'] = (array) The job update settings (Required) -[[Elasticsearch_Namespaces_MlNamespaceupdateModelSnapshot_updateModelSnapshot]] -.`updateModelSnapshot()` [[Elasticsearch_Namespaces_MlNamespaceupdateModelSnapshot_updateModelSnapshot]] .`updateModelSnapshot(array $params = [])` **** @@ -1122,8 +1006,6 @@ $params['body'] = (array) The model snapshot properties to update (Requir -[[Elasticsearch_Namespaces_MlNamespaceupgradeJobSnapshot_upgradeJobSnapshot]] -.`upgradeJobSnapshot()` [[Elasticsearch_Namespaces_MlNamespaceupgradeJobSnapshot_upgradeJobSnapshot]] .`upgradeJobSnapshot(array $params = [])` **** @@ -1139,8 +1021,6 @@ $params['timeout'] = (time) How long should the API wait for the job -[[Elasticsearch_Namespaces_MlNamespacevalidate_validate]] -.`validate()` [[Elasticsearch_Namespaces_MlNamespacevalidate_validate]] .`validate(array $params = [])` **** @@ -1154,8 +1034,6 @@ $params['body'] = (array) The job config (Required) -[[Elasticsearch_Namespaces_MlNamespacevalidateDetector_validateDetector]] -.`validateDetector()` [[Elasticsearch_Namespaces_MlNamespacevalidateDetector_validateDetector]] .`validateDetector(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/MonitoringNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/MonitoringNamespace.asciidoc index 6406b7df6..45415973e 100644 --- a/docs/build/Elasticsearch/Namespaces/MonitoringNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/MonitoringNamespace.asciidoc @@ -22,11 +22,9 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_MonitoringNamespacebulk_bulk]] -.`bulk()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_Namespaces_MonitoringNamespacebulk_bulk]] .`bulk(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- diff --git a/docs/build/Elasticsearch/Namespaces/NodesNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/NodesNamespace.asciidoc index 48e45ff25..9ba1d2bd5 100644 --- a/docs/build/Elasticsearch/Namespaces/NodesNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/NodesNamespace.asciidoc @@ -26,8 +26,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_NodesNamespacehotThreads_hotThreads]] -.`hotThreads()` [[Elasticsearch_Namespaces_NodesNamespacehotThreads_hotThreads]] .`hotThreads(array $params = [])` **** @@ -47,8 +45,6 @@ $params['timeout'] = (time) Explicit operation timeout -[[Elasticsearch_Namespaces_NodesNamespaceinfo_info]] -.`info()` [[Elasticsearch_Namespaces_NodesNamespaceinfo_info]] .`info(array $params = [])` **** @@ -63,8 +59,6 @@ $params['metric'] = (list) A comma-separated list of metrics you wish ret -[[Elasticsearch_Namespaces_NodesNamespacereloadSecureSettings_reloadSecureSettings]] -.`reloadSecureSettings()` [[Elasticsearch_Namespaces_NodesNamespacereloadSecureSettings_reloadSecureSettings]] .`reloadSecureSettings(array $params = [])` **** @@ -78,8 +72,6 @@ $params['node_id'] = (list) A comma-separated list of node IDs to span the reloa -[[Elasticsearch_Namespaces_NodesNamespacestats_stats]] -.`stats()` [[Elasticsearch_Namespaces_NodesNamespacestats_stats]] .`stats(array $params = [])` **** @@ -95,8 +87,6 @@ $params['index_metric'] = (list) Limit the information returned fo -[[Elasticsearch_Namespaces_NodesNamespaceusage_usage]] -.`usage()` [[Elasticsearch_Namespaces_NodesNamespaceusage_usage]] .`usage(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/RollupNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/RollupNamespace.asciidoc index 1faf7d23c..e11575dc1 100644 --- a/docs/build/Elasticsearch/Namespaces/RollupNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/RollupNamespace.asciidoc @@ -30,11 +30,9 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_RollupNamespacedeleteJob_deleteJob]] -.`deleteJob()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_Namespaces_RollupNamespacedeleteJob_deleteJob]] .`deleteJob(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- @@ -46,11 +44,9 @@ $params['id'] = (string) The ID of the job to delete -[[Elasticsearch_Namespaces_RollupNamespacegetJobs_getJobs]] -.`getJobs()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_Namespaces_RollupNamespacegetJobs_getJobs]] .`getJobs(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- @@ -62,11 +58,9 @@ $params['id'] = (string) The ID of the job(s) to fetch. Accepts glob patterns, o -[[Elasticsearch_Namespaces_RollupNamespacegetRollupCaps_getRollupCaps]] -.`getRollupCaps()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_Namespaces_RollupNamespacegetRollupCaps_getRollupCaps]] .`getRollupCaps(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- @@ -78,11 +72,9 @@ $params['id'] = (string) The ID of the index to check rollup capabilities on, or -[[Elasticsearch_Namespaces_RollupNamespacegetRollupIndexCaps_getRollupIndexCaps]] -.`getRollupIndexCaps()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_Namespaces_RollupNamespacegetRollupIndexCaps_getRollupIndexCaps]] .`getRollupIndexCaps(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- @@ -94,11 +86,9 @@ $params['index'] = (string) The rollup index or index pattern to obtain rollup c -[[Elasticsearch_Namespaces_RollupNamespaceputJob_putJob]] -.`putJob()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_Namespaces_RollupNamespaceputJob_putJob]] .`putJob(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- @@ -111,8 +101,6 @@ $params['body'] = (array) The job configuration (Required) -[[Elasticsearch_Namespaces_RollupNamespacerollup_rollup]] -.`rollup()` [[Elasticsearch_Namespaces_RollupNamespacerollup_rollup]] .`rollup(array $params = [])` **** @@ -128,11 +116,9 @@ $params['body'] = (array) The rollup configuration (Required) -[[Elasticsearch_Namespaces_RollupNamespacerollupSearch_rollupSearch]] -.`rollupSearch()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_Namespaces_RollupNamespacerollupSearch_rollupSearch]] .`rollupSearch(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- @@ -148,11 +134,9 @@ $params['body'] = (array) The search request body (Required) -[[Elasticsearch_Namespaces_RollupNamespacestartJob_startJob]] -.`startJob()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_Namespaces_RollupNamespacestartJob_startJob]] .`startJob(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- @@ -164,11 +148,9 @@ $params['id'] = (string) The ID of the job to start -[[Elasticsearch_Namespaces_RollupNamespacestopJob_stopJob]] -.`stopJob()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_Namespaces_RollupNamespacestopJob_stopJob]] .`stopJob(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- diff --git a/docs/build/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.asciidoc index 09c7371b1..b72e4de98 100644 --- a/docs/build/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.asciidoc @@ -25,11 +25,9 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_SearchableSnapshotsNamespaceclearCache_clearCache]] -.`clearCache()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_Namespaces_SearchableSnapshotsNamespaceclearCache_clearCache]] .`clearCache(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- @@ -44,11 +42,9 @@ $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to -[[Elasticsearch_Namespaces_SearchableSnapshotsNamespacemount_mount]] -.`mount()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_Namespaces_SearchableSnapshotsNamespacemount_mount]] .`mount(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- @@ -65,11 +61,9 @@ $params['body'] = (array) The restore configuration for mounting -[[Elasticsearch_Namespaces_SearchableSnapshotsNamespacerepositoryStats_repositoryStats]] -.`repositoryStats()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_Namespaces_SearchableSnapshotsNamespacerepositoryStats_repositoryStats]] .`repositoryStats(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- @@ -81,11 +75,9 @@ $params['repository'] = (string) The repository for which to get the stats for -[[Elasticsearch_Namespaces_SearchableSnapshotsNamespacestats_stats]] -.`stats()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_Namespaces_SearchableSnapshotsNamespacestats_stats]] .`stats(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- diff --git a/docs/build/Elasticsearch/Namespaces/SecurityNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/SecurityNamespace.asciidoc index 8ebc6c0db..3c91ef0af 100644 --- a/docs/build/Elasticsearch/Namespaces/SecurityNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/SecurityNamespace.asciidoc @@ -50,8 +50,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_SecurityNamespaceauthenticate_authenticate]] -.`authenticate()` [[Elasticsearch_Namespaces_SecurityNamespaceauthenticate_authenticate]] .`authenticate(array $params = [])` **** @@ -64,8 +62,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_SecurityNamespacechangePassword_changePassword]] -.`changePassword()` [[Elasticsearch_Namespaces_SecurityNamespacechangePassword_changePassword]] .`changePassword(array $params = [])` **** @@ -81,8 +77,6 @@ $params['body'] = (array) the new password for the user (Required) -[[Elasticsearch_Namespaces_SecurityNamespaceclearApiKeyCache_clearApiKeyCache]] -.`clearApiKeyCache()` [[Elasticsearch_Namespaces_SecurityNamespaceclearApiKeyCache_clearApiKeyCache]] .`clearApiKeyCache(array $params = [])` **** @@ -96,8 +90,6 @@ $params['ids'] = (list) A comma-separated list of IDs of API keys to clear from -[[Elasticsearch_Namespaces_SecurityNamespaceclearCachedPrivileges_clearCachedPrivileges]] -.`clearCachedPrivileges()` [[Elasticsearch_Namespaces_SecurityNamespaceclearCachedPrivileges_clearCachedPrivileges]] .`clearCachedPrivileges(array $params = [])` **** @@ -111,8 +103,6 @@ $params['application'] = (list) A comma-separated list of application names -[[Elasticsearch_Namespaces_SecurityNamespaceclearCachedRealms_clearCachedRealms]] -.`clearCachedRealms()` [[Elasticsearch_Namespaces_SecurityNamespaceclearCachedRealms_clearCachedRealms]] .`clearCachedRealms(array $params = [])` **** @@ -127,8 +117,6 @@ $params['usernames'] = (list) Comma-separated list of usernames to clear from th -[[Elasticsearch_Namespaces_SecurityNamespaceclearCachedRoles_clearCachedRoles]] -.`clearCachedRoles()` [[Elasticsearch_Namespaces_SecurityNamespaceclearCachedRoles_clearCachedRoles]] .`clearCachedRoles(array $params = [])` **** @@ -142,8 +130,6 @@ $params['name'] = (list) Role name -[[Elasticsearch_Namespaces_SecurityNamespacecreateApiKey_createApiKey]] -.`createApiKey()` [[Elasticsearch_Namespaces_SecurityNamespacecreateApiKey_createApiKey]] .`createApiKey(array $params = [])` **** @@ -158,8 +144,6 @@ $params['body'] = (array) The api key request to create an API key (Required) -[[Elasticsearch_Namespaces_SecurityNamespacedeletePrivileges_deletePrivileges]] -.`deletePrivileges()` [[Elasticsearch_Namespaces_SecurityNamespacedeletePrivileges_deletePrivileges]] .`deletePrivileges(array $params = [])` **** @@ -175,8 +159,6 @@ $params['refresh'] = (enum) If `true` (the default) then refresh the affecte -[[Elasticsearch_Namespaces_SecurityNamespacedeleteRole_deleteRole]] -.`deleteRole()` [[Elasticsearch_Namespaces_SecurityNamespacedeleteRole_deleteRole]] .`deleteRole(array $params = [])` **** @@ -191,8 +173,6 @@ $params['refresh'] = (enum) If `true` (the default) then refresh the affected sh -[[Elasticsearch_Namespaces_SecurityNamespacedeleteRoleMapping_deleteRoleMapping]] -.`deleteRoleMapping()` [[Elasticsearch_Namespaces_SecurityNamespacedeleteRoleMapping_deleteRoleMapping]] .`deleteRoleMapping(array $params = [])` **** @@ -207,8 +187,6 @@ $params['refresh'] = (enum) If `true` (the default) then refresh the affected sh -[[Elasticsearch_Namespaces_SecurityNamespacedeleteUser_deleteUser]] -.`deleteUser()` [[Elasticsearch_Namespaces_SecurityNamespacedeleteUser_deleteUser]] .`deleteUser(array $params = [])` **** @@ -223,8 +201,6 @@ $params['refresh'] = (enum) If `true` (the default) then refresh the affected s -[[Elasticsearch_Namespaces_SecurityNamespacedisableUser_disableUser]] -.`disableUser()` [[Elasticsearch_Namespaces_SecurityNamespacedisableUser_disableUser]] .`disableUser(array $params = [])` **** @@ -239,8 +215,6 @@ $params['refresh'] = (enum) If `true` (the default) then refresh the affected s -[[Elasticsearch_Namespaces_SecurityNamespaceenableUser_enableUser]] -.`enableUser()` [[Elasticsearch_Namespaces_SecurityNamespaceenableUser_enableUser]] .`enableUser(array $params = [])` **** @@ -255,8 +229,6 @@ $params['refresh'] = (enum) If `true` (the default) then refresh the affected s -[[Elasticsearch_Namespaces_SecurityNamespacegetApiKey_getApiKey]] -.`getApiKey()` [[Elasticsearch_Namespaces_SecurityNamespacegetApiKey_getApiKey]] .`getApiKey(array $params = [])` **** @@ -274,8 +246,6 @@ $params['owner'] = (boolean) flag to query API keys owned by the currently -[[Elasticsearch_Namespaces_SecurityNamespacegetBuiltinPrivileges_getBuiltinPrivileges]] -.`getBuiltinPrivileges()` [[Elasticsearch_Namespaces_SecurityNamespacegetBuiltinPrivileges_getBuiltinPrivileges]] .`getBuiltinPrivileges(array $params = [])` **** @@ -288,8 +258,6 @@ $params['owner'] = (boolean) flag to query API keys owned by the currently -[[Elasticsearch_Namespaces_SecurityNamespacegetPrivileges_getPrivileges]] -.`getPrivileges()` [[Elasticsearch_Namespaces_SecurityNamespacegetPrivileges_getPrivileges]] .`getPrivileges(array $params = [])` **** @@ -304,8 +272,6 @@ $params['name'] = (string) Privilege name -[[Elasticsearch_Namespaces_SecurityNamespacegetRole_getRole]] -.`getRole()` [[Elasticsearch_Namespaces_SecurityNamespacegetRole_getRole]] .`getRole(array $params = [])` **** @@ -319,8 +285,6 @@ $params['name'] = (list) A comma-separated list of role names -[[Elasticsearch_Namespaces_SecurityNamespacegetRoleMapping_getRoleMapping]] -.`getRoleMapping()` [[Elasticsearch_Namespaces_SecurityNamespacegetRoleMapping_getRoleMapping]] .`getRoleMapping(array $params = [])` **** @@ -334,8 +298,6 @@ $params['name'] = (list) A comma-separated list of role-mapping names -[[Elasticsearch_Namespaces_SecurityNamespacegetToken_getToken]] -.`getToken()` [[Elasticsearch_Namespaces_SecurityNamespacegetToken_getToken]] .`getToken(array $params = [])` **** @@ -349,8 +311,6 @@ $params['body'] = (array) The token request to get (Required) -[[Elasticsearch_Namespaces_SecurityNamespacegetUser_getUser]] -.`getUser()` [[Elasticsearch_Namespaces_SecurityNamespacegetUser_getUser]] .`getUser(array $params = [])` **** @@ -364,8 +324,6 @@ $params['username'] = (list) A comma-separated list of usernames -[[Elasticsearch_Namespaces_SecurityNamespacegetUserPrivileges_getUserPrivileges]] -.`getUserPrivileges()` [[Elasticsearch_Namespaces_SecurityNamespacegetUserPrivileges_getUserPrivileges]] .`getUserPrivileges(array $params = [])` **** @@ -378,8 +336,6 @@ $params['username'] = (list) A comma-separated list of usernames -[[Elasticsearch_Namespaces_SecurityNamespacegrantApiKey_grantApiKey]] -.`grantApiKey()` [[Elasticsearch_Namespaces_SecurityNamespacegrantApiKey_grantApiKey]] .`grantApiKey(array $params = [])` **** @@ -394,8 +350,6 @@ $params['body'] = (array) The api key request to create an API key (Required) -[[Elasticsearch_Namespaces_SecurityNamespacehasPrivileges_hasPrivileges]] -.`hasPrivileges()` [[Elasticsearch_Namespaces_SecurityNamespacehasPrivileges_hasPrivileges]] .`hasPrivileges(array $params = [])` **** @@ -410,8 +364,6 @@ $params['body'] = (array) The privileges to test (Required) -[[Elasticsearch_Namespaces_SecurityNamespaceinvalidateApiKey_invalidateApiKey]] -.`invalidateApiKey()` [[Elasticsearch_Namespaces_SecurityNamespaceinvalidateApiKey_invalidateApiKey]] .`invalidateApiKey(array $params = [])` **** @@ -424,8 +376,6 @@ $params['body'] = (array) The privileges to test (Required) -[[Elasticsearch_Namespaces_SecurityNamespaceinvalidateToken_invalidateToken]] -.`invalidateToken()` [[Elasticsearch_Namespaces_SecurityNamespaceinvalidateToken_invalidateToken]] .`invalidateToken(array $params = [])` **** @@ -439,8 +389,6 @@ $params['body'] = (array) The token to invalidate (Required) -[[Elasticsearch_Namespaces_SecurityNamespaceputPrivileges_putPrivileges]] -.`putPrivileges()` [[Elasticsearch_Namespaces_SecurityNamespaceputPrivileges_putPrivileges]] .`putPrivileges(array $params = [])` **** @@ -455,8 +403,6 @@ $params['body'] = (array) The privilege(s) to add (Required) -[[Elasticsearch_Namespaces_SecurityNamespaceputRole_putRole]] -.`putRole()` [[Elasticsearch_Namespaces_SecurityNamespaceputRole_putRole]] .`putRole(array $params = [])` **** @@ -472,8 +418,6 @@ $params['body'] = (array) The role to add (Required) -[[Elasticsearch_Namespaces_SecurityNamespaceputRoleMapping_putRoleMapping]] -.`putRoleMapping()` [[Elasticsearch_Namespaces_SecurityNamespaceputRoleMapping_putRoleMapping]] .`putRoleMapping(array $params = [])` **** @@ -489,8 +433,6 @@ $params['body'] = (array) The role mapping to add (Required) -[[Elasticsearch_Namespaces_SecurityNamespaceputUser_putUser]] -.`putUser()` [[Elasticsearch_Namespaces_SecurityNamespaceputUser_putUser]] .`putUser(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/SlmNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/SlmNamespace.asciidoc index 9128ab31e..a2812fea5 100644 --- a/docs/build/Elasticsearch/Namespaces/SlmNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/SlmNamespace.asciidoc @@ -30,8 +30,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_SlmNamespacedeleteLifecycle_deleteLifecycle]] -.`deleteLifecycle()` [[Elasticsearch_Namespaces_SlmNamespacedeleteLifecycle_deleteLifecycle]] .`deleteLifecycle(array $params = [])` **** @@ -45,8 +43,6 @@ $params['policy_id'] = (string) The id of the snapshot lifecycle policy to remov -[[Elasticsearch_Namespaces_SlmNamespaceexecuteLifecycle_executeLifecycle]] -.`executeLifecycle()` [[Elasticsearch_Namespaces_SlmNamespaceexecuteLifecycle_executeLifecycle]] .`executeLifecycle(array $params = [])` **** @@ -60,8 +56,6 @@ $params['policy_id'] = (string) The id of the snapshot lifecycle policy to be ex -[[Elasticsearch_Namespaces_SlmNamespaceexecuteRetention_executeRetention]] -.`executeRetention()` [[Elasticsearch_Namespaces_SlmNamespaceexecuteRetention_executeRetention]] .`executeRetention(array $params = [])` **** @@ -74,8 +68,6 @@ $params['policy_id'] = (string) The id of the snapshot lifecycle policy to be ex -[[Elasticsearch_Namespaces_SlmNamespacegetLifecycle_getLifecycle]] -.`getLifecycle()` [[Elasticsearch_Namespaces_SlmNamespacegetLifecycle_getLifecycle]] .`getLifecycle(array $params = [])` **** @@ -89,8 +81,6 @@ $params['policy_id'] = (list) Comma-separated list of snapshot lifecycle policie -[[Elasticsearch_Namespaces_SlmNamespacegetStats_getStats]] -.`getStats()` [[Elasticsearch_Namespaces_SlmNamespacegetStats_getStats]] .`getStats(array $params = [])` **** @@ -103,8 +93,6 @@ $params['policy_id'] = (list) Comma-separated list of snapshot lifecycle policie -[[Elasticsearch_Namespaces_SlmNamespacegetStatus_getStatus]] -.`getStatus()` [[Elasticsearch_Namespaces_SlmNamespacegetStatus_getStatus]] .`getStatus(array $params = [])` **** @@ -117,8 +105,6 @@ $params['policy_id'] = (list) Comma-separated list of snapshot lifecycle policie -[[Elasticsearch_Namespaces_SlmNamespaceputLifecycle_putLifecycle]] -.`putLifecycle()` [[Elasticsearch_Namespaces_SlmNamespaceputLifecycle_putLifecycle]] .`putLifecycle(array $params = [])` **** @@ -133,8 +119,6 @@ $params['body'] = (array) The snapshot lifecycle policy definition to regis -[[Elasticsearch_Namespaces_SlmNamespacestart_start]] -.`start()` [[Elasticsearch_Namespaces_SlmNamespacestart_start]] .`start(array $params = [])` **** @@ -147,8 +131,6 @@ $params['body'] = (array) The snapshot lifecycle policy definition to regis -[[Elasticsearch_Namespaces_SlmNamespacestop_stop]] -.`stop()` [[Elasticsearch_Namespaces_SlmNamespacestop_stop]] .`stop(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/SnapshotNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/SnapshotNamespace.asciidoc index b384c056d..402ad1882 100644 --- a/docs/build/Elasticsearch/Namespaces/SnapshotNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/SnapshotNamespace.asciidoc @@ -32,8 +32,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_SnapshotNamespacecleanupRepository_cleanupRepository]] -.`cleanupRepository()` [[Elasticsearch_Namespaces_SnapshotNamespacecleanupRepository_cleanupRepository]] .`cleanupRepository(array $params = [])` **** @@ -49,8 +47,6 @@ $params['timeout'] = (time) Explicit operation timeout -[[Elasticsearch_Namespaces_SnapshotNamespaceclone_clone]] -.`clone()` [[Elasticsearch_Namespaces_SnapshotNamespaceclone_clone]] .`clone(array $params = [])` **** @@ -68,8 +64,6 @@ $params['body'] = (array) The snapshot clone definition (Required) -[[Elasticsearch_Namespaces_SnapshotNamespacecreate_create]] -.`create()` [[Elasticsearch_Namespaces_SnapshotNamespacecreate_create]] .`create(array $params = [])` **** @@ -87,8 +81,6 @@ $params['body'] = (array) The snapshot definition -[[Elasticsearch_Namespaces_SnapshotNamespacecreateRepository_createRepository]] -.`createRepository()` [[Elasticsearch_Namespaces_SnapshotNamespacecreateRepository_createRepository]] .`createRepository(array $params = [])` **** @@ -106,8 +98,6 @@ $params['body'] = (array) The repository definition (Required) -[[Elasticsearch_Namespaces_SnapshotNamespacedelete_delete]] -.`delete()` [[Elasticsearch_Namespaces_SnapshotNamespacedelete_delete]] .`delete(array $params = [])` **** @@ -123,8 +113,6 @@ $params['master_timeout'] = (time) Explicit operation timeout for connection to -[[Elasticsearch_Namespaces_SnapshotNamespacedeleteRepository_deleteRepository]] -.`deleteRepository()` [[Elasticsearch_Namespaces_SnapshotNamespacedeleteRepository_deleteRepository]] .`deleteRepository(array $params = [])` **** @@ -138,8 +126,6 @@ $params['repository'] = (list) Name of the snapshot repository to unregister -[[Elasticsearch_Namespaces_SnapshotNamespaceget_get]] -.`get()` [[Elasticsearch_Namespaces_SnapshotNamespaceget_get]] .`get(array $params = [])` **** @@ -157,8 +143,6 @@ $params['verbose'] = (boolean) Whether to show verbose snapshot info -[[Elasticsearch_Namespaces_SnapshotNamespacegetRepository_getRepository]] -.`getRepository()` [[Elasticsearch_Namespaces_SnapshotNamespacegetRepository_getRepository]] .`getRepository(array $params = [])` **** @@ -174,8 +158,6 @@ $params['local'] = (boolean) Return local information, do not retrieve -[[Elasticsearch_Namespaces_SnapshotNamespacerestore_restore]] -.`restore()` [[Elasticsearch_Namespaces_SnapshotNamespacerestore_restore]] .`restore(array $params = [])` **** @@ -193,8 +175,6 @@ $params['body'] = (array) Details of what to restore -[[Elasticsearch_Namespaces_SnapshotNamespacestatus_status]] -.`status()` [[Elasticsearch_Namespaces_SnapshotNamespacestatus_status]] .`status(array $params = [])` **** @@ -211,8 +191,6 @@ $params['ignore_unavailable'] = (boolean) Whether to ignore unavailable snapshot -[[Elasticsearch_Namespaces_SnapshotNamespaceverifyRepository_verifyRepository]] -.`verifyRepository()` [[Elasticsearch_Namespaces_SnapshotNamespaceverifyRepository_verifyRepository]] .`verifyRepository(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/SqlNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/SqlNamespace.asciidoc index 58988ef27..a716370d3 100644 --- a/docs/build/Elasticsearch/Namespaces/SqlNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/SqlNamespace.asciidoc @@ -24,8 +24,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_SqlNamespaceclearCursor_clearCursor]] -.`clearCursor()` [[Elasticsearch_Namespaces_SqlNamespaceclearCursor_clearCursor]] .`clearCursor(array $params = [])` **** @@ -38,8 +36,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_SqlNamespacequery_query]] -.`query()` [[Elasticsearch_Namespaces_SqlNamespacequery_query]] .`query(array $params = [])` **** @@ -54,8 +50,6 @@ $params['body'] = (array) Use the `query` element to start a query. Use the `c -[[Elasticsearch_Namespaces_SqlNamespacetranslate_translate]] -.`translate()` [[Elasticsearch_Namespaces_SqlNamespacetranslate_translate]] .`translate(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/SslNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/SslNamespace.asciidoc index c539b25ce..fc08b0a5a 100644 --- a/docs/build/Elasticsearch/Namespaces/SslNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/SslNamespace.asciidoc @@ -22,8 +22,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_SslNamespacecertificates_certificates]] -.`certificates()` [[Elasticsearch_Namespaces_SslNamespacecertificates_certificates]] .`certificates(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/TasksNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/TasksNamespace.asciidoc index eb4724b02..1a4f47e5b 100644 --- a/docs/build/Elasticsearch/Namespaces/TasksNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/TasksNamespace.asciidoc @@ -25,11 +25,9 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_TasksNamespacecancel_cancel]] -.`cancel()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_Namespaces_TasksNamespacecancel_cancel]] .`cancel(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- @@ -43,11 +41,9 @@ $params['actions'] = (list) A comma-separated list of actions that s -[[Elasticsearch_Namespaces_TasksNamespaceget_get]] -.`get()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_Namespaces_TasksNamespaceget_get]] .`get(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- @@ -61,11 +57,9 @@ $params['timeout'] = (time) Explicit operation timeout -[[Elasticsearch_Namespaces_TasksNamespacelist_list]] -.`list()` -*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release [[Elasticsearch_Namespaces_TasksNamespacelist_list]] .`list(array $params = [])` +*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release **** [source,php] ---- @@ -78,8 +72,6 @@ $params['actions'] = (list) A comma-separated list of actions that s -[[Elasticsearch_Namespaces_TasksNamespacetasksList_tasksList]] -.`tasksList()` [[Elasticsearch_Namespaces_TasksNamespacetasksList_tasksList]] .`tasksList(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/TextStructureNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/TextStructureNamespace.asciidoc index efd738e5d..ae618a994 100644 --- a/docs/build/Elasticsearch/Namespaces/TextStructureNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/TextStructureNamespace.asciidoc @@ -22,8 +22,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_TextStructureNamespacefindStructure_findStructure]] -.`findStructure()` [[Elasticsearch_Namespaces_TextStructureNamespacefindStructure_findStructure]] .`findStructure(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/TransformNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/TransformNamespace.asciidoc index 40b14345c..2654fa2bc 100644 --- a/docs/build/Elasticsearch/Namespaces/TransformNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/TransformNamespace.asciidoc @@ -29,8 +29,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_TransformNamespacedeleteTransform_deleteTransform]] -.`deleteTransform()` [[Elasticsearch_Namespaces_TransformNamespacedeleteTransform_deleteTransform]] .`deleteTransform(array $params = [])` **** @@ -45,8 +43,6 @@ $params['force'] = (boolean) When `true`, the transform is deleted regard -[[Elasticsearch_Namespaces_TransformNamespacegetTransform_getTransform]] -.`getTransform()` [[Elasticsearch_Namespaces_TransformNamespacegetTransform_getTransform]] .`getTransform(array $params = [])` **** @@ -64,8 +60,6 @@ $params['exclude_generated'] = (boolean) Omits fields that are illegal to set on -[[Elasticsearch_Namespaces_TransformNamespacegetTransformStats_getTransformStats]] -.`getTransformStats()` [[Elasticsearch_Namespaces_TransformNamespacegetTransformStats_getTransformStats]] .`getTransformStats(array $params = [])` **** @@ -82,8 +76,6 @@ $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression -[[Elasticsearch_Namespaces_TransformNamespacepreviewTransform_previewTransform]] -.`previewTransform()` [[Elasticsearch_Namespaces_TransformNamespacepreviewTransform_previewTransform]] .`previewTransform(array $params = [])` **** @@ -96,8 +88,6 @@ $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression -[[Elasticsearch_Namespaces_TransformNamespaceputTransform_putTransform]] -.`putTransform()` [[Elasticsearch_Namespaces_TransformNamespaceputTransform_putTransform]] .`putTransform(array $params = [])` **** @@ -111,8 +101,6 @@ $params['transform_id'] = (string) The id of the new transform. -[[Elasticsearch_Namespaces_TransformNamespacestartTransform_startTransform]] -.`startTransform()` [[Elasticsearch_Namespaces_TransformNamespacestartTransform_startTransform]] .`startTransform(array $params = [])` **** @@ -127,8 +115,6 @@ $params['timeout'] = (time) Controls the time to wait for the transform to -[[Elasticsearch_Namespaces_TransformNamespacestopTransform_stopTransform]] -.`stopTransform()` [[Elasticsearch_Namespaces_TransformNamespacestopTransform_stopTransform]] .`stopTransform(array $params = [])` **** @@ -147,8 +133,6 @@ $params['wait_for_checkpoint'] = (boolean) Whether to wait for the transform to -[[Elasticsearch_Namespaces_TransformNamespaceupdateTransform_updateTransform]] -.`updateTransform()` [[Elasticsearch_Namespaces_TransformNamespaceupdateTransform_updateTransform]] .`updateTransform(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/WatcherNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/WatcherNamespace.asciidoc index 0547c56d4..30d91f316 100644 --- a/docs/build/Elasticsearch/Namespaces/WatcherNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/WatcherNamespace.asciidoc @@ -32,8 +32,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_WatcherNamespaceackWatch_ackWatch]] -.`ackWatch()` [[Elasticsearch_Namespaces_WatcherNamespaceackWatch_ackWatch]] .`ackWatch(array $params = [])` **** @@ -48,8 +46,6 @@ $params['action_id'] = (list) A comma-separated list of the action ids to be ack -[[Elasticsearch_Namespaces_WatcherNamespaceactivateWatch_activateWatch]] -.`activateWatch()` [[Elasticsearch_Namespaces_WatcherNamespaceactivateWatch_activateWatch]] .`activateWatch(array $params = [])` **** @@ -63,8 +59,6 @@ $params['watch_id'] = (string) Watch ID -[[Elasticsearch_Namespaces_WatcherNamespacedeactivateWatch_deactivateWatch]] -.`deactivateWatch()` [[Elasticsearch_Namespaces_WatcherNamespacedeactivateWatch_deactivateWatch]] .`deactivateWatch(array $params = [])` **** @@ -78,8 +72,6 @@ $params['watch_id'] = (string) Watch ID -[[Elasticsearch_Namespaces_WatcherNamespacedeleteWatch_deleteWatch]] -.`deleteWatch()` [[Elasticsearch_Namespaces_WatcherNamespacedeleteWatch_deleteWatch]] .`deleteWatch(array $params = [])` **** @@ -93,8 +85,6 @@ $params['id'] = (string) Watch ID -[[Elasticsearch_Namespaces_WatcherNamespaceexecuteWatch_executeWatch]] -.`executeWatch()` [[Elasticsearch_Namespaces_WatcherNamespaceexecuteWatch_executeWatch]] .`executeWatch(array $params = [])` **** @@ -110,8 +100,6 @@ $params['body'] = (array) Execution control -[[Elasticsearch_Namespaces_WatcherNamespacegetWatch_getWatch]] -.`getWatch()` [[Elasticsearch_Namespaces_WatcherNamespacegetWatch_getWatch]] .`getWatch(array $params = [])` **** @@ -125,8 +113,6 @@ $params['id'] = (string) Watch ID -[[Elasticsearch_Namespaces_WatcherNamespaceputWatch_putWatch]] -.`putWatch()` [[Elasticsearch_Namespaces_WatcherNamespaceputWatch_putWatch]] .`putWatch(array $params = [])` **** @@ -145,8 +131,6 @@ $params['body'] = (array) The watch -[[Elasticsearch_Namespaces_WatcherNamespacequeryWatches_queryWatches]] -.`queryWatches()` [[Elasticsearch_Namespaces_WatcherNamespacequeryWatches_queryWatches]] .`queryWatches(array $params = [])` **** @@ -160,8 +144,6 @@ $params['body'] = (array) From, size, query, sort and search_after -[[Elasticsearch_Namespaces_WatcherNamespacestart_start]] -.`start()` [[Elasticsearch_Namespaces_WatcherNamespacestart_start]] .`start(array $params = [])` **** @@ -174,8 +156,6 @@ $params['body'] = (array) From, size, query, sort and search_after -[[Elasticsearch_Namespaces_WatcherNamespacestats_stats]] -.`stats()` [[Elasticsearch_Namespaces_WatcherNamespacestats_stats]] .`stats(array $params = [])` **** @@ -190,8 +170,6 @@ $params['emit_stacktraces'] = (boolean) Emits stack traces of currently running -[[Elasticsearch_Namespaces_WatcherNamespacestop_stop]] -.`stop()` [[Elasticsearch_Namespaces_WatcherNamespacestop_stop]] .`stop(array $params = [])` **** diff --git a/docs/build/Elasticsearch/Namespaces/XpackNamespace.asciidoc b/docs/build/Elasticsearch/Namespaces/XpackNamespace.asciidoc index 4caf784c6..dbe2a2689 100644 --- a/docs/build/Elasticsearch/Namespaces/XpackNamespace.asciidoc +++ b/docs/build/Elasticsearch/Namespaces/XpackNamespace.asciidoc @@ -23,8 +23,6 @@ The class defines the following methods: -[[Elasticsearch_Namespaces_XpackNamespaceinfo_info]] -.`info()` [[Elasticsearch_Namespaces_XpackNamespaceinfo_info]] .`info(array $params = [])` **** @@ -39,8 +37,6 @@ $params['accept_enterprise'] = (boolean) If an enterprise license is installed, -[[Elasticsearch_Namespaces_XpackNamespaceusage_usage]] -.`usage()` [[Elasticsearch_Namespaces_XpackNamespaceusage_usage]] .`usage(array $params = [])` **** diff --git a/util/docstheme/pages/class.twig b/util/docstheme/pages/class.twig index a53bc9ef6..8190ecb82 100644 --- a/util/docstheme/pages/class.twig +++ b/util/docstheme/pages/class.twig @@ -37,14 +37,12 @@ The {{ class_type(class) }} defines the following methods: [[{{ sanitize(replace_backslash(method)~"_"~method.name) }}]] -.`{{ method.name }}()` +.`{{ method.name }}{{ block('method_parameters_signature') }}` {% if method.tags('note') %} {% for note in method.tags('note') %} *NOTE:* {{ note|join(' ') }} {% endfor %} {% endif %} -[[{{ sanitize(replace_backslash(method)~"_"~method.name) }}]] -.`{{ method.name }}{{ block('method_parameters_signature') }}` **** [source,php] ---- From c7b09e38b3ca568727aee2be78323f6c7f54bad4 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 13 May 2021 11:10:00 +0200 Subject: [PATCH 19/81] Remove test comments in setRetries --- src/Elasticsearch/ClientBuilder.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Elasticsearch/ClientBuilder.php b/src/Elasticsearch/ClientBuilder.php index 844ff30e5..9d7e54a37 100644 --- a/src/Elasticsearch/ClientBuilder.php +++ b/src/Elasticsearch/ClientBuilder.php @@ -486,9 +486,6 @@ public function setConnectionParams(array $params): ClientBuilder * Set number or retries (default is equal to number of nodes) * * @param int $retries - * @api $params = [ - * 'a' => 'b' - * ] */ public function setRetries(int $retries): ClientBuilder { From 13cbe7b19788c9bd2f38ac91159f85c28ecc52b4 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 13 May 2021 12:59:09 +0200 Subject: [PATCH 20/81] Added the description in endpoints --- util/Endpoint.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/util/Endpoint.php b/util/Endpoint.php index 0bf0fe2f5..f39309bf0 100644 --- a/util/Endpoint.php +++ b/util/Endpoint.php @@ -436,12 +436,13 @@ public function getClassName(): string public function renderDocParams(): string { - if (!isset($this->content['params']) && empty($this->getParts())) { - return ''; - } $space = $this->getMaxLengthBodyPartsParams(); $result = "\n /**\n"; + if (isset($this->content['documentation']['description'])) { + $result .= " * {$this->content['documentation']['description']}\n"; + $result .= " *\n"; + } $result .= $this->extractPartsDescription($space); $result .= $this->extractParamsDescription($space); $result .= $this->extractBodyDescription($space); From 1ce2a3becbfbdfd7a4cd8360098af3bc6a6ff83d Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 13 May 2021 15:30:37 +0200 Subject: [PATCH 21/81] Removed CR in description --- util/Endpoint.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/Endpoint.php b/util/Endpoint.php index f39309bf0..92a0efab7 100644 --- a/util/Endpoint.php +++ b/util/Endpoint.php @@ -440,7 +440,7 @@ public function renderDocParams(): string $result = "\n /**\n"; if (isset($this->content['documentation']['description'])) { - $result .= " * {$this->content['documentation']['description']}\n"; + $result .= sprintf(" * %s\n", str_replace("\n", '', $this->content['documentation']['description'])); $result .= " *\n"; } $result .= $this->extractPartsDescription($space); From e1990220f11a0e3b658c252ca61fae235bd094cf Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Tue, 18 May 2021 11:10:15 +0200 Subject: [PATCH 22/81] Add support for API Compatibility Header (#1142) --- src/Elasticsearch/ClientBuilder.php | 13 ++++- .../Elasticsearch/Tests/ClientBuilderTest.php | 48 +++++++++++++++++++ 2 files changed, 59 insertions(+), 2 deletions(-) diff --git a/src/Elasticsearch/ClientBuilder.php b/src/Elasticsearch/ClientBuilder.php index 9d7e54a37..0be2affee 100644 --- a/src/Elasticsearch/ClientBuilder.php +++ b/src/Elasticsearch/ClientBuilder.php @@ -635,11 +635,20 @@ public function build(): Client if (! isset($this->connectionParams['client']['headers'])) { $this->connectionParams['client']['headers'] = []; } + $apiVersioning = getenv('ELASTIC_CLIENT_APIVERSIONING'); if (! isset($this->connectionParams['client']['headers']['Content-Type'])) { - $this->connectionParams['client']['headers']['Content-Type'] = ['application/json']; + if ($apiVersioning === 'true' || $apiVersioning === '1') { + $this->connectionParams['client']['headers']['Content-Type'] = ['application/vnd.elasticsearch+json;compatible-with=7']; + } else { + $this->connectionParams['client']['headers']['Content-Type'] = ['application/json']; + } } if (! isset($this->connectionParams['client']['headers']['Accept'])) { - $this->connectionParams['client']['headers']['Accept'] = ['application/json']; + if ($apiVersioning === 'true' || $apiVersioning === '1') { + $this->connectionParams['client']['headers']['Accept'] = ['application/vnd.elasticsearch+json;compatible-with=7']; + } else { + $this->connectionParams['client']['headers']['Accept'] = ['application/json']; + } } $this->connectionFactory = new ConnectionFactory($this->handler, $this->connectionParams, $this->serializer, $this->logger, $this->tracer); diff --git a/tests/Elasticsearch/Tests/ClientBuilderTest.php b/tests/Elasticsearch/Tests/ClientBuilderTest.php index f6f7a62be..330e48aaf 100644 --- a/tests/Elasticsearch/Tests/ClientBuilderTest.php +++ b/tests/Elasticsearch/Tests/ClientBuilderTest.php @@ -296,4 +296,52 @@ public function testElasticClientMetaHeaderIsNotSentWhenDisabled() $this->assertFalse(isset($request['request']['headers']['x-elastic-client-meta'])); } } + + public function getCompatibilityHeaders() + { + return [ + ['true', true], + ['1', true], + ['false', false], + ['0', false] + ]; + } + + /** + * @dataProvider getCompatibilityHeaders + */ + public function testCompatibilityHeader($env, $compatibility) + { + putenv("ELASTIC_CLIENT_APIVERSIONING=$env"); + + $client = ClientBuilder::create() + ->build(); + + try { + $result = $client->info(); + } catch (ElasticsearchException $e) { + $request = $client->transport->getLastConnection()->getLastRequestInfo(); + if ($compatibility) { + $this->assertContains('application/vnd.elasticsearch+json;compatible-with=7', $request['request']['headers']['Content-Type']); + $this->assertContains('application/vnd.elasticsearch+json;compatible-with=7', $request['request']['headers']['Accept']); + } else { + $this->assertNotContains('application/vnd.elasticsearch+json;compatible-with=7', $request['request']['headers']['Content-Type']); + $this->assertNotContains('application/vnd.elasticsearch+json;compatible-with=7', $request['request']['headers']['Accept']); + } + } + } + + public function testCompatibilityHeaderDefaultIsOff() + { + $client = ClientBuilder::create() + ->build(); + + try { + $result = $client->info(); + } catch (ElasticsearchException $e) { + $request = $client->transport->getLastConnection()->getLastRequestInfo(); + $this->assertNotContains('application/vnd.elasticsearch+json;compatible-with=7', $request['request']['headers']['Content-Type']); + $this->assertNotContains('application/vnd.elasticsearch+json;compatible-with=7', $request['request']['headers']['Accept']); + } + } } From 1f2d2b9657159c162f6df015f56a74b58e28392d Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 19 May 2021 15:51:17 +0200 Subject: [PATCH 23/81] [7.x] [DOCS] Added the HTTP meta data section (#1143) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Added the HTTP meta data section * Update docs/http-meta-data.asciidoc Co-authored-by: István Zoltán Szabó * Update docs/http-meta-data.asciidoc Co-authored-by: István Zoltán Szabó * Update docs/http-meta-data.asciidoc Co-authored-by: István Zoltán Szabó * Update docs/http-meta-data.asciidoc Co-authored-by: István Zoltán Szabó * Update docs/http-meta-data.asciidoc Co-authored-by: István Zoltán Szabó * Update docs/http-meta-data.asciidoc Co-authored-by: István Zoltán Szabó * Update docs/http-meta-data.asciidoc Co-authored-by: István Zoltán Szabó * Update docs/http-meta-data.asciidoc Co-authored-by: István Zoltán Szabó Co-authored-by: István Zoltán Szabó --- docs/configuration.asciidoc | 3 ++ docs/http-meta-data.asciidoc | 70 ++++++++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 docs/http-meta-data.asciidoc diff --git a/docs/configuration.asciidoc b/docs/configuration.asciidoc index 567228204..69c77ac60 100644 --- a/docs/configuration.asciidoc +++ b/docs/configuration.asciidoc @@ -13,6 +13,7 @@ To learn more about JSON in PHP, read <>. * <> * <> +* <> * <> * <> * <> @@ -32,6 +33,8 @@ include::host-config.asciidoc[] include::set-retries.asciidoc[] +include::http-meta-data.asciidoc[] + include::logger.asciidoc[] include::http-handler.asciidoc[] diff --git a/docs/http-meta-data.asciidoc b/docs/http-meta-data.asciidoc new file mode 100644 index 000000000..71f72957b --- /dev/null +++ b/docs/http-meta-data.asciidoc @@ -0,0 +1,70 @@ +[[http-meta-data]] +=== HTTP Meta Data + +By default, the client sends some meta data about the HTTP connection using +custom headers. + +You can disable or enable it using the following methods: + + +==== Elastic Meta Header + +The client sends a `x-elastic-client-meta` header by default. +This header is used to collect meta data about the versions of the components +used by the client. For instance, a value of `x-elastic-client-meta` can be +`es=7.14.0-s,php=7.4.11,t=7.14.0-s,a=0,cu=7.68.0`, where each value is the +version of `es=Elasticsearch`, `t` is the transport version (same of client), +`a` is asyncronouts (`0=false` by default) and `cu=cURL`. + +If you would like to disable it you can use the `setElasticMetaHeader()` +method, as follows: + +[source,php] +---- +$client = Elasticsearch\ClientBuilder::create() + ->setElasticMetaHeader(false) + ->build(); +---- + +==== Include port number in Host header + +This is a special setting for the client that enables the port in the +Host header. This setting has been introduced to prevent issues with +HTTP proxy layers (see issue https://github.com/elastic/elasticsearch-php/issues/993[#993]). + +By default the port number is not included in the Host header. +If you want you can enable it using the `includePortInHostHeader()` function, +as follows: + +[source,php] +---- +$client = Elasticsearch\ClientBuilder::create() + ->includePortInHostHeader(true) + ->build(); +---- + +==== Send the API compatibility layer + +Starting from version 7.13, {es} supports a compatibility header in +`Content-Type` and `Accept`. The PHP client can be configured to emit the following HTTP headers: + +[source] +---- +Content-Type: application/vnd.elasticsearch+json; compatible-with=7 +Accept: application/vnd.elasticsearch+json; compatible-with=7 +---- + +which signals to {es} that the client is requesting 7.x version of request and response +bodies. This allows upgrading from 7.x to 8.x version of Elasticsearch without upgrading +everything at once. {es} should be upgraded first after the compatibility header is +configured and clients should be upgraded second. + +To enable this compatibility header, you need to create an `ELASTIC_CLIENT_APIVERSIONING` +environment variable and set it to `true` or `1`, before the `Client` class initialization. + +In PHP you can set this environment variable as follows: + +[source,php] +---- +putenv("ELASTIC_CLIENT_APIVERSIONING=true"); +---- From 0fa3935cad7aab2ccbb14203bbbd92dbcdc10bb5 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 19 May 2021 16:38:07 +0200 Subject: [PATCH 24/81] Removed symfony/yaml e doctrine/inflector --- composer.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 4986c8d72..e10fc1b8e 100644 --- a/composer.json +++ b/composer.json @@ -21,13 +21,11 @@ "require-dev": { "ext-yaml": "*", "ext-zip": "*", - "doctrine/inflector": "^1.3", "mockery/mockery": "^1.2", "phpstan/phpstan": "^0.12", "phpunit/phpunit": "^9.3", "squizlabs/php_codesniffer": "^3.4", - "symfony/finder": "~4.0", - "symfony/yaml": "~4.0" + "symfony/finder": "~4.0" }, "suggest": { "ext-curl": "*", From 3481969480fa913e4f12f81de46b26d769856fd7 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Tue, 15 Jun 2021 20:37:50 +0200 Subject: [PATCH 25/81] Updated CHANGELOG with 7.13.0 and 7.13.1 --- CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1c8ff1d6..2c56afc2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## Release 7.13.1 + +- Added port in url for trace and logger messages + [#1126](https://github.com/elastic/elasticsearch-php/pull/1126) +## Release 7.13.0 + +- (DOCS) Added the HTTP meta data section + [#1143](https://github.com/elastic/elasticsearch-php/pull/1143) +- Added support for API Compatibility Header + [#1142](https://github.com/elastic/elasticsearch-php/pull/1142) +- (DOCS) Added Helpers section to PHP book + [#1129](https://github.com/elastic/elasticsearch-php/pull/1129) +- Added the API description in phpdoc section for each endpoint + [9e05c81](https://github.com/elastic/elasticsearch-php/commit/9e05c8108b638b60cc676b6a4f4be97c7df9eb64) +- Usage of PHPUnit 9 only + migrated xml configurations + [038b5dd](https://github.com/elastic/elasticsearch-php/commit/038b5dd043dc76b20b9f5f265ea914a38d33568d) ## Release 7.12.0 - Updated the endpoints for ES 7.12 + removed cpliakas/git-wrapper From 62304ec4feb8fba60ee14dfd27a5499113fec55e Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Mon, 28 Jun 2021 12:37:01 +0200 Subject: [PATCH 26/81] Assemble command in .ci/make.sh --- .ci/make.sh | 179 ++++++++++++++++++++++++++++++++++++++++++++++++++++ .gitignore | 5 +- 2 files changed, 183 insertions(+), 1 deletion(-) create mode 100755 .ci/make.sh diff --git a/.ci/make.sh b/.ci/make.sh new file mode 100755 index 000000000..db8a784b2 --- /dev/null +++ b/.ci/make.sh @@ -0,0 +1,179 @@ +#!/usr/bin/env bash + +# ------------------------------------------------------- # +# +# Skeleton for common build entry script for all elastic +# clients. Needs to be adapted to individual client usage. +# +# Must be called: ./.ci/make.sh +# +# Version: 1.1.0 +# +# Targets: +# --------------------------- +# assemble : build client artefacts with version +# bump : bump client internals to version +# codegen : generate endpoints +# docsgen : generate documentation +# examplegen : generate the doc examples +# clean : clean workspace +# +# ------------------------------------------------------- # + +# ------------------------------------------------------- # +# Bootstrap +# ------------------------------------------------------- # + +script_path=$(dirname "$(realpath -s "$0")") +repo=$(realpath "$script_path/../") + +# shellcheck disable=SC1090 +CMD=$1 +TASK=$1 +TASK_ARGS=() +VERSION=$2 +STACK_VERSION=$VERSION +set -euo pipefail + +product="elastic/elasticsearch-php" +output_folder=".ci/output" +codegen_folder=".ci/output" +OUTPUT_DIR="$repo/${output_folder}" +REPO_BINDING="${OUTPUT_DIR}:/sln/${output_folder}" +mkdir -p "$OUTPUT_DIR" + +echo -e "\033[34;1mINFO:\033[0m PRODUCT ${product}\033[0m" +echo -e "\033[34;1mINFO:\033[0m VERSION ${STACK_VERSION}\033[0m" +echo -e "\033[34;1mINFO:\033[0m OUTPUT_DIR ${OUTPUT_DIR}\033[0m" + +# ------------------------------------------------------- # +# Parse Command +# ------------------------------------------------------- # + +case $CMD in + clean) + echo -e "\033[36;1mTARGET: clean workspace $output_folder\033[0m" + rm -rfv "$output_folder" + echo -e "\033[32;1mTARGET: clean - done.\033[0m" + exit 0 + ;; + assemble) + if [ -v $VERSION ]; then + echo -e "\033[31;1mTARGET: assemble -> missing version parameter\033[0m" + exit 1 + fi + echo -e "\033[36;1mTARGET: assemble artefact $VERSION\033[0m" + TASK=release + TASK_ARGS=("$VERSION" "$output_folder") + ;; + codegen) + if [ -v $VERSION ]; then + echo -e "\033[31;1mTARGET: codegen -> missing version parameter\033[0m" + exit 1 + fi + echo -e "\033[36;1mTARGET: codegen API v$VERSION\033[0m" + TASK=codegen + # VERSION is BRANCH here for now + TASK_ARGS=("$VERSION" "$codegen_folder") + ;; + docsgen) + if [ -v $VERSION ]; then + echo -e "\033[31;1mTARGET: docsgen -> missing version parameter\033[0m" + exit 1 + fi + echo -e "\033[36;1mTARGET: generate docs for $VERSION\033[0m" + TASK=codegen + # VERSION is BRANCH here for now + TASK_ARGS=("$VERSION" "$codegen_folder") + ;; + examplesgen) + echo -e "\033[36;1mTARGET: generate examples\033[0m" + TASK=codegen + # VERSION is BRANCH here for now + TASK_ARGS=("$VERSION" "$codegen_folder") + ;; + bump) + if [ -v $VERSION ]; then + echo -e "\033[31;1mTARGET: bump -> missing version parameter\033[0m" + exit 1 + fi + echo -e "\033[36;1mTARGET: bump to version $VERSION\033[0m" + TASK=bump + # VERSION is BRANCH here for now + TASK_ARGS=("$VERSION") + ;; + *) + echo -e "\nUsage:\n\t $CMD is not supported right now\n" + exit 1 +esac + + +# ------------------------------------------------------- # +# Build Container +# ------------------------------------------------------- # + +#echo -e "\033[34;1mINFO: building $product container\033[0m" + +#docker build --file .ci/Dockerfile --tag ${product} \ +# --build-arg USER_ID="$(id -u)" \ +# --build-arg GROUP_ID="$(id -g)" . + + +# ------------------------------------------------------- # +# Run the Container +# ------------------------------------------------------- # + +#echo -e "\033[34;1mINFO: running $product container\033[0m" + +#docker run \ +# --env "DOTNET_VERSION" \ +# --name test-runner \ +# --volume $REPO_BINDING \ +# --rm \ +# $product \ +# /bin/bash -c "./build.sh $TASK ${TASK_ARGS[*]} && chown -R $(id -u):$(id -g) ." + +# ------------------------------------------------------- # +# Post Command tasks & checks +# ------------------------------------------------------- # + +if [[ "$CMD" == "assemble" ]]; then + artefact_name="elasticsearch-php-${VERSION}" + echo -e "\033[34;1mINFO: copy artefacts\033[0m" + rsync -arv --exclude=.ci --exclude=.git --filter=':- .gitignore' "$PWD" "${output_folder}/." + + echo -e "\033[34;1mINFO: rename artefacts\033[0m" + mv -v "${output_folder}/elasticsearch-php" "${output_folder}/${artefact_name}" + + echo -e "\033[34;1mINFO: build artefacts\033[0m" + cd ./.ci/output && tar -czvf ${artefact_name}.tar.gz "${artefact_name}/." && cd - + + echo -e "\033[34;1mINFO: cleanup\033[0m" + rm -Rf "${output_folder}/${artefact_name}" + + echo -e "\033[34;1mINFO: validate artefact\033[0m" + proof=`ls ${output_folder}` + + if [ $proof == "${artefact_name}.tar.gz" ]; then + echo -e "\033[32;1mTARGET: assemble - success: $artefact_name.tar.gz\033[0m" + else + echo -e "\033[31;1mTARGET: assemble failed, empty workspace!\033[0m" + exit 1 + fi +fi + +if [[ "$CMD" == "bump" ]]; then + echo "TODO" +fi + +if [[ "$CMD" == "codegen" ]]; then + echo "TODO" +fi + +if [[ "$CMD" == "docsgen" ]]; then + echo "TODO" +fi + +if [[ "$CMD" == "examplesgen" ]]; then + echo "TODO" +fi \ No newline at end of file diff --git a/.gitignore b/.gitignore index 7b422fe68..66e90c5da 100755 --- a/.gitignore +++ b/.gitignore @@ -45,4 +45,7 @@ build tests/*-junit.xml # YAML tests -tests/Elasticsearch/Tests/Yaml \ No newline at end of file +tests/Elasticsearch/Tests/Yaml + +# Exclude .ci/make.sh artifcats +.ci/output From 3dd596db30a3b4d28871d87182624bdff14f4b2e Mon Sep 17 00:00:00 2001 From: Alexandr Bakurin Date: Tue, 29 Jun 2021 13:52:39 +0300 Subject: [PATCH 27/81] Update search iterators to send "scroll_id" inside the request body (#1134) * Update search iterators to send "scroll_id" inside the request body * Use the page hits "total" property instead of counting the hits --- .../Helper/Iterators/SearchHitIterator.php | 2 +- .../Iterators/SearchResponseIterator.php | 18 ++++++----- .../Iterators/SearchHitIteratorTest.php | 30 +++++++++++++++---- .../Iterators/SearchResponseIteratorTest.php | 24 ++++++++++----- 4 files changed, 52 insertions(+), 22 deletions(-) diff --git a/src/Elasticsearch/Helper/Iterators/SearchHitIterator.php b/src/Elasticsearch/Helper/Iterators/SearchHitIterator.php index dc7d44877..fbb3892e9 100644 --- a/src/Elasticsearch/Helper/Iterators/SearchHitIterator.php +++ b/src/Elasticsearch/Helper/Iterators/SearchHitIterator.php @@ -77,7 +77,7 @@ public function rewind(): void $this->count = 0; if (isset($current_page['hits']) && isset($current_page['hits']['total'])) { - $this->count = $current_page['hits']['total']; + $this->count = $current_page['hits']['total']['value'] ?? $current_page['hits']['total']; } $this->readPageData(); diff --git a/src/Elasticsearch/Helper/Iterators/SearchResponseIterator.php b/src/Elasticsearch/Helper/Iterators/SearchResponseIterator.php index d8fe694f1..ccb442c26 100644 --- a/src/Elasticsearch/Helper/Iterators/SearchResponseIterator.php +++ b/src/Elasticsearch/Helper/Iterators/SearchResponseIterator.php @@ -100,12 +100,14 @@ private function clearScroll(): void { if (!empty($this->scroll_id)) { $this->client->clearScroll( - array( - 'scroll_id' => $this->scroll_id, - 'client' => array( + [ + 'body' => [ + 'scroll_id' => $this->scroll_id + ], + 'client' => [ 'ignore' => 404 - ) - ) + ] + ] ); $this->scroll_id = null; } @@ -135,8 +137,10 @@ public function next(): void { $this->current_scrolled_response = $this->client->scroll( [ - 'scroll_id' => $this->scroll_id, - 'scroll' => $this->scroll_ttl + 'body' => [ + 'scroll_id' => $this->scroll_id, + 'scroll' => $this->scroll_ttl + ] ] ); $this->scroll_id = $this->current_scrolled_response['_scroll_id']; diff --git a/tests/Elasticsearch/Tests/Helper/Iterators/SearchHitIteratorTest.php b/tests/Elasticsearch/Tests/Helper/Iterators/SearchHitIteratorTest.php index 78980bead..0bff8e156 100644 --- a/tests/Elasticsearch/Tests/Helper/Iterators/SearchHitIteratorTest.php +++ b/tests/Elasticsearch/Tests/Helper/Iterators/SearchHitIteratorTest.php @@ -64,7 +64,10 @@ public function testWithHits() [ 'foo' => 'bar1' ], [ 'foo' => 'bar2' ] ], - 'total' => 3 + 'total' => [ + 'value' => 3, + 'relation' => 'eq' + ] ] ], [ @@ -74,7 +77,10 @@ public function testWithHits() [ 'foo' => 'bar1' ], [ 'foo' => 'bar2' ] ], - 'total' => 3 + 'total' => [ + 'value' => 3, + 'relation' => 'eq' + ] ] ], [ @@ -84,7 +90,10 @@ public function testWithHits() [ 'foo' => 'bar1' ], [ 'foo' => 'bar2' ] ], - 'total' => 3 + 'total' => [ + 'value' => 3, + 'relation' => 'eq' + ] ] ], [ @@ -94,7 +103,10 @@ public function testWithHits() [ 'foo' => 'bar1' ], [ 'foo' => 'bar2' ] ], - 'total' => 3 + 'total' => [ + 'value' => 3, + 'relation' => 'eq' + ] ] ], [ @@ -103,7 +115,10 @@ public function testWithHits() [ 'foo' => 'bar3' ], [ 'foo' => 'bar4' ] ], - 'total' => 2 + 'total' => [ + 'value' => 2, + 'relation' => 'eq' + ] ] ], [ @@ -112,7 +127,10 @@ public function testWithHits() [ 'foo' => 'bar3' ], [ 'foo' => 'bar4' ] ], - 'total' => 2 + 'total' => [ + 'value' => 2, + 'relation' => 'eq' + ] ] ] ); diff --git a/tests/Elasticsearch/Tests/Helper/Iterators/SearchResponseIteratorTest.php b/tests/Elasticsearch/Tests/Helper/Iterators/SearchResponseIteratorTest.php index 07a56f559..1b706dad4 100644 --- a/tests/Elasticsearch/Tests/Helper/Iterators/SearchResponseIteratorTest.php +++ b/tests/Elasticsearch/Tests/Helper/Iterators/SearchResponseIteratorTest.php @@ -100,8 +100,10 @@ public function testWithHits() ->ordered() ->with( [ - 'scroll_id' => 'scroll_id_01', - 'scroll' => '5m' + 'body' => [ + 'scroll_id' => 'scroll_id_01', + 'scroll' => '5m' + ] ] ) ->andReturn( @@ -122,8 +124,10 @@ public function testWithHits() ->ordered() ->with( [ - 'scroll_id' => 'scroll_id_02', - 'scroll' => '5m' + 'body' => [ + 'scroll_id' => 'scroll_id_02', + 'scroll' => '5m' + ] ] ) ->andReturn( @@ -144,8 +148,10 @@ public function testWithHits() ->ordered() ->with( [ - 'scroll_id' => 'scroll_id_03', - 'scroll' => '5m' + 'body' => [ + 'scroll_id' => 'scroll_id_03', + 'scroll' => '5m' + ] ] ) ->andReturn( @@ -161,8 +167,10 @@ public function testWithHits() ->never() ->with( [ - 'scroll_id' => 'scroll_id_04', - 'scroll' => '5m' + 'body' => [ + 'scroll_id' => 'scroll_id_04', + 'scroll' => '5m' + ] ] ); From 1e7ff4855560ce636694f9d48da8891e0308db74 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Tue, 6 Jul 2021 15:39:16 +0200 Subject: [PATCH 28/81] Removed phpcs for autogenerated files --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index e10fc1b8e..ff1b269a6 100644 --- a/composer.json +++ b/composer.json @@ -51,7 +51,7 @@ }, "scripts": { "phpcs": [ - "phpcs --standard=ruleset.xml --extensions=php --encoding=utf-8 --tab-width=4 -sp src", + "phpcs --standard=ruleset.xml --extensions=php --encoding=utf-8 --tab-width=4 -sp src --ignore=src/Elasticsearch/Endpoints", "phpcs --standard=ruleset.xml --extensions=php --encoding=utf-8 --tab-width=4 -sp tests --ignore=tests/Elasticsearch/Tests/Yaml" ], "phpstan": [ From 204652b690de4b476b2a0a63528ab8c236c1fbf5 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 14 Jul 2021 15:20:59 +0200 Subject: [PATCH 29/81] Updated the YAML clean up phase --- tests/Elasticsearch/Tests/Utility.php | 51 +++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/tests/Elasticsearch/Tests/Utility.php b/tests/Elasticsearch/Tests/Utility.php index 550814453..16119099e 100644 --- a/tests/Elasticsearch/Tests/Utility.php +++ b/tests/Elasticsearch/Tests/Utility.php @@ -122,6 +122,11 @@ private static function wipeCluster(Client $client): void self::deleteAllSLMPolicies($client); } + // Clean up searchable snapshots indices before deleting snapshots and repositories + if (getenv('TEST_SUITE') === 'platinum' && version_compare(self::getVersion($client), '7.7.99') > 0) { + self::wipeSearchableSnapshotsIndices($client); + } + self::wipeSnapshots($client); self::wipeDataStreams($client); self::wipeAllIndices($client); @@ -154,6 +159,8 @@ private static function wipeCluster(Client $client): void self::deleteAllAutoFollowPatterns($client); self::deleteAllTasks($client); } + + self::deleteAllNodeShutdownMetadata($client); } /** @@ -491,6 +498,7 @@ private static function isXPackTemplate(string $name): bool case ".deprecation-indexing-template": case "logstash-index-template": case "security-index-template": + case "data-streams-mappings": return true; } return false; @@ -562,6 +570,49 @@ private static function deleteAllTasks(Client $client): void } } + /** + * If any nodes are registered for shutdown, removes their metadata + * + * @see https://github.com/elastic/elasticsearch/commit/cea054f7dae215475ea0499bc7060ca7ec05382f + */ + private static function deleteAllNodeShutdownMetadata(Client $client) + { + $nodes = $client->shutdown()->getNode(); + if (isset($nodes['_nodes']) && isset($nodes['cluster_name'])) { + // If the response contains these two keys, the feature flag isn't enabled on this cluster, so skip out now. + // We can't check the system property directly because it only gets set for the cluster under test's JVM, not for the test + // runner's JVM. + return; + } + foreach ($nodes['nodes'] as $node) { + $client->shutdown()->deleteNode($node['node_id']); + } + } + + /** + * Delete searchable snapshots index + * + * @see https://github.com/elastic/elasticsearch/commit/4927b6917deca6793776cf0c839eadf5ea512b4a + */ + private static function wipeSearchableSnapshotsIndices(Client $client) + { + $indices = $client->cluster()->state([ + 'metric' => 'metadata', + 'filter_path' => 'metadata.indices.*.settings.index.store.snapshot' + ]); + if (!isset($indices['metadata']['indices'])) { + return; + } + foreach ($indices['metadata']['indices'] as $index => $value) { + $client->indices()->delete([ + 'index' => $index, + 'client' => [ + 'ignore' => 404 + ] + ]); + } + } + /** * Wait for Cluster state updates to finish * From 8f06c52f513828ee1ee7e793905d9b6d536dec47 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 14 Jul 2021 15:19:47 +0200 Subject: [PATCH 30/81] Added the ingest.geoip.downloader.enabled=false for ES --- .ci/run-elasticsearch.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.ci/run-elasticsearch.sh b/.ci/run-elasticsearch.sh index 4d127cd5c..2b613158b 100755 --- a/.ci/run-elasticsearch.sh +++ b/.ci/run-elasticsearch.sh @@ -39,6 +39,7 @@ environment=($(cat <<-END --env node.attr.testattr=test --env path.repo=/tmp --env repositories.url.allowed_urls=http://snapshot.test* + --env ingest.geoip.downloader.enabled=false --env action.destructive_requires_name=false --env ELASTIC_PASSWORD=$elastic_password --env xpack.license.self_generated.type=trial From 9c97c0c8cd213863e688a5a29b5c41cc0fc3e16d Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 14 Jul 2021 15:21:25 +0200 Subject: [PATCH 31/81] Added the ingest.geoip.downloader.enabled=false for ES in util --- util/run_es_docker.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/util/run_es_docker.sh b/util/run_es_docker.sh index b65b82b75..2c24f45ef 100755 --- a/util/run_es_docker.sh +++ b/util/run_es_docker.sh @@ -46,6 +46,7 @@ else --env "node.attr.testattr=test" \ --env "path.repo=/tmp" \ --env "repositories.url.allowed_urls=http://snapshot.*" \ + --env "ingest.geoip.downloader.enabled=false" \ --env "discovery.type=single-node" \ --env "ES_JAVA_OPTS=-Xms1g -Xmx1g" \ --env "action.destructive_requires_name=false" \ From c807f66a2cda896d670db3ef2c136ded1901b13d Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 15 Jul 2021 14:27:00 +0200 Subject: [PATCH 32/81] Updated Endpoints to 7.15.0-SNAPSHOT --- src/Elasticsearch/Client.php | 216 +++++++++++++++++- .../Endpoints/AsyncSearch/Delete.php | 2 +- .../Endpoints/AsyncSearch/Get.php | 2 +- .../Endpoints/AsyncSearch/Status.php | 2 +- .../Endpoints/AsyncSearch/Submit.php | 2 +- .../Autoscaling/DeleteAutoscalingPolicy.php | 2 +- .../Autoscaling/GetAutoscalingCapacity.php | 2 +- .../Autoscaling/GetAutoscalingPolicy.php | 2 +- .../Autoscaling/PutAutoscalingPolicy.php | 2 +- src/Elasticsearch/Endpoints/Bulk.php | 2 +- src/Elasticsearch/Endpoints/Cat/Aliases.php | 2 +- .../Endpoints/Cat/Allocation.php | 2 +- src/Elasticsearch/Endpoints/Cat/Count.php | 2 +- src/Elasticsearch/Endpoints/Cat/Fielddata.php | 2 +- src/Elasticsearch/Endpoints/Cat/Health.php | 2 +- src/Elasticsearch/Endpoints/Cat/Help.php | 2 +- src/Elasticsearch/Endpoints/Cat/Indices.php | 2 +- src/Elasticsearch/Endpoints/Cat/Master.php | 2 +- .../Endpoints/Cat/MlDataFrameAnalytics.php | 2 +- .../Endpoints/Cat/MlDatafeeds.php | 2 +- src/Elasticsearch/Endpoints/Cat/MlJobs.php | 2 +- .../Endpoints/Cat/MlTrainedModels.php | 2 +- src/Elasticsearch/Endpoints/Cat/NodeAttrs.php | 2 +- src/Elasticsearch/Endpoints/Cat/Nodes.php | 2 +- .../Endpoints/Cat/PendingTasks.php | 2 +- src/Elasticsearch/Endpoints/Cat/Plugins.php | 2 +- src/Elasticsearch/Endpoints/Cat/Recovery.php | 2 +- .../Endpoints/Cat/Repositories.php | 2 +- src/Elasticsearch/Endpoints/Cat/Segments.php | 2 +- src/Elasticsearch/Endpoints/Cat/Shards.php | 2 +- src/Elasticsearch/Endpoints/Cat/Snapshots.php | 2 +- src/Elasticsearch/Endpoints/Cat/Tasks.php | 2 +- src/Elasticsearch/Endpoints/Cat/Templates.php | 2 +- .../Endpoints/Cat/ThreadPool.php | 2 +- .../Endpoints/Cat/Transforms.php | 2 +- .../Endpoints/Ccr/DeleteAutoFollowPattern.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Follow.php | 2 +- .../Endpoints/Ccr/FollowInfo.php | 2 +- .../Endpoints/Ccr/FollowStats.php | 2 +- .../Endpoints/Ccr/ForgetFollower.php | 2 +- .../Endpoints/Ccr/GetAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/PauseAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/PauseFollow.php | 2 +- .../Endpoints/Ccr/PutAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/ResumeAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/ResumeFollow.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Stats.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Unfollow.php | 2 +- src/Elasticsearch/Endpoints/ClearScroll.php | 2 +- .../Endpoints/ClosePointInTime.php | 2 +- .../Endpoints/Cluster/AllocationExplain.php | 2 +- .../Cluster/DeleteComponentTemplate.php | 2 +- .../Cluster/DeleteVotingConfigExclusions.php | 2 +- .../Cluster/ExistsComponentTemplate.php | 2 +- .../Cluster/GetComponentTemplate.php | 2 +- .../Endpoints/Cluster/GetSettings.php | 2 +- .../Endpoints/Cluster/Health.php | 2 +- .../Endpoints/Cluster/PendingTasks.php | 2 +- .../Cluster/PostVotingConfigExclusions.php | 2 +- .../Cluster/PutComponentTemplate.php | 2 +- .../Endpoints/Cluster/PutSettings.php | 2 +- .../Endpoints/Cluster/RemoteInfo.php | 2 +- .../Endpoints/Cluster/Reroute.php | 2 +- src/Elasticsearch/Endpoints/Cluster/State.php | 2 +- src/Elasticsearch/Endpoints/Cluster/Stats.php | 2 +- src/Elasticsearch/Endpoints/Count.php | 2 +- src/Elasticsearch/Endpoints/Create.php | 2 +- .../DanglingIndices/DeleteDanglingIndex.php | 2 +- .../DanglingIndices/ImportDanglingIndex.php | 2 +- .../DanglingIndices/ListDanglingIndices.php | 2 +- .../DeleteTransform.php | 2 +- .../GetTransform.php | 2 +- .../GetTransformStats.php | 2 +- .../PreviewTransform.php | 2 +- .../PutTransform.php | 2 +- .../StartTransform.php | 2 +- .../StopTransform.php | 2 +- .../UpdateTransform.php | 2 +- src/Elasticsearch/Endpoints/Delete.php | 2 +- src/Elasticsearch/Endpoints/DeleteByQuery.php | 2 +- .../Endpoints/DeleteByQueryRethrottle.php | 2 +- src/Elasticsearch/Endpoints/DeleteScript.php | 2 +- .../Endpoints/Enrich/DeletePolicy.php | 2 +- .../Endpoints/Enrich/ExecutePolicy.php | 2 +- .../Endpoints/Enrich/GetPolicy.php | 2 +- .../Endpoints/Enrich/PutPolicy.php | 2 +- src/Elasticsearch/Endpoints/Enrich/Stats.php | 2 +- src/Elasticsearch/Endpoints/Eql/Delete.php | 2 +- src/Elasticsearch/Endpoints/Eql/Get.php | 2 +- src/Elasticsearch/Endpoints/Eql/GetStatus.php | 2 +- src/Elasticsearch/Endpoints/Eql/Search.php | 2 +- src/Elasticsearch/Endpoints/Exists.php | 2 +- src/Elasticsearch/Endpoints/ExistsSource.php | 2 +- src/Elasticsearch/Endpoints/Explain.php | 2 +- .../Endpoints/Features/GetFeatures.php | 2 +- .../Endpoints/Features/ResetFeatures.php | 2 +- src/Elasticsearch/Endpoints/FieldCaps.php | 2 +- .../Endpoints/Fleet/GlobalCheckpoints.php | 2 +- src/Elasticsearch/Endpoints/Get.php | 2 +- src/Elasticsearch/Endpoints/GetScript.php | 2 +- .../Endpoints/GetScriptContext.php | 2 +- .../Endpoints/GetScriptLanguages.php | 2 +- src/Elasticsearch/Endpoints/GetSource.php | 2 +- src/Elasticsearch/Endpoints/Graph/Explore.php | 2 +- .../Endpoints/Ilm/DeleteLifecycle.php | 2 +- .../Endpoints/Ilm/ExplainLifecycle.php | 2 +- .../Endpoints/Ilm/GetLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Ilm/GetStatus.php | 2 +- .../Endpoints/Ilm/MigrateToDataTiers.php | 58 +++++ .../Endpoints/Ilm/MoveToStep.php | 2 +- .../Endpoints/Ilm/PutLifecycle.php | 2 +- .../Endpoints/Ilm/RemovePolicy.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Retry.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Start.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Stop.php | 2 +- src/Elasticsearch/Endpoints/Index.php | 2 +- .../Endpoints/Indices/AddBlock.php | 2 +- .../Endpoints/Indices/Analyze.php | 2 +- .../Endpoints/Indices/ClearCache.php | 2 +- .../Endpoints/Indices/CloneIndices.php | 2 +- src/Elasticsearch/Endpoints/Indices/Close.php | 2 +- .../Endpoints/Indices/Create.php | 2 +- .../Endpoints/Indices/CreateDataStream.php | 2 +- .../Endpoints/Indices/DataStreamsStats.php | 2 +- .../Endpoints/Indices/Delete.php | 2 +- .../Endpoints/Indices/DeleteAlias.php | 2 +- .../Endpoints/Indices/DeleteDataStream.php | 2 +- .../Endpoints/Indices/DeleteIndexTemplate.php | 2 +- .../Endpoints/Indices/DeleteTemplate.php | 2 +- .../Endpoints/Indices/DiskUsage.php | 57 +++++ .../Endpoints/Indices/Exists.php | 2 +- .../Endpoints/Indices/ExistsAlias.php | 2 +- .../Endpoints/Indices/ExistsIndexTemplate.php | 2 +- .../Endpoints/Indices/ExistsTemplate.php | 2 +- .../Endpoints/Indices/ExistsType.php | 2 +- .../Endpoints/Indices/FieldUsageStats.php | 56 +++++ src/Elasticsearch/Endpoints/Indices/Flush.php | 2 +- .../Endpoints/Indices/FlushSynced.php | 2 +- .../Endpoints/Indices/ForceMerge.php | 2 +- .../Endpoints/Indices/Freeze.php | 2 +- src/Elasticsearch/Endpoints/Indices/Get.php | 2 +- .../Endpoints/Indices/GetAlias.php | 2 +- .../Endpoints/Indices/GetDataStream.php | 2 +- .../Endpoints/Indices/GetFieldMapping.php | 2 +- .../Endpoints/Indices/GetIndexTemplate.php | 2 +- .../Endpoints/Indices/GetMapping.php | 2 +- .../Endpoints/Indices/GetSettings.php | 2 +- .../Endpoints/Indices/GetTemplate.php | 2 +- .../Endpoints/Indices/GetUpgrade.php | 2 +- .../Endpoints/Indices/MigrateToDataStream.php | 2 +- src/Elasticsearch/Endpoints/Indices/Open.php | 2 +- .../Endpoints/Indices/PromoteDataStream.php | 2 +- .../Endpoints/Indices/PutAlias.php | 2 +- .../Endpoints/Indices/PutIndexTemplate.php | 2 +- .../Endpoints/Indices/PutMapping.php | 2 +- .../Endpoints/Indices/PutSettings.php | 2 +- .../Endpoints/Indices/PutTemplate.php | 2 +- .../Endpoints/Indices/Recovery.php | 2 +- .../Endpoints/Indices/Refresh.php | 2 +- .../Indices/ReloadSearchAnalyzers.php | 2 +- .../Endpoints/Indices/ResolveIndex.php | 2 +- .../Endpoints/Indices/Rollover.php | 2 +- .../Endpoints/Indices/Segments.php | 2 +- .../Endpoints/Indices/ShardStores.php | 2 +- .../Endpoints/Indices/Shrink.php | 2 +- .../Indices/SimulateIndexTemplate.php | 2 +- .../Endpoints/Indices/SimulateTemplate.php | 2 +- src/Elasticsearch/Endpoints/Indices/Split.php | 2 +- src/Elasticsearch/Endpoints/Indices/Stats.php | 2 +- .../Endpoints/Indices/Unfreeze.php | 2 +- .../Endpoints/Indices/UpdateAliases.php | 2 +- .../Endpoints/Indices/Upgrade.php | 2 +- .../Endpoints/Indices/ValidateQuery.php | 2 +- src/Elasticsearch/Endpoints/Info.php | 2 +- .../Endpoints/Ingest/DeletePipeline.php | 2 +- .../Endpoints/Ingest/GeoIpStats.php | 2 +- .../Endpoints/Ingest/GetPipeline.php | 2 +- .../Endpoints/Ingest/ProcessorGrok.php | 2 +- .../Endpoints/Ingest/PutPipeline.php | 2 +- .../Endpoints/Ingest/Simulate.php | 2 +- .../Endpoints/License/Delete.php | 2 +- src/Elasticsearch/Endpoints/License/Get.php | 2 +- .../Endpoints/License/GetBasicStatus.php | 2 +- .../Endpoints/License/GetTrialStatus.php | 2 +- src/Elasticsearch/Endpoints/License/Post.php | 2 +- .../Endpoints/License/PostStartBasic.php | 2 +- .../Endpoints/License/PostStartTrial.php | 2 +- .../Endpoints/Logstash/DeletePipeline.php | 2 +- .../Endpoints/Logstash/GetPipeline.php | 2 +- .../Endpoints/Logstash/PutPipeline.php | 2 +- src/Elasticsearch/Endpoints/MTermVectors.php | 2 +- src/Elasticsearch/Endpoints/Mget.php | 2 +- .../Endpoints/Migration/Deprecations.php | 2 +- src/Elasticsearch/Endpoints/Ml/CloseJob.php | 2 +- .../Endpoints/Ml/DeleteCalendar.php | 2 +- .../Endpoints/Ml/DeleteCalendarEvent.php | 2 +- .../Endpoints/Ml/DeleteCalendarJob.php | 2 +- .../Endpoints/Ml/DeleteDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/DeleteDatafeed.php | 2 +- .../Endpoints/Ml/DeleteExpiredData.php | 2 +- .../Endpoints/Ml/DeleteFilter.php | 2 +- .../Endpoints/Ml/DeleteForecast.php | 2 +- src/Elasticsearch/Endpoints/Ml/DeleteJob.php | 2 +- .../Endpoints/Ml/DeleteModelSnapshot.php | 2 +- .../Endpoints/Ml/DeleteTrainedModel.php | 2 +- .../Endpoints/Ml/DeleteTrainedModelAlias.php | 2 +- .../Endpoints/Ml/EstimateModelMemory.php | 2 +- .../Endpoints/Ml/EvaluateDataFrame.php | 2 +- .../Ml/ExplainDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/FindFileStructure.php | 2 +- src/Elasticsearch/Endpoints/Ml/FlushJob.php | 2 +- src/Elasticsearch/Endpoints/Ml/Forecast.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetBuckets.php | 2 +- .../Endpoints/Ml/GetCalendarEvents.php | 2 +- .../Endpoints/Ml/GetCalendars.php | 2 +- .../Endpoints/Ml/GetCategories.php | 2 +- .../Endpoints/Ml/GetDataFrameAnalytics.php | 2 +- .../Ml/GetDataFrameAnalyticsStats.php | 2 +- .../Endpoints/Ml/GetDatafeedStats.php | 2 +- .../Endpoints/Ml/GetDatafeeds.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetFilters.php | 2 +- .../Endpoints/Ml/GetInfluencers.php | 2 +- .../Endpoints/Ml/GetJobStats.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetJobs.php | 2 +- .../Endpoints/Ml/GetModelSnapshots.php | 2 +- .../Endpoints/Ml/GetOverallBuckets.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetRecords.php | 2 +- .../Endpoints/Ml/GetTrainedModels.php | 2 +- .../Endpoints/Ml/GetTrainedModelsStats.php | 2 +- src/Elasticsearch/Endpoints/Ml/Info.php | 2 +- src/Elasticsearch/Endpoints/Ml/OpenJob.php | 2 +- .../Endpoints/Ml/PostCalendarEvents.php | 2 +- src/Elasticsearch/Endpoints/Ml/PostData.php | 3 +- .../Ml/PreviewDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/PreviewDatafeed.php | 2 +- .../Endpoints/Ml/PutCalendar.php | 2 +- .../Endpoints/Ml/PutCalendarJob.php | 2 +- .../Endpoints/Ml/PutDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/PutDatafeed.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutFilter.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutJob.php | 9 +- .../Endpoints/Ml/PutTrainedModel.php | 2 +- .../Endpoints/Ml/PutTrainedModelAlias.php | 2 +- src/Elasticsearch/Endpoints/Ml/ResetJob.php | 64 ++++++ .../Endpoints/Ml/RevertModelSnapshot.php | 2 +- .../Endpoints/Ml/SetUpgradeMode.php | 2 +- .../Endpoints/Ml/StartDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/StartDatafeed.php | 2 +- .../Endpoints/Ml/StopDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/StopDatafeed.php | 2 +- .../Endpoints/Ml/UpdateDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/UpdateDatafeed.php | 2 +- .../Endpoints/Ml/UpdateFilter.php | 2 +- src/Elasticsearch/Endpoints/Ml/UpdateJob.php | 2 +- .../Endpoints/Ml/UpdateModelSnapshot.php | 2 +- .../Endpoints/Ml/UpgradeJobSnapshot.php | 2 +- src/Elasticsearch/Endpoints/Ml/Validate.php | 2 +- .../Endpoints/Ml/ValidateDetector.php | 2 +- .../Endpoints/Monitoring/Bulk.php | 2 +- src/Elasticsearch/Endpoints/Msearch.php | 2 +- .../Endpoints/MsearchTemplate.php | 2 +- .../Endpoints/Nodes/HotThreads.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Info.php | 2 +- .../Endpoints/Nodes/ReloadSecureSettings.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Stats.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Usage.php | 2 +- .../Endpoints/OpenPointInTime.php | 2 +- src/Elasticsearch/Endpoints/Ping.php | 2 +- src/Elasticsearch/Endpoints/PutScript.php | 2 +- src/Elasticsearch/Endpoints/RankEval.php | 2 +- src/Elasticsearch/Endpoints/Reindex.php | 2 +- .../Endpoints/ReindexRethrottle.php | 2 +- .../Endpoints/RenderSearchTemplate.php | 2 +- .../Endpoints/Rollup/DeleteJob.php | 2 +- .../Endpoints/Rollup/GetJobs.php | 2 +- .../Endpoints/Rollup/GetRollupCaps.php | 2 +- .../Endpoints/Rollup/GetRollupIndexCaps.php | 2 +- src/Elasticsearch/Endpoints/Rollup/PutJob.php | 2 +- src/Elasticsearch/Endpoints/Rollup/Rollup.php | 2 +- .../Endpoints/Rollup/RollupSearch.php | 2 +- .../Endpoints/Rollup/StartJob.php | 2 +- .../Endpoints/Rollup/StopJob.php | 2 +- .../Endpoints/ScriptsPainlessExecute.php | 2 +- src/Elasticsearch/Endpoints/Scroll.php | 2 +- src/Elasticsearch/Endpoints/Search.php | 2 +- src/Elasticsearch/Endpoints/SearchShards.php | 2 +- .../Endpoints/SearchTemplate.php | 2 +- .../SearchableSnapshots/CacheStats.php | 2 +- .../SearchableSnapshots/ClearCache.php | 2 +- .../Endpoints/SearchableSnapshots/Mount.php | 2 +- .../SearchableSnapshots/RepositoryStats.php | 2 +- .../Endpoints/SearchableSnapshots/Stats.php | 2 +- .../Endpoints/Security/Authenticate.php | 2 +- .../Endpoints/Security/ChangePassword.php | 2 +- .../Endpoints/Security/ClearApiKeyCache.php | 2 +- .../Security/ClearCachedPrivileges.php | 2 +- .../Endpoints/Security/ClearCachedRealms.php | 2 +- .../Endpoints/Security/ClearCachedRoles.php | 2 +- .../Security/ClearCachedServiceTokens.php | 2 +- .../Endpoints/Security/CreateApiKey.php | 2 +- .../Endpoints/Security/CreateServiceToken.php | 2 +- .../Endpoints/Security/DeletePrivileges.php | 2 +- .../Endpoints/Security/DeleteRole.php | 2 +- .../Endpoints/Security/DeleteRoleMapping.php | 2 +- .../Endpoints/Security/DeleteServiceToken.php | 2 +- .../Endpoints/Security/DeleteUser.php | 2 +- .../Endpoints/Security/DisableUser.php | 2 +- .../Endpoints/Security/EnableUser.php | 2 +- .../Endpoints/Security/GetApiKey.php | 2 +- .../Security/GetBuiltinPrivileges.php | 2 +- .../Endpoints/Security/GetPrivileges.php | 2 +- .../Endpoints/Security/GetRole.php | 2 +- .../Endpoints/Security/GetRoleMapping.php | 2 +- .../Endpoints/Security/GetServiceAccounts.php | 2 +- .../Security/GetServiceCredentials.php | 2 +- .../Endpoints/Security/GetToken.php | 2 +- .../Endpoints/Security/GetUser.php | 2 +- .../Endpoints/Security/GetUserPrivileges.php | 2 +- .../Endpoints/Security/GrantApiKey.php | 2 +- .../Endpoints/Security/HasPrivileges.php | 2 +- .../Endpoints/Security/InvalidateApiKey.php | 2 +- .../Endpoints/Security/InvalidateToken.php | 2 +- .../Endpoints/Security/PutPrivileges.php | 2 +- .../Endpoints/Security/PutRole.php | 2 +- .../Endpoints/Security/PutRoleMapping.php | 2 +- .../Endpoints/Security/PutUser.php | 2 +- .../Endpoints/Security/SamlAuthenticate.php | 56 +++++ .../Endpoints/Security/SamlCompleteLogout.php | 56 +++++ .../Endpoints/Security/SamlInvalidate.php | 56 +++++ .../Endpoints/Security/SamlLogout.php | 56 +++++ .../Security/SamlPrepareAuthentication.php | 56 +++++ .../Security/SamlServiceProviderMetadata.php | 62 +++++ .../Endpoints/Shutdown/DeleteNode.php | 2 +- .../Endpoints/Shutdown/GetNode.php | 2 +- .../Endpoints/Shutdown/PutNode.php | 2 +- .../Endpoints/Slm/DeleteLifecycle.php | 2 +- .../Endpoints/Slm/ExecuteLifecycle.php | 2 +- .../Endpoints/Slm/ExecuteRetention.php | 2 +- .../Endpoints/Slm/GetLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Slm/GetStats.php | 2 +- src/Elasticsearch/Endpoints/Slm/GetStatus.php | 2 +- .../Endpoints/Slm/PutLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Slm/Start.php | 2 +- src/Elasticsearch/Endpoints/Slm/Stop.php | 2 +- .../Endpoints/Snapshot/CleanupRepository.php | 2 +- .../Endpoints/Snapshot/CloneSnapshot.php | 2 +- .../Endpoints/Snapshot/Create.php | 2 +- .../Endpoints/Snapshot/CreateRepository.php | 2 +- .../Endpoints/Snapshot/Delete.php | 2 +- .../Endpoints/Snapshot/DeleteRepository.php | 2 +- src/Elasticsearch/Endpoints/Snapshot/Get.php | 3 +- .../Endpoints/Snapshot/GetRepository.php | 2 +- .../Endpoints/Snapshot/RepositoryAnalyze.php | 74 ++++++ .../Endpoints/Snapshot/Restore.php | 2 +- .../Endpoints/Snapshot/Status.php | 2 +- .../Endpoints/Snapshot/VerifyRepository.php | 2 +- .../Endpoints/Sql/ClearCursor.php | 2 +- .../Endpoints/Sql/DeleteAsync.php | 51 +++++ src/Elasticsearch/Endpoints/Sql/GetAsync.php | 56 +++++ .../Endpoints/Sql/GetAsyncStatus.php | 51 +++++ src/Elasticsearch/Endpoints/Sql/Query.php | 2 +- src/Elasticsearch/Endpoints/Sql/Translate.php | 2 +- .../Endpoints/Ssl/Certificates.php | 2 +- src/Elasticsearch/Endpoints/Tasks/Cancel.php | 2 +- src/Elasticsearch/Endpoints/Tasks/Get.php | 2 +- .../Endpoints/Tasks/ListTasks.php | 2 +- src/Elasticsearch/Endpoints/TermVectors.php | 2 +- src/Elasticsearch/Endpoints/TermsEnum.php | 63 +++++ .../Endpoints/TextStructure/FindStructure.php | 2 +- .../Endpoints/Transform/DeleteTransform.php | 2 +- .../Endpoints/Transform/GetTransform.php | 2 +- .../Endpoints/Transform/GetTransformStats.php | 2 +- .../Endpoints/Transform/PreviewTransform.php | 2 +- .../Endpoints/Transform/PutTransform.php | 2 +- .../Endpoints/Transform/StartTransform.php | 2 +- .../Endpoints/Transform/StopTransform.php | 2 +- .../Endpoints/Transform/UpdateTransform.php | 2 +- src/Elasticsearch/Endpoints/Update.php | 2 +- src/Elasticsearch/Endpoints/UpdateByQuery.php | 2 +- .../Endpoints/UpdateByQueryRethrottle.php | 2 +- .../Endpoints/Watcher/AckWatch.php | 2 +- .../Endpoints/Watcher/ActivateWatch.php | 2 +- .../Endpoints/Watcher/DeactivateWatch.php | 2 +- .../Endpoints/Watcher/DeleteWatch.php | 2 +- .../Endpoints/Watcher/ExecuteWatch.php | 2 +- .../Endpoints/Watcher/GetWatch.php | 2 +- .../Endpoints/Watcher/PutWatch.php | 2 +- .../Endpoints/Watcher/QueryWatches.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Start.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Stats.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Stop.php | 2 +- src/Elasticsearch/Endpoints/Xpack/Info.php | 2 +- src/Elasticsearch/Endpoints/Xpack/Usage.php | 2 +- .../Namespaces/AsyncSearchNamespace.php | 10 +- .../Namespaces/AutoscalingNamespace.php | 16 +- src/Elasticsearch/Namespaces/CatNamespace.php | 52 ++++- src/Elasticsearch/Namespaces/CcrNamespace.php | 34 ++- .../Namespaces/ClusterNamespace.php | 32 ++- .../Namespaces/DanglingIndicesNamespace.php | 8 +- .../DataFrameTransformDeprecatedNamespace.php | 28 ++- .../Namespaces/EnrichNamespace.php | 18 +- src/Elasticsearch/Namespaces/EqlNamespace.php | 10 +- .../Namespaces/FeaturesNamespace.php | 15 +- .../Namespaces/FleetNamespace.php | 4 +- .../Namespaces/GraphNamespace.php | 4 +- src/Elasticsearch/Namespaces/IlmNamespace.php | 43 +++- .../Namespaces/IndicesNamespace.php | 167 +++++++++++++- .../Namespaces/IngestNamespace.php | 20 +- .../Namespaces/LicenseNamespace.php | 22 +- .../Namespaces/LogstashNamespace.php | 8 +- .../Namespaces/MigrationNamespace.php | 4 +- src/Elasticsearch/Namespaces/MlNamespace.php | 172 +++++++++++++- .../Namespaces/MonitoringNamespace.php | 4 +- .../Namespaces/NodesNamespace.php | 12 +- .../Namespaces/RollupNamespace.php | 25 +- .../SearchableSnapshotsNamespace.php | 12 +- .../Namespaces/SecurityNamespace.php | 199 +++++++++++++++- .../Namespaces/ShutdownNamespace.php | 8 +- src/Elasticsearch/Namespaces/SlmNamespace.php | 20 +- .../Namespaces/SnapshotNamespace.php | 56 ++++- src/Elasticsearch/Namespaces/SqlNamespace.php | 79 ++++++- src/Elasticsearch/Namespaces/SslNamespace.php | 4 +- .../Namespaces/TasksNamespace.php | 8 +- .../Namespaces/TextStructureNamespace.php | 4 +- .../Namespaces/TransformNamespace.php | 25 +- .../Namespaces/WatcherNamespace.php | 24 +- .../Namespaces/XpackNamespace.php | 6 +- 427 files changed, 2585 insertions(+), 419 deletions(-) create mode 100644 src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php create mode 100644 src/Elasticsearch/Endpoints/Indices/DiskUsage.php create mode 100644 src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php create mode 100644 src/Elasticsearch/Endpoints/Ml/ResetJob.php create mode 100644 src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php create mode 100644 src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php create mode 100644 src/Elasticsearch/Endpoints/Security/SamlInvalidate.php create mode 100644 src/Elasticsearch/Endpoints/Security/SamlLogout.php create mode 100644 src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php create mode 100644 src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php create mode 100644 src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php create mode 100644 src/Elasticsearch/Endpoints/Sql/DeleteAsync.php create mode 100644 src/Elasticsearch/Endpoints/Sql/GetAsync.php create mode 100644 src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php create mode 100644 src/Elasticsearch/Endpoints/TermsEnum.php diff --git a/src/Elasticsearch/Client.php b/src/Elasticsearch/Client.php index a9f2351a0..88b6784c6 100644 --- a/src/Elasticsearch/Client.php +++ b/src/Elasticsearch/Client.php @@ -65,11 +65,11 @@ * Class Client * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Client { - const VERSION = '7.14.0-SNAPSHOT'; + const VERSION = '7.15.0-SNAPSHOT'; /** * @var Transport @@ -312,6 +312,8 @@ public function __construct(Transport $transport, callable $endpoint, array $reg } /** + * Allows to perform multiple index/update/delete operations in a single request. + * * $params['index'] = (string) Default index for items which don't provide one * $params['type'] = DEPRECATED (string) Default document type for items which don't provide one * $params['wait_for_active_shards'] = (string) Sets the number of shard copies that must be active before proceeding with the bulk operation. Defaults to 1, meaning the primary shard only. Set to `all` for all shard copies, otherwise set to any non-negative value less than or equal to the total number of copies for the shard (number of replicas + 1) @@ -345,6 +347,8 @@ public function bulk(array $params = []) return $this->performRequest($endpoint); } /** + * Explicitly clears the search context for a scroll. + * * $params['scroll_id'] = DEPRECATED (list) A comma-separated list of scroll IDs to clear * $params['body'] = (array) A comma-separated list of scroll IDs to clear if none was specified via the scroll_id parameter * @@ -366,6 +370,8 @@ public function clearScroll(array $params = []) return $this->performRequest($endpoint); } /** + * Close a point in time + * * $params['body'] = (array) a point-in-time id to close * * @param array $params Associative array of parameters @@ -384,6 +390,8 @@ public function closePointInTime(array $params = []) return $this->performRequest($endpoint); } /** + * Returns number of documents matching a query. + * * $params['index'] = (list) A comma-separated list of indices to restrict the results * $params['type'] = DEPRECATED (list) A comma-separated list of types to restrict the results * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) @@ -422,6 +430,8 @@ public function count(array $params = []) return $this->performRequest($endpoint); } /** + * Creates a new document in the index.Returns a 409 response when a document with a same ID already exists in the index. + * * $params['id'] = (string) Document ID (Required) * $params['index'] = (string) The name of the index (Required) * $params['type'] = DEPRECATED (string) The type of the document @@ -456,6 +466,8 @@ public function create(array $params = []) return $this->performRequest($endpoint); } /** + * Removes a document from the index. + * * $params['id'] = (string) The document ID (Required) * $params['index'] = (string) The name of the index (Required) * $params['type'] = DEPRECATED (string) The type of the document @@ -488,6 +500,8 @@ public function delete(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes documents matching the provided query. + * * $params['index'] = (list) A comma-separated list of index names to search; use `_all` or empty string to perform the operation on all indices (Required) * $params['type'] = DEPRECATED (list) A comma-separated list of document types to search; leave empty to perform the operation on all types * $params['analyzer'] = (string) The analyzer to use for the query string @@ -545,6 +559,8 @@ public function deleteByQuery(array $params = []) return $this->performRequest($endpoint); } /** + * Changes the number of requests per second for a particular Delete By Query operation. + * * $params['task_id'] = (string) The task id to rethrottle * $params['requests_per_second'] = (number) The throttle to set on this request in floating sub-requests per second. -1 means set no throttle. (Required) * @@ -564,6 +580,8 @@ public function deleteByQueryRethrottle(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes a script. + * * $params['id'] = (string) Script ID * $params['timeout'] = (time) Explicit operation timeout * $params['master_timeout'] = (time) Specify timeout for connection to master @@ -584,6 +602,8 @@ public function deleteScript(array $params = []) return $this->performRequest($endpoint); } /** + * Returns information about whether a document exists in an index. + * * $params['id'] = (string) The document ID (Required) * $params['index'] = (string) The name of the index (Required) * $params['type'] = DEPRECATED (string) The type of the document (use `_all` to fetch the first document matching the ID across all types) @@ -621,6 +641,8 @@ public function exists(array $params = []): bool return BooleanRequestWrapper::performRequest($endpoint, $this->transport); } /** + * Returns information about whether a document source exists in an index. + * * $params['id'] = (string) The document ID (Required) * $params['index'] = (string) The name of the index (Required) * $params['type'] = DEPRECATED (string) The type of the document; deprecated and optional starting with 7.0 @@ -657,6 +679,8 @@ public function existsSource(array $params = []): bool return BooleanRequestWrapper::performRequest($endpoint, $this->transport); } /** + * Returns information about why a specific matches (or doesn't match) a query. + * * $params['id'] = (string) The document ID (Required) * $params['index'] = (string) The name of the index (Required) * $params['type'] = DEPRECATED (string) The type of the document @@ -696,6 +720,8 @@ public function explain(array $params = []) return $this->performRequest($endpoint); } /** + * Returns the information about the capabilities of fields among multiple indices. + * * $params['index'] = (list) A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices * $params['fields'] = (list) A comma-separated list of field names * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) @@ -722,6 +748,8 @@ public function fieldCaps(array $params = []) return $this->performRequest($endpoint); } /** + * Returns a document. + * * $params['id'] = (string) The document ID (Required) * $params['index'] = (string) The name of the index (Required) * $params['type'] = DEPRECATED (string) The type of the document (use `_all` to fetch the first document matching the ID across all types) @@ -756,6 +784,8 @@ public function get(array $params = []) return $this->performRequest($endpoint); } /** + * Returns a script. + * * $params['id'] = (string) Script ID * $params['master_timeout'] = (time) Specify timeout for connection to master * @@ -775,6 +805,8 @@ public function getScript(array $params = []) return $this->performRequest($endpoint); } /** + * Returns all script contexts. + * * * @param array $params Associative array of parameters * @return array @@ -793,6 +825,8 @@ public function getScriptContext(array $params = []) return $this->performRequest($endpoint); } /** + * Returns available script types, languages and contexts + * * * @param array $params Associative array of parameters * @return array @@ -811,6 +845,8 @@ public function getScriptLanguages(array $params = []) return $this->performRequest($endpoint); } /** + * Returns the source of a document. + * * $params['id'] = (string) The document ID (Required) * $params['index'] = (string) The name of the index (Required) * $params['type'] = DEPRECATED (string) The type of the document; deprecated and optional starting with 7.0 @@ -844,6 +880,8 @@ public function getSource(array $params = []) return $this->performRequest($endpoint); } /** + * Creates or updates a document in an index. + * * $params['id'] = (string) Document ID * $params['index'] = (string) The name of the index (Required) * $params['type'] = DEPRECATED (string) The type of the document @@ -882,6 +920,8 @@ public function index(array $params = []) return $this->performRequest($endpoint); } /** + * Returns basic information about the cluster. + * * * @param array $params Associative array of parameters * @return array @@ -897,6 +937,8 @@ public function info(array $params = []) return $this->performRequest($endpoint); } /** + * Allows to get multiple documents in one request. + * * $params['index'] = (string) The name of the index * $params['type'] = DEPRECATED (string) The type of the document * $params['stored_fields'] = (list) A comma-separated list of stored fields to return in the response @@ -929,6 +971,8 @@ public function mget(array $params = []) return $this->performRequest($endpoint); } /** + * Allows to execute several search operations in one request. + * * $params['index'] = (list) A comma-separated list of index names to use as default * $params['type'] = DEPRECATED (list) A comma-separated list of document types to use as default * $params['search_type'] = (enum) Search operation type (Options = query_then_fetch,dfs_query_then_fetch) @@ -960,6 +1004,8 @@ public function msearch(array $params = []) return $this->performRequest($endpoint); } /** + * Allows to execute several search template operations in one request. + * * $params['index'] = (list) A comma-separated list of index names to use as default * $params['type'] = DEPRECATED (list) A comma-separated list of document types to use as default * $params['search_type'] = (enum) Search operation type (Options = query_then_fetch,dfs_query_then_fetch) @@ -989,6 +1035,8 @@ public function msearchTemplate(array $params = []) return $this->performRequest($endpoint); } /** + * Returns multiple termvectors in one request. + * * $params['index'] = (string) The index in which the document resides. * $params['type'] = DEPRECATED (string) The type of the document. * $params['ids'] = (list) A comma-separated list of documents ids. You must define ids as parameter or set "ids" or "docs" in the request body @@ -1025,6 +1073,8 @@ public function mtermvectors(array $params = []) return $this->performRequest($endpoint); } /** + * Open a point in time that can be used in subsequent searches + * * $params['index'] = (list) A comma-separated list of index names to open point in time; use `_all` or empty string to perform the operation on all indices * $params['preference'] = (string) Specify the node or shard the operation should be performed on (default: random) * $params['routing'] = (string) Specific routing value @@ -1048,6 +1098,8 @@ public function openPointInTime(array $params = []) return $this->performRequest($endpoint); } /** + * Returns whether the cluster is running. + * * * @param array $params Associative array of parameters * @return bool @@ -1066,6 +1118,8 @@ public function ping(array $params = []): bool return BooleanRequestWrapper::performRequest($endpoint, $this->transport); } /** + * Creates or updates a script. + * * $params['id'] = (string) Script ID (Required) * $params['context'] = (string) Script context * $params['timeout'] = (time) Explicit operation timeout @@ -1092,6 +1146,8 @@ public function putScript(array $params = []) return $this->performRequest($endpoint); } /** + * Allows to evaluate the quality of ranked search results over a set of typical search queries + * * $params['index'] = (list) A comma-separated list of index names to search; use `_all` or empty string to perform the operation on all indices * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) * $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) @@ -1120,6 +1176,8 @@ public function rankEval(array $params = []) return $this->performRequest($endpoint); } /** + * Allows to copy documents from one index to another, optionally filtering the sourcedocuments by a query, changing the destination index settings, or fetching thedocuments from a remote cluster. + * * $params['refresh'] = (boolean) Should the affected indexes be refreshed? * $params['timeout'] = (time) Time each individual bulk request should wait for shards that are unavailable. (Default = 1m) * $params['wait_for_active_shards'] = (string) Sets the number of shard copies that must be active before proceeding with the reindex operation. Defaults to 1, meaning the primary shard only. Set to `all` for all shard copies, otherwise set to any non-negative value less than or equal to the total number of copies for the shard (number of replicas + 1) @@ -1146,6 +1204,8 @@ public function reindex(array $params = []) return $this->performRequest($endpoint); } /** + * Changes the number of requests per second for a particular Reindex operation. + * * $params['task_id'] = (string) The task id to rethrottle * $params['requests_per_second'] = (number) The throttle to set on this request in floating sub-requests per second. -1 means set no throttle. (Required) * @@ -1165,12 +1225,14 @@ public function reindexRethrottle(array $params = []) return $this->performRequest($endpoint); } /** + * Allows to use the Mustache language to pre-render a search definition. + * * $params['id'] = (string) The id of the stored search template * $params['body'] = (array) The search definition template and its params * * @param array $params Associative array of parameters * @return array - * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-template.html#_validating_templates + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/render-search-template-api.html */ public function renderSearchTemplate(array $params = []) { @@ -1186,6 +1248,8 @@ public function renderSearchTemplate(array $params = []) return $this->performRequest($endpoint); } /** + * Allows an arbitrary script to be executed and a result to be returned + * * $params['body'] = (array) The script to execute * * @param array $params Associative array of parameters @@ -1207,6 +1271,8 @@ public function scriptsPainlessExecute(array $params = []) return $this->performRequest($endpoint); } /** + * Allows to retrieve a large numbers of results from a single search request. + * * $params['scroll_id'] = DEPRECATED (string) The scroll ID * $params['scroll'] = (time) Specify how long a consistent view of the index should be maintained for scrolled search * $params['rest_total_hits_as_int'] = (boolean) Indicates whether hits.total should be rendered as an integer or an object in the rest search response (Default = false) @@ -1230,6 +1296,8 @@ public function scroll(array $params = []) return $this->performRequest($endpoint); } /** + * Returns results matching a query. + * * $params['index'] = (list) A comma-separated list of index names to search; use `_all` or empty string to perform the operation on all indices * $params['type'] = DEPRECATED (list) A comma-separated list of document types to search; leave empty to perform the operation on all types * $params['analyzer'] = (string) The analyzer to use for the query string @@ -1297,6 +1365,8 @@ public function search(array $params = []) return $this->performRequest($endpoint); } /** + * Returns information about the indices and shards that a search request would be executed against. + * * $params['index'] = (list) A comma-separated list of index names to search; use `_all` or empty string to perform the operation on all indices * $params['preference'] = (string) Specify the node or shard the operation should be performed on (default: random) * $params['routing'] = (string) Specific routing value @@ -1321,6 +1391,8 @@ public function searchShards(array $params = []) return $this->performRequest($endpoint); } /** + * Allows to use the Mustache language to pre-render a search definition. + * * $params['index'] = (list) A comma-separated list of index names to search; use `_all` or empty string to perform the operation on all indices * $params['type'] = DEPRECATED (list) A comma-separated list of document types to search; leave empty to perform the operation on all types * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) @@ -1358,6 +1430,34 @@ public function searchTemplate(array $params = []) return $this->performRequest($endpoint); } /** + * The terms enum API can be used to discover terms in the index that begin with the provided string. It is designed for low-latency look-ups used in auto-complete scenarios. + * + * $params['index'] = (list) A comma-separated list of index names to search; use `_all` or empty string to perform the operation on all indices + * $params['body'] = (array) field name, string which is the prefix expected in matching terms, timeout and size for max number of results + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-terms-enum.html + * + * @note This API is BETA and may change in ways that are not backwards compatible + * + */ + public function termsEnum(array $params = []) + { + $index = $this->extractArgument($params, 'index'); + $body = $this->extractArgument($params, 'body'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('TermsEnum'); + $endpoint->setParams($params); + $endpoint->setIndex($index); + $endpoint->setBody($body); + + return $this->performRequest($endpoint); + } + /** + * Returns information and statistics about terms in the fields of a particular document. + * * $params['index'] = (string) The index in which the document resides. (Required) * $params['id'] = (string) The id of the document, when not specified a doc param should be supplied. * $params['type'] = DEPRECATED (string) The type of the document. @@ -1396,6 +1496,8 @@ public function termvectors(array $params = []) return $this->performRequest($endpoint); } /** + * Updates a document with a script or partial document. + * * $params['id'] = (string) Document ID (Required) * $params['index'] = (string) The name of the index (Required) * $params['type'] = DEPRECATED (string) The type of the document @@ -1435,6 +1537,8 @@ public function update(array $params = []) return $this->performRequest($endpoint); } /** + * Performs an update on every document in the index without changing the source,for example to pick up a mapping change. + * * $params['index'] = (list) A comma-separated list of index names to search; use `_all` or empty string to perform the operation on all indices (Required) * $params['type'] = DEPRECATED (list) A comma-separated list of document types to search; leave empty to perform the operation on all types * $params['analyzer'] = (string) The analyzer to use for the query string @@ -1494,6 +1598,8 @@ public function updateByQuery(array $params = []) return $this->performRequest($endpoint); } /** + * Changes the number of requests per second for a particular Update By Query operation. + * * $params['task_id'] = (string) The task id to rethrottle * $params['requests_per_second'] = (number) The throttle to set on this request in floating sub-requests per second. -1 means set no throttle. (Required) * @@ -1512,138 +1618,240 @@ public function updateByQueryRethrottle(array $params = []) return $this->performRequest($endpoint); } + /** + * Returns the asyncSearch namespace + */ public function asyncSearch(): AsyncSearchNamespace { return $this->asyncSearch; } + /** + * Returns the autoscaling namespace + */ public function autoscaling(): AutoscalingNamespace { return $this->autoscaling; } + /** + * Returns the cat namespace + */ public function cat(): CatNamespace { return $this->cat; } + /** + * Returns the ccr namespace + */ public function ccr(): CcrNamespace { return $this->ccr; } + /** + * Returns the cluster namespace + */ public function cluster(): ClusterNamespace { return $this->cluster; } + /** + * Returns the danglingIndices namespace + */ public function danglingIndices(): DanglingIndicesNamespace { return $this->danglingIndices; } + /** + * Returns the dataFrameTransformDeprecated namespace + */ public function dataFrameTransformDeprecated(): DataFrameTransformDeprecatedNamespace { return $this->dataFrameTransformDeprecated; } + /** + * Returns the enrich namespace + */ public function enrich(): EnrichNamespace { return $this->enrich; } + /** + * Returns the eql namespace + */ public function eql(): EqlNamespace { return $this->eql; } + /** + * Returns the features namespace + */ public function features(): FeaturesNamespace { return $this->features; } + /** + * Returns the fleet namespace + */ public function fleet(): FleetNamespace { return $this->fleet; } + /** + * Returns the graph namespace + */ public function graph(): GraphNamespace { return $this->graph; } + /** + * Returns the ilm namespace + */ public function ilm(): IlmNamespace { return $this->ilm; } + /** + * Returns the indices namespace + */ public function indices(): IndicesNamespace { return $this->indices; } + /** + * Returns the ingest namespace + */ public function ingest(): IngestNamespace { return $this->ingest; } + /** + * Returns the license namespace + */ public function license(): LicenseNamespace { return $this->license; } + /** + * Returns the logstash namespace + */ public function logstash(): LogstashNamespace { return $this->logstash; } + /** + * Returns the migration namespace + */ public function migration(): MigrationNamespace { return $this->migration; } + /** + * Returns the ml namespace + */ public function ml(): MlNamespace { return $this->ml; } + /** + * Returns the monitoring namespace + */ public function monitoring(): MonitoringNamespace { return $this->monitoring; } + /** + * Returns the nodes namespace + */ public function nodes(): NodesNamespace { return $this->nodes; } + /** + * Returns the rollup namespace + */ public function rollup(): RollupNamespace { return $this->rollup; } + /** + * Returns the searchableSnapshots namespace + */ public function searchableSnapshots(): SearchableSnapshotsNamespace { return $this->searchableSnapshots; } + /** + * Returns the security namespace + */ public function security(): SecurityNamespace { return $this->security; } + /** + * Returns the shutdown namespace + */ public function shutdown(): ShutdownNamespace { return $this->shutdown; } + /** + * Returns the slm namespace + */ public function slm(): SlmNamespace { return $this->slm; } + /** + * Returns the snapshot namespace + */ public function snapshot(): SnapshotNamespace { return $this->snapshot; } + /** + * Returns the sql namespace + */ public function sql(): SqlNamespace { return $this->sql; } + /** + * Returns the ssl namespace + */ public function ssl(): SslNamespace { return $this->ssl; } + /** + * Returns the tasks namespace + */ public function tasks(): TasksNamespace { return $this->tasks; } + /** + * Returns the textStructure namespace + */ public function textStructure(): TextStructureNamespace { return $this->textStructure; } + /** + * Returns the transform namespace + */ public function transform(): TransformNamespace { return $this->transform; } + /** + * Returns the watcher namespace + */ public function watcher(): WatcherNamespace { return $this->watcher; } + /** + * Returns the xpack namespace + */ public function xpack(): XpackNamespace { return $this->xpack; @@ -1664,6 +1872,8 @@ public function __call(string $name, array $arguments) } /** + * Extract an argument from the array of parameters + * * @return null|mixed */ public function extractArgument(array &$params, string $arg) diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php b/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php index 6f4e34ce7..a6505de5e 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Get.php b/src/Elasticsearch/Endpoints/AsyncSearch/Get.php index d43e1f590..1cb050c1e 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Get.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Status.php b/src/Elasticsearch/Endpoints/AsyncSearch/Status.php index 940de46ad..90baf5670 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Status.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Status.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Status extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php b/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php index 2045826e9..d17fae047 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php @@ -23,7 +23,7 @@ * Elasticsearch API name async_search.submit * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Submit extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php index 1cdcc59ac..d955d7384 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.delete_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php index 26ff8d88d..21bfa854c 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php @@ -23,7 +23,7 @@ * Elasticsearch API name autoscaling.get_autoscaling_capacity * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetAutoscalingCapacity extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php index 44ff77261..260c0f121 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.get_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php index d96b0e8fe..87a7424bd 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.put_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Bulk.php b/src/Elasticsearch/Endpoints/Bulk.php index 345ddcd88..22496ce04 100644 --- a/src/Elasticsearch/Endpoints/Bulk.php +++ b/src/Elasticsearch/Endpoints/Bulk.php @@ -26,7 +26,7 @@ * Elasticsearch API name bulk * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Bulk extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Aliases.php b/src/Elasticsearch/Endpoints/Cat/Aliases.php index 3b3cc81a9..81d93b8de 100644 --- a/src/Elasticsearch/Endpoints/Cat/Aliases.php +++ b/src/Elasticsearch/Endpoints/Cat/Aliases.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.aliases * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Aliases extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Allocation.php b/src/Elasticsearch/Endpoints/Cat/Allocation.php index f201bca26..89e8629fa 100644 --- a/src/Elasticsearch/Endpoints/Cat/Allocation.php +++ b/src/Elasticsearch/Endpoints/Cat/Allocation.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.allocation * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Allocation extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Count.php b/src/Elasticsearch/Endpoints/Cat/Count.php index 097334921..51063f23e 100644 --- a/src/Elasticsearch/Endpoints/Cat/Count.php +++ b/src/Elasticsearch/Endpoints/Cat/Count.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.count * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Count extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Fielddata.php b/src/Elasticsearch/Endpoints/Cat/Fielddata.php index ea1bb4059..0d1fae364 100644 --- a/src/Elasticsearch/Endpoints/Cat/Fielddata.php +++ b/src/Elasticsearch/Endpoints/Cat/Fielddata.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.fielddata * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Fielddata extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Health.php b/src/Elasticsearch/Endpoints/Cat/Health.php index 9b6d677bb..011194f15 100644 --- a/src/Elasticsearch/Endpoints/Cat/Health.php +++ b/src/Elasticsearch/Endpoints/Cat/Health.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.health * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Health extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Help.php b/src/Elasticsearch/Endpoints/Cat/Help.php index b375fb059..170a8fe35 100644 --- a/src/Elasticsearch/Endpoints/Cat/Help.php +++ b/src/Elasticsearch/Endpoints/Cat/Help.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.help * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Help extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Indices.php b/src/Elasticsearch/Endpoints/Cat/Indices.php index 9ef7a46a6..7128772be 100644 --- a/src/Elasticsearch/Endpoints/Cat/Indices.php +++ b/src/Elasticsearch/Endpoints/Cat/Indices.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.indices * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Indices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Master.php b/src/Elasticsearch/Endpoints/Cat/Master.php index 74471fc8e..ed69588b1 100644 --- a/src/Elasticsearch/Endpoints/Cat/Master.php +++ b/src/Elasticsearch/Endpoints/Cat/Master.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.master * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Master extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php index 163cb6ffe..2ca3721bc 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class MlDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php b/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php index a122738f5..986eb950d 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php +++ b/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_datafeeds * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class MlDatafeeds extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlJobs.php b/src/Elasticsearch/Endpoints/Cat/MlJobs.php index e8c74df25..8ca02ffd1 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlJobs.php +++ b/src/Elasticsearch/Endpoints/Cat/MlJobs.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_jobs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class MlJobs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php b/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php index 4985bfde8..c9eecedc8 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php +++ b/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_trained_models * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class MlTrainedModels extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php b/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php index 7fa72ed51..62c78efa3 100644 --- a/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php +++ b/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.nodeattrs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class NodeAttrs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Nodes.php b/src/Elasticsearch/Endpoints/Cat/Nodes.php index 5c6dafe12..012b9fe8f 100644 --- a/src/Elasticsearch/Endpoints/Cat/Nodes.php +++ b/src/Elasticsearch/Endpoints/Cat/Nodes.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.nodes * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Nodes extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/PendingTasks.php b/src/Elasticsearch/Endpoints/Cat/PendingTasks.php index abfdc3b36..f3cf57f25 100644 --- a/src/Elasticsearch/Endpoints/Cat/PendingTasks.php +++ b/src/Elasticsearch/Endpoints/Cat/PendingTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.pending_tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PendingTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Plugins.php b/src/Elasticsearch/Endpoints/Cat/Plugins.php index 2fd7a498e..50d3f1a73 100644 --- a/src/Elasticsearch/Endpoints/Cat/Plugins.php +++ b/src/Elasticsearch/Endpoints/Cat/Plugins.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.plugins * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Plugins extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Recovery.php b/src/Elasticsearch/Endpoints/Cat/Recovery.php index 19254e274..1a1df6c8f 100644 --- a/src/Elasticsearch/Endpoints/Cat/Recovery.php +++ b/src/Elasticsearch/Endpoints/Cat/Recovery.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.recovery * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Recovery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Repositories.php b/src/Elasticsearch/Endpoints/Cat/Repositories.php index 96eb6e196..3f2220399 100644 --- a/src/Elasticsearch/Endpoints/Cat/Repositories.php +++ b/src/Elasticsearch/Endpoints/Cat/Repositories.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.repositories * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Repositories extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Segments.php b/src/Elasticsearch/Endpoints/Cat/Segments.php index 77eb2c076..eb64c2768 100644 --- a/src/Elasticsearch/Endpoints/Cat/Segments.php +++ b/src/Elasticsearch/Endpoints/Cat/Segments.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.segments * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Segments extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Shards.php b/src/Elasticsearch/Endpoints/Cat/Shards.php index e2767ee78..ad262e3b2 100644 --- a/src/Elasticsearch/Endpoints/Cat/Shards.php +++ b/src/Elasticsearch/Endpoints/Cat/Shards.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.shards * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Shards extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Snapshots.php b/src/Elasticsearch/Endpoints/Cat/Snapshots.php index 3577d283c..1ced62357 100644 --- a/src/Elasticsearch/Endpoints/Cat/Snapshots.php +++ b/src/Elasticsearch/Endpoints/Cat/Snapshots.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.snapshots * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Snapshots extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Tasks.php b/src/Elasticsearch/Endpoints/Cat/Tasks.php index cf3cc815f..976fe9eba 100644 --- a/src/Elasticsearch/Endpoints/Cat/Tasks.php +++ b/src/Elasticsearch/Endpoints/Cat/Tasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Tasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Templates.php b/src/Elasticsearch/Endpoints/Cat/Templates.php index a66525e74..d3bfcabcf 100644 --- a/src/Elasticsearch/Endpoints/Cat/Templates.php +++ b/src/Elasticsearch/Endpoints/Cat/Templates.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.templates * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Templates extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/ThreadPool.php b/src/Elasticsearch/Endpoints/Cat/ThreadPool.php index ba7f9c932..960c2114a 100644 --- a/src/Elasticsearch/Endpoints/Cat/ThreadPool.php +++ b/src/Elasticsearch/Endpoints/Cat/ThreadPool.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.thread_pool * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ThreadPool extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Transforms.php b/src/Elasticsearch/Endpoints/Cat/Transforms.php index 51016b196..c5aaa2275 100644 --- a/src/Elasticsearch/Endpoints/Cat/Transforms.php +++ b/src/Elasticsearch/Endpoints/Cat/Transforms.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.transforms * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Transforms extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php index bddf74860..f667eea6b 100644 --- a/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.delete_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Follow.php b/src/Elasticsearch/Endpoints/Ccr/Follow.php index 60aceb19a..46830a31a 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Follow.php +++ b/src/Elasticsearch/Endpoints/Ccr/Follow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Follow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php b/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php index 0b9c3022e..d390e167e 100644 --- a/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php +++ b/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow_info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class FollowInfo extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/FollowStats.php b/src/Elasticsearch/Endpoints/Ccr/FollowStats.php index 485de09e7..0e89e2487 100644 --- a/src/Elasticsearch/Endpoints/Ccr/FollowStats.php +++ b/src/Elasticsearch/Endpoints/Ccr/FollowStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class FollowStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php b/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php index 8b48a69e4..2f0bcb023 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php +++ b/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.forget_follower * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ForgetFollower extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php index f8171991f..ab18cab33 100644 --- a/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php @@ -23,7 +23,7 @@ * Elasticsearch API name ccr.get_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php index 94e05170e..0e39d83bc 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.pause_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PauseAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php b/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php index b58841256..2556cd502 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.pause_follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PauseFollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php index 6788c9775..b164c936b 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.put_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php index 2433ec999..e362369c3 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.resume_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ResumeAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php b/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php index e6d87f831..2e90f1f09 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.resume_follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ResumeFollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Stats.php b/src/Elasticsearch/Endpoints/Ccr/Stats.php index 3311ecea6..d37096cb4 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Stats.php +++ b/src/Elasticsearch/Endpoints/Ccr/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ccr.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Unfollow.php b/src/Elasticsearch/Endpoints/Ccr/Unfollow.php index aba92f8d9..f057584b3 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Unfollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/Unfollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.unfollow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Unfollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ClearScroll.php b/src/Elasticsearch/Endpoints/ClearScroll.php index de40ec44f..e792863e5 100644 --- a/src/Elasticsearch/Endpoints/ClearScroll.php +++ b/src/Elasticsearch/Endpoints/ClearScroll.php @@ -23,7 +23,7 @@ * Elasticsearch API name clear_scroll * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ClearScroll extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ClosePointInTime.php b/src/Elasticsearch/Endpoints/ClosePointInTime.php index 6c5484923..d18424c43 100644 --- a/src/Elasticsearch/Endpoints/ClosePointInTime.php +++ b/src/Elasticsearch/Endpoints/ClosePointInTime.php @@ -23,7 +23,7 @@ * Elasticsearch API name close_point_in_time * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ClosePointInTime extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php b/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php index e34e118e7..3d2375e4a 100644 --- a/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php +++ b/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.allocation_explain * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class AllocationExplain extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php index e73403ae3..3736a5895 100644 --- a/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.delete_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php b/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php index 9cc1003e3..90cf4b3a7 100644 --- a/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php +++ b/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.delete_voting_config_exclusions * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteVotingConfigExclusions extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php index 4abff6de2..8bdb8460d 100644 --- a/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.exists_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ExistsComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php index 94d47b5de..12a56176e 100644 --- a/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.get_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/GetSettings.php b/src/Elasticsearch/Endpoints/Cluster/GetSettings.php index b633428d1..6a8dd4916 100644 --- a/src/Elasticsearch/Endpoints/Cluster/GetSettings.php +++ b/src/Elasticsearch/Endpoints/Cluster/GetSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.get_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Health.php b/src/Elasticsearch/Endpoints/Cluster/Health.php index f8dcdfc84..28cd51f12 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Health.php +++ b/src/Elasticsearch/Endpoints/Cluster/Health.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.health * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Health extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php b/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php index 40ea2b71d..453f292f1 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php +++ b/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.pending_tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PendingTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php b/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php index a08c8374b..17336db00 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php +++ b/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.post_voting_config_exclusions * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PostVotingConfigExclusions extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php index 82444da0f..a6830b66c 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.put_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PutSettings.php b/src/Elasticsearch/Endpoints/Cluster/PutSettings.php index cbd435d0e..007ccbc24 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PutSettings.php +++ b/src/Elasticsearch/Endpoints/Cluster/PutSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.put_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php b/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php index 33a457d8c..31e55c19d 100644 --- a/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php +++ b/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.remote_info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class RemoteInfo extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Reroute.php b/src/Elasticsearch/Endpoints/Cluster/Reroute.php index fd5d5bc03..60eae997e 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Reroute.php +++ b/src/Elasticsearch/Endpoints/Cluster/Reroute.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.reroute * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Reroute extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/State.php b/src/Elasticsearch/Endpoints/Cluster/State.php index 6519ec076..947c1db1e 100644 --- a/src/Elasticsearch/Endpoints/Cluster/State.php +++ b/src/Elasticsearch/Endpoints/Cluster/State.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.state * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class State extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Stats.php b/src/Elasticsearch/Endpoints/Cluster/Stats.php index 779ae7171..0123bf7cc 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Stats.php +++ b/src/Elasticsearch/Endpoints/Cluster/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Count.php b/src/Elasticsearch/Endpoints/Count.php index 6ab3590f1..a4b602ddf 100644 --- a/src/Elasticsearch/Endpoints/Count.php +++ b/src/Elasticsearch/Endpoints/Count.php @@ -23,7 +23,7 @@ * Elasticsearch API name count * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Count extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Create.php b/src/Elasticsearch/Endpoints/Create.php index 76ad5ff46..0bbe7f4d8 100644 --- a/src/Elasticsearch/Endpoints/Create.php +++ b/src/Elasticsearch/Endpoints/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php b/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php index 5b63c32e1..ede06b607 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name dangling_indices.delete_dangling_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteDanglingIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php b/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php index 8d3ac6abd..d09614a78 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name dangling_indices.import_dangling_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ImportDanglingIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php b/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php index 423306ffb..0e2add726 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php @@ -23,7 +23,7 @@ * Elasticsearch API name dangling_indices.list_dangling_indices * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ListDanglingIndices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php index 428bafcdc..b8505b3f4 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.delete_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php index 6033bb070..e2fa39a61 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name data_frame_transform_deprecated.get_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php index bf98ac6b6..8e4bbf681 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.get_transform_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetTransformStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php index f66009144..f7342b4a2 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name data_frame_transform_deprecated.preview_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PreviewTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php index e33e3b666..2207a7ae4 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.put_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php index c363df019..7b38407da 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.start_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class StartTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php index 041bcd5f8..c34334b9c 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.stop_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class StopTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php index d678c7a31..8d68cdafc 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.update_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class UpdateTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Delete.php b/src/Elasticsearch/Endpoints/Delete.php index 1076ac296..e717ad2c6 100644 --- a/src/Elasticsearch/Endpoints/Delete.php +++ b/src/Elasticsearch/Endpoints/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteByQuery.php b/src/Elasticsearch/Endpoints/DeleteByQuery.php index 79a57641c..15b1094e5 100644 --- a/src/Elasticsearch/Endpoints/DeleteByQuery.php +++ b/src/Elasticsearch/Endpoints/DeleteByQuery.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_by_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteByQuery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php b/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php index 508ccb33b..f5b7fc21c 100644 --- a/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php +++ b/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_by_query_rethrottle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteByQueryRethrottle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteScript.php b/src/Elasticsearch/Endpoints/DeleteScript.php index 113c2d51c..0d5c496eb 100644 --- a/src/Elasticsearch/Endpoints/DeleteScript.php +++ b/src/Elasticsearch/Endpoints/DeleteScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php b/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php index 15c4ee84f..de7a5987d 100644 --- a/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.delete_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeletePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php b/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php index 9e19c11ec..0f4e827bd 100644 --- a/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.execute_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ExecutePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php b/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php index d2e96499a..f37f18cfd 100644 --- a/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php @@ -23,7 +23,7 @@ * Elasticsearch API name enrich.get_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php b/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php index 8ec49afea..4901394fa 100644 --- a/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.put_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/Stats.php b/src/Elasticsearch/Endpoints/Enrich/Stats.php index 66f13fe58..7c73d827a 100644 --- a/src/Elasticsearch/Endpoints/Enrich/Stats.php +++ b/src/Elasticsearch/Endpoints/Enrich/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name enrich.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Delete.php b/src/Elasticsearch/Endpoints/Eql/Delete.php index 72f40447d..fc8e14ffc 100644 --- a/src/Elasticsearch/Endpoints/Eql/Delete.php +++ b/src/Elasticsearch/Endpoints/Eql/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Get.php b/src/Elasticsearch/Endpoints/Eql/Get.php index 1cdf9ff6c..f3d9306fe 100644 --- a/src/Elasticsearch/Endpoints/Eql/Get.php +++ b/src/Elasticsearch/Endpoints/Eql/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/GetStatus.php b/src/Elasticsearch/Endpoints/Eql/GetStatus.php index a1fe3fe87..63ee4c319 100644 --- a/src/Elasticsearch/Endpoints/Eql/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Eql/GetStatus.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Search.php b/src/Elasticsearch/Endpoints/Eql/Search.php index b5df8f1e4..17a38ce9f 100644 --- a/src/Elasticsearch/Endpoints/Eql/Search.php +++ b/src/Elasticsearch/Endpoints/Eql/Search.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Search extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Exists.php b/src/Elasticsearch/Endpoints/Exists.php index dafe6db23..49dd19976 100644 --- a/src/Elasticsearch/Endpoints/Exists.php +++ b/src/Elasticsearch/Endpoints/Exists.php @@ -24,7 +24,7 @@ * Elasticsearch API name exists * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Exists extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ExistsSource.php b/src/Elasticsearch/Endpoints/ExistsSource.php index 0dafac44e..5511d4815 100644 --- a/src/Elasticsearch/Endpoints/ExistsSource.php +++ b/src/Elasticsearch/Endpoints/ExistsSource.php @@ -24,7 +24,7 @@ * Elasticsearch API name exists_source * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ExistsSource extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Explain.php b/src/Elasticsearch/Endpoints/Explain.php index 5f16a0b1f..ac3a58f18 100644 --- a/src/Elasticsearch/Endpoints/Explain.php +++ b/src/Elasticsearch/Endpoints/Explain.php @@ -24,7 +24,7 @@ * Elasticsearch API name explain * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Explain extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Features/GetFeatures.php b/src/Elasticsearch/Endpoints/Features/GetFeatures.php index 6199d4978..1e6cab0c3 100644 --- a/src/Elasticsearch/Endpoints/Features/GetFeatures.php +++ b/src/Elasticsearch/Endpoints/Features/GetFeatures.php @@ -23,7 +23,7 @@ * Elasticsearch API name features.get_features * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetFeatures extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Features/ResetFeatures.php b/src/Elasticsearch/Endpoints/Features/ResetFeatures.php index 8b226b50f..2b30bd4b4 100644 --- a/src/Elasticsearch/Endpoints/Features/ResetFeatures.php +++ b/src/Elasticsearch/Endpoints/Features/ResetFeatures.php @@ -23,7 +23,7 @@ * Elasticsearch API name features.reset_features * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ResetFeatures extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/FieldCaps.php b/src/Elasticsearch/Endpoints/FieldCaps.php index 25f991448..e675d9c86 100644 --- a/src/Elasticsearch/Endpoints/FieldCaps.php +++ b/src/Elasticsearch/Endpoints/FieldCaps.php @@ -23,7 +23,7 @@ * Elasticsearch API name field_caps * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class FieldCaps extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php b/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php index 1d6aacabb..a42ae2ee7 100644 --- a/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php +++ b/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php @@ -24,7 +24,7 @@ * Elasticsearch API name fleet.global_checkpoints * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GlobalCheckpoints extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Get.php b/src/Elasticsearch/Endpoints/Get.php index 83afa2581..609a014dd 100644 --- a/src/Elasticsearch/Endpoints/Get.php +++ b/src/Elasticsearch/Endpoints/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScript.php b/src/Elasticsearch/Endpoints/GetScript.php index 98e3c7c6d..9299555ad 100644 --- a/src/Elasticsearch/Endpoints/GetScript.php +++ b/src/Elasticsearch/Endpoints/GetScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name get_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScriptContext.php b/src/Elasticsearch/Endpoints/GetScriptContext.php index 40151d5fd..82de586d0 100644 --- a/src/Elasticsearch/Endpoints/GetScriptContext.php +++ b/src/Elasticsearch/Endpoints/GetScriptContext.php @@ -23,7 +23,7 @@ * Elasticsearch API name get_script_context * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetScriptContext extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScriptLanguages.php b/src/Elasticsearch/Endpoints/GetScriptLanguages.php index b33ee7dd3..9666a55d9 100644 --- a/src/Elasticsearch/Endpoints/GetScriptLanguages.php +++ b/src/Elasticsearch/Endpoints/GetScriptLanguages.php @@ -23,7 +23,7 @@ * Elasticsearch API name get_script_languages * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetScriptLanguages extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetSource.php b/src/Elasticsearch/Endpoints/GetSource.php index 9985a0142..dfc92105c 100644 --- a/src/Elasticsearch/Endpoints/GetSource.php +++ b/src/Elasticsearch/Endpoints/GetSource.php @@ -24,7 +24,7 @@ * Elasticsearch API name get_source * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetSource extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Graph/Explore.php b/src/Elasticsearch/Endpoints/Graph/Explore.php index c7df00a78..869cda7f3 100644 --- a/src/Elasticsearch/Endpoints/Graph/Explore.php +++ b/src/Elasticsearch/Endpoints/Graph/Explore.php @@ -24,7 +24,7 @@ * Elasticsearch API name graph.explore * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Explore extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php index be23e76cd..bf9b1c0f0 100644 --- a/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.delete_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php index 31f02f935..77417ee6a 100644 --- a/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.explain_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ExplainLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php index 083aefcbb..967cae552 100644 --- a/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.get_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/GetStatus.php b/src/Elasticsearch/Endpoints/Ilm/GetStatus.php index de50060ad..fd3491f4f 100644 --- a/src/Elasticsearch/Endpoints/Ilm/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Ilm/GetStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php b/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php new file mode 100644 index 000000000..f92e7f969 --- /dev/null +++ b/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php @@ -0,0 +1,58 @@ +body = $body; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php b/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php index 6c85168db..65538ced2 100644 --- a/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php +++ b/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.move_to_step * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class MoveToStep extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php index e70d0354a..37282ed5c 100644 --- a/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.put_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php b/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php index 69923cd33..e5d088b11 100644 --- a/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php +++ b/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.remove_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class RemovePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Retry.php b/src/Elasticsearch/Endpoints/Ilm/Retry.php index 73dd60c48..ea80b91b2 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Retry.php +++ b/src/Elasticsearch/Endpoints/Ilm/Retry.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.retry * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Retry extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Start.php b/src/Elasticsearch/Endpoints/Ilm/Start.php index 698bc7ca5..bf4286f1c 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Start.php +++ b/src/Elasticsearch/Endpoints/Ilm/Start.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.start * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Start extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Stop.php b/src/Elasticsearch/Endpoints/Ilm/Stop.php index 3b50d206a..0c4053fef 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Stop.php +++ b/src/Elasticsearch/Endpoints/Ilm/Stop.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.stop * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Stop extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Index.php b/src/Elasticsearch/Endpoints/Index.php index a5d1ea6e4..e161f71a1 100644 --- a/src/Elasticsearch/Endpoints/Index.php +++ b/src/Elasticsearch/Endpoints/Index.php @@ -24,7 +24,7 @@ * Elasticsearch API name index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Index extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/AddBlock.php b/src/Elasticsearch/Endpoints/Indices/AddBlock.php index b8a0ed462..8612786fc 100644 --- a/src/Elasticsearch/Endpoints/Indices/AddBlock.php +++ b/src/Elasticsearch/Endpoints/Indices/AddBlock.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.add_block * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class AddBlock extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Analyze.php b/src/Elasticsearch/Endpoints/Indices/Analyze.php index 49669e13c..2cf9df834 100644 --- a/src/Elasticsearch/Endpoints/Indices/Analyze.php +++ b/src/Elasticsearch/Endpoints/Indices/Analyze.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.analyze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Analyze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ClearCache.php b/src/Elasticsearch/Endpoints/Indices/ClearCache.php index 9c1f2c40e..ee420101e 100644 --- a/src/Elasticsearch/Endpoints/Indices/ClearCache.php +++ b/src/Elasticsearch/Endpoints/Indices/ClearCache.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.clear_cache * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ClearCache extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/CloneIndices.php b/src/Elasticsearch/Endpoints/Indices/CloneIndices.php index 13caf6099..23810e3b9 100644 --- a/src/Elasticsearch/Endpoints/Indices/CloneIndices.php +++ b/src/Elasticsearch/Endpoints/Indices/CloneIndices.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.clone * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class CloneIndices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Close.php b/src/Elasticsearch/Endpoints/Indices/Close.php index cd198a1e8..0dec85090 100644 --- a/src/Elasticsearch/Endpoints/Indices/Close.php +++ b/src/Elasticsearch/Endpoints/Indices/Close.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.close * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Close extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Create.php b/src/Elasticsearch/Endpoints/Indices/Create.php index 50ae55b0e..d13b6a8d2 100644 --- a/src/Elasticsearch/Endpoints/Indices/Create.php +++ b/src/Elasticsearch/Endpoints/Indices/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php b/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php index 34520a46b..33726a73f 100644 --- a/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.create_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class CreateDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php b/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php index fc0ed1399..07423aa52 100644 --- a/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php +++ b/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.data_streams_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DataStreamsStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Delete.php b/src/Elasticsearch/Endpoints/Indices/Delete.php index 62d2a71e8..31f442902 100644 --- a/src/Elasticsearch/Endpoints/Indices/Delete.php +++ b/src/Elasticsearch/Endpoints/Indices/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php b/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php index a4f267794..2c1714f93 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php b/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php index eb839c87e..472b836e4 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php index 043ec2aa1..a1be75f9d 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php b/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php index 27f157d78..d50a3e510 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DiskUsage.php b/src/Elasticsearch/Endpoints/Indices/DiskUsage.php new file mode 100644 index 000000000..0c43ce179 --- /dev/null +++ b/src/Elasticsearch/Endpoints/Indices/DiskUsage.php @@ -0,0 +1,57 @@ +index ?? null; + + if (isset($index)) { + return "/$index/_disk_usage"; + } + throw new RuntimeException('Missing parameter for the endpoint indices.disk_usage'); + } + + public function getParamWhitelist(): array + { + return [ + 'run_expensive_tasks', + 'flush', + 'ignore_unavailable', + 'allow_no_indices', + 'expand_wildcards' + ]; + } + + public function getMethod(): string + { + return 'POST'; + } +} diff --git a/src/Elasticsearch/Endpoints/Indices/Exists.php b/src/Elasticsearch/Endpoints/Indices/Exists.php index d4821c03c..66f0d9590 100644 --- a/src/Elasticsearch/Endpoints/Indices/Exists.php +++ b/src/Elasticsearch/Endpoints/Indices/Exists.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Exists extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php b/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php index 2c34b3791..ec2fca5c6 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ExistsAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php index ffd051974..d70434e72 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ExistsIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php b/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php index bbff4ebf4..792ea89ab 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ExistsTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsType.php b/src/Elasticsearch/Endpoints/Indices/ExistsType.php index ce71b578a..9d5cd3787 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsType.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsType.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_type * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ExistsType extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php b/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php new file mode 100644 index 000000000..13af8771c --- /dev/null +++ b/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php @@ -0,0 +1,56 @@ +index ?? null; + + if (isset($index)) { + return "/$index/_field_usage_stats"; + } + throw new RuntimeException('Missing parameter for the endpoint indices.field_usage_stats'); + } + + public function getParamWhitelist(): array + { + return [ + 'fields', + 'ignore_unavailable', + 'allow_no_indices', + 'expand_wildcards' + ]; + } + + public function getMethod(): string + { + return 'GET'; + } +} diff --git a/src/Elasticsearch/Endpoints/Indices/Flush.php b/src/Elasticsearch/Endpoints/Indices/Flush.php index 8e6a94c83..9353240fa 100644 --- a/src/Elasticsearch/Endpoints/Indices/Flush.php +++ b/src/Elasticsearch/Endpoints/Indices/Flush.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.flush * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Flush extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/FlushSynced.php b/src/Elasticsearch/Endpoints/Indices/FlushSynced.php index 65959a72e..f332572f5 100644 --- a/src/Elasticsearch/Endpoints/Indices/FlushSynced.php +++ b/src/Elasticsearch/Endpoints/Indices/FlushSynced.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.flush_synced * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class FlushSynced extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ForceMerge.php b/src/Elasticsearch/Endpoints/Indices/ForceMerge.php index 04474d432..23ca75112 100644 --- a/src/Elasticsearch/Endpoints/Indices/ForceMerge.php +++ b/src/Elasticsearch/Endpoints/Indices/ForceMerge.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.forcemerge * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ForceMerge extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Freeze.php b/src/Elasticsearch/Endpoints/Indices/Freeze.php index f011a437a..a374b20db 100644 --- a/src/Elasticsearch/Endpoints/Indices/Freeze.php +++ b/src/Elasticsearch/Endpoints/Indices/Freeze.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.freeze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Freeze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Get.php b/src/Elasticsearch/Endpoints/Indices/Get.php index 8d143ead3..456a665a0 100644 --- a/src/Elasticsearch/Endpoints/Indices/Get.php +++ b/src/Elasticsearch/Endpoints/Indices/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetAlias.php b/src/Elasticsearch/Endpoints/Indices/GetAlias.php index 602a9b45e..962009a79 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/GetAlias.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetDataStream.php b/src/Elasticsearch/Endpoints/Indices/GetDataStream.php index 143311f9a..e465869ac 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/GetDataStream.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php b/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php index 7bbe5f680..06d76697c 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.get_field_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetFieldMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php index 6ed1ae04f..36b04b398 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetMapping.php b/src/Elasticsearch/Endpoints/Indices/GetMapping.php index baf6daf39..02539a3c7 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/GetMapping.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetSettings.php b/src/Elasticsearch/Endpoints/Indices/GetSettings.php index 8e365b25a..d31a2bfc0 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetSettings.php +++ b/src/Elasticsearch/Endpoints/Indices/GetSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetTemplate.php b/src/Elasticsearch/Endpoints/Indices/GetTemplate.php index cb1c5331e..b18a04f34 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/GetTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php b/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php index bdb3847a7..637284192 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php +++ b/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_upgrade * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetUpgrade extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php b/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php index a7b71c03b..63fe334c8 100644 --- a/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.migrate_to_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class MigrateToDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Open.php b/src/Elasticsearch/Endpoints/Indices/Open.php index a497894c7..64b922c12 100644 --- a/src/Elasticsearch/Endpoints/Indices/Open.php +++ b/src/Elasticsearch/Endpoints/Indices/Open.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.open * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Open extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php b/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php index 49e6e6644..87be72f86 100644 --- a/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.promote_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PromoteDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutAlias.php b/src/Elasticsearch/Endpoints/Indices/PutAlias.php index 46d8b2ed6..5771f7d75 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/PutAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php index d469da185..9e58b9e56 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutMapping.php b/src/Elasticsearch/Endpoints/Indices/PutMapping.php index 7958b0382..0cf05c540 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/PutMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutSettings.php b/src/Elasticsearch/Endpoints/Indices/PutSettings.php index 4cf74a24d..fc03d7c35 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutSettings.php +++ b/src/Elasticsearch/Endpoints/Indices/PutSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.put_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutTemplate.php b/src/Elasticsearch/Endpoints/Indices/PutTemplate.php index 9fb15f20e..92797167c 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/PutTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Recovery.php b/src/Elasticsearch/Endpoints/Indices/Recovery.php index 6669b3e15..b114ae80d 100644 --- a/src/Elasticsearch/Endpoints/Indices/Recovery.php +++ b/src/Elasticsearch/Endpoints/Indices/Recovery.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.recovery * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Recovery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Refresh.php b/src/Elasticsearch/Endpoints/Indices/Refresh.php index 0bfcc9fbf..9efa52ff1 100644 --- a/src/Elasticsearch/Endpoints/Indices/Refresh.php +++ b/src/Elasticsearch/Endpoints/Indices/Refresh.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.refresh * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Refresh extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php b/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php index d0edae83b..a36c12470 100644 --- a/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php +++ b/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.reload_search_analyzers * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ReloadSearchAnalyzers extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php b/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php index 8ff39a0d9..7f0898b09 100644 --- a/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php +++ b/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.resolve_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ResolveIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Rollover.php b/src/Elasticsearch/Endpoints/Indices/Rollover.php index 44d77ca1e..e3df46991 100644 --- a/src/Elasticsearch/Endpoints/Indices/Rollover.php +++ b/src/Elasticsearch/Endpoints/Indices/Rollover.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.rollover * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Rollover extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Segments.php b/src/Elasticsearch/Endpoints/Indices/Segments.php index b3a374692..bd5f145d9 100644 --- a/src/Elasticsearch/Endpoints/Indices/Segments.php +++ b/src/Elasticsearch/Endpoints/Indices/Segments.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.segments * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Segments extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ShardStores.php b/src/Elasticsearch/Endpoints/Indices/ShardStores.php index 1227231c9..6459055d3 100644 --- a/src/Elasticsearch/Endpoints/Indices/ShardStores.php +++ b/src/Elasticsearch/Endpoints/Indices/ShardStores.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.shard_stores * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ShardStores extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Shrink.php b/src/Elasticsearch/Endpoints/Indices/Shrink.php index d4744c866..9ce414e01 100644 --- a/src/Elasticsearch/Endpoints/Indices/Shrink.php +++ b/src/Elasticsearch/Endpoints/Indices/Shrink.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.shrink * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Shrink extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php index ab48ef688..c2d9a0230 100644 --- a/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.simulate_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class SimulateIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php b/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php index 9db30439d..767b8b4d4 100644 --- a/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.simulate_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class SimulateTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Split.php b/src/Elasticsearch/Endpoints/Indices/Split.php index a75b2fa8e..82140838e 100644 --- a/src/Elasticsearch/Endpoints/Indices/Split.php +++ b/src/Elasticsearch/Endpoints/Indices/Split.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.split * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Split extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Stats.php b/src/Elasticsearch/Endpoints/Indices/Stats.php index d1baf8660..0547e6d34 100644 --- a/src/Elasticsearch/Endpoints/Indices/Stats.php +++ b/src/Elasticsearch/Endpoints/Indices/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Unfreeze.php b/src/Elasticsearch/Endpoints/Indices/Unfreeze.php index d5bda9e97..e2eafa283 100644 --- a/src/Elasticsearch/Endpoints/Indices/Unfreeze.php +++ b/src/Elasticsearch/Endpoints/Indices/Unfreeze.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.unfreeze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Unfreeze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php b/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php index ca87d8370..9716e7452 100644 --- a/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php +++ b/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.update_aliases * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class UpdateAliases extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Upgrade.php b/src/Elasticsearch/Endpoints/Indices/Upgrade.php index ac2a2490b..76fbcd47e 100644 --- a/src/Elasticsearch/Endpoints/Indices/Upgrade.php +++ b/src/Elasticsearch/Endpoints/Indices/Upgrade.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.upgrade * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Upgrade extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php b/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php index 5f7684541..1ee6a7e4a 100644 --- a/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php +++ b/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.validate_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ValidateQuery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Info.php b/src/Elasticsearch/Endpoints/Info.php index c02bcc146..9cae0a5d8 100644 --- a/src/Elasticsearch/Endpoints/Info.php +++ b/src/Elasticsearch/Endpoints/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php b/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php index 3cfd4e0b1..7a2375d4c 100644 --- a/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name ingest.delete_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeletePipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php b/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php index 83fb8f8d0..36b2367bd 100644 --- a/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php +++ b/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.geo_ip_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GeoIpStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php b/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php index 3757b09fe..c4eed6303 100644 --- a/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.get_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php b/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php index 811fbf034..6a273168b 100644 --- a/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php +++ b/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.processor_grok * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ProcessorGrok extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php b/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php index 8e7f27c8f..289fb2d32 100644 --- a/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name ingest.put_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/Simulate.php b/src/Elasticsearch/Endpoints/Ingest/Simulate.php index 8ce54fa9b..12c3bddb8 100644 --- a/src/Elasticsearch/Endpoints/Ingest/Simulate.php +++ b/src/Elasticsearch/Endpoints/Ingest/Simulate.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.simulate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Simulate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Delete.php b/src/Elasticsearch/Endpoints/License/Delete.php index a886c5c0d..9379b0140 100644 --- a/src/Elasticsearch/Endpoints/License/Delete.php +++ b/src/Elasticsearch/Endpoints/License/Delete.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Get.php b/src/Elasticsearch/Endpoints/License/Get.php index 93a8c84d8..9b20c2561 100644 --- a/src/Elasticsearch/Endpoints/License/Get.php +++ b/src/Elasticsearch/Endpoints/License/Get.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/GetBasicStatus.php b/src/Elasticsearch/Endpoints/License/GetBasicStatus.php index 44670024f..b7d52807b 100644 --- a/src/Elasticsearch/Endpoints/License/GetBasicStatus.php +++ b/src/Elasticsearch/Endpoints/License/GetBasicStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get_basic_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetBasicStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/GetTrialStatus.php b/src/Elasticsearch/Endpoints/License/GetTrialStatus.php index 0c8a48126..d209a1388 100644 --- a/src/Elasticsearch/Endpoints/License/GetTrialStatus.php +++ b/src/Elasticsearch/Endpoints/License/GetTrialStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get_trial_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetTrialStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Post.php b/src/Elasticsearch/Endpoints/License/Post.php index b5b3296e0..98c0b1ac7 100644 --- a/src/Elasticsearch/Endpoints/License/Post.php +++ b/src/Elasticsearch/Endpoints/License/Post.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Post extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/PostStartBasic.php b/src/Elasticsearch/Endpoints/License/PostStartBasic.php index 35a7c9a0a..322e1221b 100644 --- a/src/Elasticsearch/Endpoints/License/PostStartBasic.php +++ b/src/Elasticsearch/Endpoints/License/PostStartBasic.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post_start_basic * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PostStartBasic extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/PostStartTrial.php b/src/Elasticsearch/Endpoints/License/PostStartTrial.php index 4259a0e51..7aee7ebd2 100644 --- a/src/Elasticsearch/Endpoints/License/PostStartTrial.php +++ b/src/Elasticsearch/Endpoints/License/PostStartTrial.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post_start_trial * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PostStartTrial extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php b/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php index 95451b6ca..0ed423715 100644 --- a/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.delete_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeletePipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php b/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php index 0cdf701fb..91c9d842b 100644 --- a/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.get_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php b/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php index 6d35b8c21..045ca6f7b 100644 --- a/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.put_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/MTermVectors.php b/src/Elasticsearch/Endpoints/MTermVectors.php index d31d997d2..bd96354cb 100644 --- a/src/Elasticsearch/Endpoints/MTermVectors.php +++ b/src/Elasticsearch/Endpoints/MTermVectors.php @@ -23,7 +23,7 @@ * Elasticsearch API name mtermvectors * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class MTermVectors extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Mget.php b/src/Elasticsearch/Endpoints/Mget.php index 4bd8eba10..a26800050 100644 --- a/src/Elasticsearch/Endpoints/Mget.php +++ b/src/Elasticsearch/Endpoints/Mget.php @@ -23,7 +23,7 @@ * Elasticsearch API name mget * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Mget extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Migration/Deprecations.php b/src/Elasticsearch/Endpoints/Migration/Deprecations.php index 9cc60f6c2..0e2cfff90 100644 --- a/src/Elasticsearch/Endpoints/Migration/Deprecations.php +++ b/src/Elasticsearch/Endpoints/Migration/Deprecations.php @@ -23,7 +23,7 @@ * Elasticsearch API name migration.deprecations * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Deprecations extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/CloseJob.php b/src/Elasticsearch/Endpoints/Ml/CloseJob.php index fbf61d392..8bad15e1f 100644 --- a/src/Elasticsearch/Endpoints/Ml/CloseJob.php +++ b/src/Elasticsearch/Endpoints/Ml/CloseJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.close_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class CloseJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php b/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php index 8c564c7b0..ba24838f0 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_calendar * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteCalendar extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php index 2bd987b17..b9bd75560 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_calendar_event * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteCalendarEvent extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php index d21e58ba5..792ed43d7 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_calendar_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteCalendarJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php index 4e6f655a9..2c0b17fa5 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php b/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php index 4cf1b635d..7d52f4968 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php b/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php index 786f17652..d65da015e 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.delete_expired_data * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteExpiredData extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php b/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php index b8978859b..eab26febf 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_filter * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteFilter extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php b/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php index 5f80a1072..c27113d1c 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_forecast * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteForecast extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteJob.php b/src/Elasticsearch/Endpoints/Ml/DeleteJob.php index 824749065..933985a2a 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteJob.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php b/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php index 5a695f559..3907d7173 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_model_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteModelSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php index b78626aad..a7d675614 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_trained_model * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteTrainedModel extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php index 527abfbf3..783825bdd 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_trained_model_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteTrainedModelAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php b/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php index 5a275ca52..21ac9a9dc 100644 --- a/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php +++ b/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.estimate_model_memory * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class EstimateModelMemory extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php b/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php index 83b84da62..8f400ab75 100644 --- a/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php +++ b/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.evaluate_data_frame * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class EvaluateDataFrame extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php index 332c0a8b8..8b033d09b 100644 --- a/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.explain_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ExplainDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php b/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php index 67c19fd63..a9604eeed 100644 --- a/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php +++ b/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php @@ -26,7 +26,7 @@ * Elasticsearch API name ml.find_file_structure * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class FindFileStructure extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/FlushJob.php b/src/Elasticsearch/Endpoints/Ml/FlushJob.php index d23b1c1da..9a6e73155 100644 --- a/src/Elasticsearch/Endpoints/Ml/FlushJob.php +++ b/src/Elasticsearch/Endpoints/Ml/FlushJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.flush_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class FlushJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/Forecast.php b/src/Elasticsearch/Endpoints/Ml/Forecast.php index 77a03be28..368f1f932 100644 --- a/src/Elasticsearch/Endpoints/Ml/Forecast.php +++ b/src/Elasticsearch/Endpoints/Ml/Forecast.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.forecast * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Forecast extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetBuckets.php b/src/Elasticsearch/Endpoints/Ml/GetBuckets.php index 960d0c9b1..34c0a0a67 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetBuckets.php +++ b/src/Elasticsearch/Endpoints/Ml/GetBuckets.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_buckets * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetBuckets extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php b/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php index f7f8d0072..779354f4e 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php +++ b/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_calendar_events * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetCalendarEvents extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetCalendars.php b/src/Elasticsearch/Endpoints/Ml/GetCalendars.php index 67384d0ba..71304066c 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetCalendars.php +++ b/src/Elasticsearch/Endpoints/Ml/GetCalendars.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_calendars * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetCalendars extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetCategories.php b/src/Elasticsearch/Endpoints/Ml/GetCategories.php index e955c4d2e..0dc6f1bec 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetCategories.php +++ b/src/Elasticsearch/Endpoints/Ml/GetCategories.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_categories * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetCategories extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php index ce212a4b9..dc5900ea6 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php index 8f4987e83..9673d2d23 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_data_frame_analytics_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetDataFrameAnalyticsStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php b/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php index 23db76a83..430477f04 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_datafeed_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetDatafeedStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php b/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php index 1dcc21954..025c22351 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_datafeeds * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetDatafeeds extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetFilters.php b/src/Elasticsearch/Endpoints/Ml/GetFilters.php index 525a8a342..e83bd9030 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetFilters.php +++ b/src/Elasticsearch/Endpoints/Ml/GetFilters.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_filters * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetFilters extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php b/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php index b69636e83..6bb0c1ab3 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php +++ b/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_influencers * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetInfluencers extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetJobStats.php b/src/Elasticsearch/Endpoints/Ml/GetJobStats.php index c570a3ade..d3aaf2e52 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetJobStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetJobStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_job_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetJobStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetJobs.php b/src/Elasticsearch/Endpoints/Ml/GetJobs.php index 3841ca791..1325f73b8 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetJobs.php +++ b/src/Elasticsearch/Endpoints/Ml/GetJobs.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_jobs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetJobs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php b/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php index a828d8ecc..f31eef1a0 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php +++ b/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_model_snapshots * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetModelSnapshots extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php b/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php index 0af3c4fd8..0b1174345 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php +++ b/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_overall_buckets * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetOverallBuckets extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetRecords.php b/src/Elasticsearch/Endpoints/Ml/GetRecords.php index dbcfb8eec..19179f50b 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetRecords.php +++ b/src/Elasticsearch/Endpoints/Ml/GetRecords.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_records * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetRecords extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php b/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php index 2ee51b799..6499411e8 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php +++ b/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_trained_models * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetTrainedModels extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php b/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php index e3ecc1f1f..1bf435e28 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_trained_models_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetTrainedModelsStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/Info.php b/src/Elasticsearch/Endpoints/Ml/Info.php index 8499edb16..45371546c 100644 --- a/src/Elasticsearch/Endpoints/Ml/Info.php +++ b/src/Elasticsearch/Endpoints/Ml/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/OpenJob.php b/src/Elasticsearch/Endpoints/Ml/OpenJob.php index b8714db8d..27a9c8d6a 100644 --- a/src/Elasticsearch/Endpoints/Ml/OpenJob.php +++ b/src/Elasticsearch/Endpoints/Ml/OpenJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.open_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class OpenJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php b/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php index 502533c96..2c6abffb8 100644 --- a/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php +++ b/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.post_calendar_events * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PostCalendarEvents extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PostData.php b/src/Elasticsearch/Endpoints/Ml/PostData.php index be1926759..8f0ff6156 100644 --- a/src/Elasticsearch/Endpoints/Ml/PostData.php +++ b/src/Elasticsearch/Endpoints/Ml/PostData.php @@ -27,7 +27,7 @@ * Elasticsearch API name ml.post_data * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PostData extends AbstractEndpoint { @@ -89,4 +89,5 @@ public function setJobId($job_id): PostData return $this; } + } diff --git a/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php index 895607eb1..b70fbb265 100644 --- a/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.preview_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PreviewDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php b/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php index d1509053b..8416aaf73 100644 --- a/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.preview_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PreviewDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutCalendar.php b/src/Elasticsearch/Endpoints/Ml/PutCalendar.php index 11a875597..0a659a1a1 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutCalendar.php +++ b/src/Elasticsearch/Endpoints/Ml/PutCalendar.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_calendar * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutCalendar extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php b/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php index e4565553a..cfe4db5b1 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php +++ b/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_calendar_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutCalendarJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php index 7d2bb38c9..b7a8caae6 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php b/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php index fa79dd533..cef395aff 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutFilter.php b/src/Elasticsearch/Endpoints/Ml/PutFilter.php index 61591a3ce..c37331598 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutFilter.php +++ b/src/Elasticsearch/Endpoints/Ml/PutFilter.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_filter * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutFilter extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutJob.php b/src/Elasticsearch/Endpoints/Ml/PutJob.php index a3fb4fd16..354653ff3 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutJob.php +++ b/src/Elasticsearch/Endpoints/Ml/PutJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutJob extends AbstractEndpoint { @@ -42,7 +42,12 @@ public function getURI(): string public function getParamWhitelist(): array { - return []; + return [ + 'ignore_unavailable', + 'allow_no_indices', + 'ignore_throttled', + 'expand_wildcards' + ]; } public function getMethod(): string diff --git a/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php b/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php index b890e54f2..3cff582f2 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php +++ b/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_trained_model * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutTrainedModel extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php b/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php index 622367a8c..897543327 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php +++ b/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_trained_model_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutTrainedModelAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/ResetJob.php b/src/Elasticsearch/Endpoints/Ml/ResetJob.php new file mode 100644 index 000000000..49acc0d77 --- /dev/null +++ b/src/Elasticsearch/Endpoints/Ml/ResetJob.php @@ -0,0 +1,64 @@ +job_id ?? null; + + if (isset($job_id)) { + return "/_ml/anomaly_detectors/$job_id/_reset"; + } + throw new RuntimeException('Missing parameter for the endpoint ml.reset_job'); + } + + public function getParamWhitelist(): array + { + return [ + 'wait_for_completion' + ]; + } + + public function getMethod(): string + { + return 'POST'; + } + + public function setJobId($job_id): ResetJob + { + if (isset($job_id) !== true) { + return $this; + } + $this->job_id = $job_id; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php b/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php index 37a9660ee..20fedb8b0 100644 --- a/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.revert_model_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class RevertModelSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php b/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php index 706e63454..fbfa11625 100644 --- a/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php +++ b/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.set_upgrade_mode * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class SetUpgradeMode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php index 4a28e0bd9..ad9d30c1d 100644 --- a/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.start_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class StartDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php b/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php index d92a84871..106c2ecad 100644 --- a/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.start_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class StartDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php index cae4c6a9b..3dda56473 100644 --- a/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.stop_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class StopDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php b/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php index 49a376747..ccb87e0f0 100644 --- a/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.stop_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class StopDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php index 852165086..8739f43d9 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class UpdateDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php b/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php index c55c9a5d6..620f10723 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class UpdateDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php b/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php index 359713923..564f0f253 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_filter * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class UpdateFilter extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateJob.php b/src/Elasticsearch/Endpoints/Ml/UpdateJob.php index 8512cf78a..0140f4266 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateJob.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class UpdateJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php b/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php index 153d82d57..211999253 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_model_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class UpdateModelSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php b/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php index 383f4449c..24a04ee13 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.upgrade_job_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class UpgradeJobSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/Validate.php b/src/Elasticsearch/Endpoints/Ml/Validate.php index 185a920c8..b1b01d152 100644 --- a/src/Elasticsearch/Endpoints/Ml/Validate.php +++ b/src/Elasticsearch/Endpoints/Ml/Validate.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.validate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Validate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php b/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php index e945d9659..b290a0309 100644 --- a/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php +++ b/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.validate_detector * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ValidateDetector extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Monitoring/Bulk.php b/src/Elasticsearch/Endpoints/Monitoring/Bulk.php index fa482bc27..9abfc80de 100644 --- a/src/Elasticsearch/Endpoints/Monitoring/Bulk.php +++ b/src/Elasticsearch/Endpoints/Monitoring/Bulk.php @@ -26,7 +26,7 @@ * Elasticsearch API name monitoring.bulk * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Bulk extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Msearch.php b/src/Elasticsearch/Endpoints/Msearch.php index 199725a54..826baed63 100644 --- a/src/Elasticsearch/Endpoints/Msearch.php +++ b/src/Elasticsearch/Endpoints/Msearch.php @@ -26,7 +26,7 @@ * Elasticsearch API name msearch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Msearch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/MsearchTemplate.php b/src/Elasticsearch/Endpoints/MsearchTemplate.php index e2703497b..34bd5d067 100644 --- a/src/Elasticsearch/Endpoints/MsearchTemplate.php +++ b/src/Elasticsearch/Endpoints/MsearchTemplate.php @@ -26,7 +26,7 @@ * Elasticsearch API name msearch_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class MsearchTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/HotThreads.php b/src/Elasticsearch/Endpoints/Nodes/HotThreads.php index 87caef3e3..98825dddc 100644 --- a/src/Elasticsearch/Endpoints/Nodes/HotThreads.php +++ b/src/Elasticsearch/Endpoints/Nodes/HotThreads.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.hot_threads * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class HotThreads extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/Info.php b/src/Elasticsearch/Endpoints/Nodes/Info.php index 8b438f856..a578754aa 100644 --- a/src/Elasticsearch/Endpoints/Nodes/Info.php +++ b/src/Elasticsearch/Endpoints/Nodes/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php b/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php index 1b03c17d3..95be2b017 100644 --- a/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php +++ b/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.reload_secure_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ReloadSecureSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/Stats.php b/src/Elasticsearch/Endpoints/Nodes/Stats.php index 96f3e5378..fc052bd8f 100644 --- a/src/Elasticsearch/Endpoints/Nodes/Stats.php +++ b/src/Elasticsearch/Endpoints/Nodes/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/Usage.php b/src/Elasticsearch/Endpoints/Nodes/Usage.php index 9391499c6..8fc9435bb 100644 --- a/src/Elasticsearch/Endpoints/Nodes/Usage.php +++ b/src/Elasticsearch/Endpoints/Nodes/Usage.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.usage * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Usage extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/OpenPointInTime.php b/src/Elasticsearch/Endpoints/OpenPointInTime.php index f51161748..d7eeaf814 100644 --- a/src/Elasticsearch/Endpoints/OpenPointInTime.php +++ b/src/Elasticsearch/Endpoints/OpenPointInTime.php @@ -23,7 +23,7 @@ * Elasticsearch API name open_point_in_time * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class OpenPointInTime extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ping.php b/src/Elasticsearch/Endpoints/Ping.php index 0b0aa1705..64f7d9ced 100644 --- a/src/Elasticsearch/Endpoints/Ping.php +++ b/src/Elasticsearch/Endpoints/Ping.php @@ -23,7 +23,7 @@ * Elasticsearch API name ping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Ping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/PutScript.php b/src/Elasticsearch/Endpoints/PutScript.php index a4fc6ac7f..16a395dce 100644 --- a/src/Elasticsearch/Endpoints/PutScript.php +++ b/src/Elasticsearch/Endpoints/PutScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name put_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/RankEval.php b/src/Elasticsearch/Endpoints/RankEval.php index b1e24ca50..85d338009 100644 --- a/src/Elasticsearch/Endpoints/RankEval.php +++ b/src/Elasticsearch/Endpoints/RankEval.php @@ -23,7 +23,7 @@ * Elasticsearch API name rank_eval * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class RankEval extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Reindex.php b/src/Elasticsearch/Endpoints/Reindex.php index bab3642d8..91d48a53d 100644 --- a/src/Elasticsearch/Endpoints/Reindex.php +++ b/src/Elasticsearch/Endpoints/Reindex.php @@ -23,7 +23,7 @@ * Elasticsearch API name reindex * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Reindex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ReindexRethrottle.php b/src/Elasticsearch/Endpoints/ReindexRethrottle.php index 120fb8b86..03ec27392 100644 --- a/src/Elasticsearch/Endpoints/ReindexRethrottle.php +++ b/src/Elasticsearch/Endpoints/ReindexRethrottle.php @@ -24,7 +24,7 @@ * Elasticsearch API name reindex_rethrottle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ReindexRethrottle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/RenderSearchTemplate.php b/src/Elasticsearch/Endpoints/RenderSearchTemplate.php index 202509260..de8e09fd8 100644 --- a/src/Elasticsearch/Endpoints/RenderSearchTemplate.php +++ b/src/Elasticsearch/Endpoints/RenderSearchTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name render_search_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class RenderSearchTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php b/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php index 13e9057a2..426529f25 100644 --- a/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.delete_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/GetJobs.php b/src/Elasticsearch/Endpoints/Rollup/GetJobs.php index 59f48e4aa..219a532bd 100644 --- a/src/Elasticsearch/Endpoints/Rollup/GetJobs.php +++ b/src/Elasticsearch/Endpoints/Rollup/GetJobs.php @@ -23,7 +23,7 @@ * Elasticsearch API name rollup.get_jobs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetJobs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php b/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php index 1e532271e..c0b950a3c 100644 --- a/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php +++ b/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php @@ -23,7 +23,7 @@ * Elasticsearch API name rollup.get_rollup_caps * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetRollupCaps extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php b/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php index f1ee2e649..49821f66b 100644 --- a/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php +++ b/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.get_rollup_index_caps * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetRollupIndexCaps extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/PutJob.php b/src/Elasticsearch/Endpoints/Rollup/PutJob.php index 4bd2cafde..3ee7b41bb 100644 --- a/src/Elasticsearch/Endpoints/Rollup/PutJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/PutJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.put_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/Rollup.php b/src/Elasticsearch/Endpoints/Rollup/Rollup.php index 4542f2239..960d82cb1 100644 --- a/src/Elasticsearch/Endpoints/Rollup/Rollup.php +++ b/src/Elasticsearch/Endpoints/Rollup/Rollup.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.rollup * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Rollup extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php b/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php index f64811a33..3f7f9ac09 100644 --- a/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php +++ b/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.rollup_search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class RollupSearch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/StartJob.php b/src/Elasticsearch/Endpoints/Rollup/StartJob.php index 084c16d23..097cd197c 100644 --- a/src/Elasticsearch/Endpoints/Rollup/StartJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/StartJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.start_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class StartJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/StopJob.php b/src/Elasticsearch/Endpoints/Rollup/StopJob.php index 941182cf2..f0476e73f 100644 --- a/src/Elasticsearch/Endpoints/Rollup/StopJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/StopJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.stop_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class StopJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php b/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php index 788536bf6..d54e20c79 100644 --- a/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php +++ b/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php @@ -23,7 +23,7 @@ * Elasticsearch API name scripts_painless_execute * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ScriptsPainlessExecute extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Scroll.php b/src/Elasticsearch/Endpoints/Scroll.php index 0c40017a1..059d8f071 100644 --- a/src/Elasticsearch/Endpoints/Scroll.php +++ b/src/Elasticsearch/Endpoints/Scroll.php @@ -23,7 +23,7 @@ * Elasticsearch API name scroll * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Scroll extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Search.php b/src/Elasticsearch/Endpoints/Search.php index c0d486490..3ad723ca4 100644 --- a/src/Elasticsearch/Endpoints/Search.php +++ b/src/Elasticsearch/Endpoints/Search.php @@ -23,7 +23,7 @@ * Elasticsearch API name search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Search extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchShards.php b/src/Elasticsearch/Endpoints/SearchShards.php index d8fde6c94..adf3e714c 100644 --- a/src/Elasticsearch/Endpoints/SearchShards.php +++ b/src/Elasticsearch/Endpoints/SearchShards.php @@ -23,7 +23,7 @@ * Elasticsearch API name search_shards * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class SearchShards extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchTemplate.php b/src/Elasticsearch/Endpoints/SearchTemplate.php index b18cfc21a..c2b9b41df 100644 --- a/src/Elasticsearch/Endpoints/SearchTemplate.php +++ b/src/Elasticsearch/Endpoints/SearchTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name search_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class SearchTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php index 48d298b27..487283232 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name searchable_snapshots.cache_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class CacheStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php index 4697072bb..15f586099 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php @@ -23,7 +23,7 @@ * Elasticsearch API name searchable_snapshots.clear_cache * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ClearCache extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php index 47bdcfd40..2028d76d1 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php @@ -24,7 +24,7 @@ * Elasticsearch API name searchable_snapshots.mount * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Mount extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php index d6886de96..814eaac32 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name searchable_snapshots.repository_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class RepositoryStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php index 17369b01d..c72e997c6 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name searchable_snapshots.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/Authenticate.php b/src/Elasticsearch/Endpoints/Security/Authenticate.php index f1d742bcb..7d6aeff8e 100644 --- a/src/Elasticsearch/Endpoints/Security/Authenticate.php +++ b/src/Elasticsearch/Endpoints/Security/Authenticate.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.authenticate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Authenticate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ChangePassword.php b/src/Elasticsearch/Endpoints/Security/ChangePassword.php index c30117c02..9c3f29ee9 100644 --- a/src/Elasticsearch/Endpoints/Security/ChangePassword.php +++ b/src/Elasticsearch/Endpoints/Security/ChangePassword.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.change_password * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ChangePassword extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php b/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php index fb1f352fe..e4e53c79f 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php +++ b/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_api_key_cache * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ClearApiKeyCache extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php b/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php index 52e77a487..e615d9e01 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ClearCachedPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php b/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php index 006004776..12d3302f2 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_realms * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ClearCachedRealms extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php b/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php index 1f3be3f76..4fad3a99b 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_roles * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ClearCachedRoles extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php b/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php index ee3b0c0e3..bf9b47c3d 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_service_tokens * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ClearCachedServiceTokens extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/CreateApiKey.php b/src/Elasticsearch/Endpoints/Security/CreateApiKey.php index 9cb47ec8e..0027394d2 100644 --- a/src/Elasticsearch/Endpoints/Security/CreateApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/CreateApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.create_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class CreateApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php b/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php index 5dc2541f6..49967e1fa 100644 --- a/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php +++ b/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.create_service_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class CreateServiceToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php b/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php index fc709daf5..cfc34d4c8 100644 --- a/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeletePrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteRole.php b/src/Elasticsearch/Endpoints/Security/DeleteRole.php index b189e70d3..7db1e4dee 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteRole.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteRole.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_role * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteRole extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php b/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php index d3820daf8..2bb8dd212 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_role_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteRoleMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php b/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php index 3739ced1f..20e75afdb 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_service_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteServiceToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteUser.php b/src/Elasticsearch/Endpoints/Security/DeleteUser.php index 4231c1a15..69aafcfa3 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteUser.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DisableUser.php b/src/Elasticsearch/Endpoints/Security/DisableUser.php index 574f5e982..d408f5aea 100644 --- a/src/Elasticsearch/Endpoints/Security/DisableUser.php +++ b/src/Elasticsearch/Endpoints/Security/DisableUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.disable_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DisableUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/EnableUser.php b/src/Elasticsearch/Endpoints/Security/EnableUser.php index ec3f83219..cf3b336ad 100644 --- a/src/Elasticsearch/Endpoints/Security/EnableUser.php +++ b/src/Elasticsearch/Endpoints/Security/EnableUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.enable_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class EnableUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetApiKey.php b/src/Elasticsearch/Endpoints/Security/GetApiKey.php index 044306531..abd87fb50 100644 --- a/src/Elasticsearch/Endpoints/Security/GetApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/GetApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php b/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php index f5014cd27..51eceb82c 100644 --- a/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_builtin_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetBuiltinPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetPrivileges.php b/src/Elasticsearch/Endpoints/Security/GetPrivileges.php index 1970f0d13..4981b829c 100644 --- a/src/Elasticsearch/Endpoints/Security/GetPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/GetPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetRole.php b/src/Elasticsearch/Endpoints/Security/GetRole.php index 0bfea076c..c1f702f74 100644 --- a/src/Elasticsearch/Endpoints/Security/GetRole.php +++ b/src/Elasticsearch/Endpoints/Security/GetRole.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_role * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetRole extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php b/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php index d7a5e5ecb..cb48225ac 100644 --- a/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php +++ b/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_role_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetRoleMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php b/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php index 9b03b8638..955efb0a1 100644 --- a/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php +++ b/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_service_accounts * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetServiceAccounts extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php b/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php index 667939683..e728ca72f 100644 --- a/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php +++ b/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.get_service_credentials * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetServiceCredentials extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetToken.php b/src/Elasticsearch/Endpoints/Security/GetToken.php index 6e157e620..030d1ef94 100644 --- a/src/Elasticsearch/Endpoints/Security/GetToken.php +++ b/src/Elasticsearch/Endpoints/Security/GetToken.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetUser.php b/src/Elasticsearch/Endpoints/Security/GetUser.php index 40d9aad46..92b040806 100644 --- a/src/Elasticsearch/Endpoints/Security/GetUser.php +++ b/src/Elasticsearch/Endpoints/Security/GetUser.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php b/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php index e72b4b09b..89509e80e 100644 --- a/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_user_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetUserPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GrantApiKey.php b/src/Elasticsearch/Endpoints/Security/GrantApiKey.php index 32395c8c5..34c122c2a 100644 --- a/src/Elasticsearch/Endpoints/Security/GrantApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/GrantApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.grant_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GrantApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/HasPrivileges.php b/src/Elasticsearch/Endpoints/Security/HasPrivileges.php index 83b36e8d5..163fd5ba2 100644 --- a/src/Elasticsearch/Endpoints/Security/HasPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/HasPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.has_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class HasPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php b/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php index 532947bc2..1fd54e568 100644 --- a/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.invalidate_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class InvalidateApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/InvalidateToken.php b/src/Elasticsearch/Endpoints/Security/InvalidateToken.php index 8139838e7..8b40abbf2 100644 --- a/src/Elasticsearch/Endpoints/Security/InvalidateToken.php +++ b/src/Elasticsearch/Endpoints/Security/InvalidateToken.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.invalidate_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class InvalidateToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutPrivileges.php b/src/Elasticsearch/Endpoints/Security/PutPrivileges.php index 4fe219902..505c3c8e8 100644 --- a/src/Elasticsearch/Endpoints/Security/PutPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/PutPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.put_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutRole.php b/src/Elasticsearch/Endpoints/Security/PutRole.php index bc98fb63e..fd794c5b6 100644 --- a/src/Elasticsearch/Endpoints/Security/PutRole.php +++ b/src/Elasticsearch/Endpoints/Security/PutRole.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.put_role * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutRole extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php b/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php index a3cc8d62f..b660d0148 100644 --- a/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php +++ b/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.put_role_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutRoleMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutUser.php b/src/Elasticsearch/Endpoints/Security/PutUser.php index fce20a77a..14cfc1a9e 100644 --- a/src/Elasticsearch/Endpoints/Security/PutUser.php +++ b/src/Elasticsearch/Endpoints/Security/PutUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.put_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php b/src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php new file mode 100644 index 000000000..71190b8df --- /dev/null +++ b/src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php @@ -0,0 +1,56 @@ +body = $body; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php b/src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php new file mode 100644 index 000000000..5c83475c9 --- /dev/null +++ b/src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php @@ -0,0 +1,56 @@ +body = $body; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Security/SamlInvalidate.php b/src/Elasticsearch/Endpoints/Security/SamlInvalidate.php new file mode 100644 index 000000000..3638b623c --- /dev/null +++ b/src/Elasticsearch/Endpoints/Security/SamlInvalidate.php @@ -0,0 +1,56 @@ +body = $body; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Security/SamlLogout.php b/src/Elasticsearch/Endpoints/Security/SamlLogout.php new file mode 100644 index 000000000..489d4611d --- /dev/null +++ b/src/Elasticsearch/Endpoints/Security/SamlLogout.php @@ -0,0 +1,56 @@ +body = $body; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php b/src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php new file mode 100644 index 000000000..e8e54cd4d --- /dev/null +++ b/src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php @@ -0,0 +1,56 @@ +body = $body; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php b/src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php new file mode 100644 index 000000000..330f32b47 --- /dev/null +++ b/src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php @@ -0,0 +1,62 @@ +realm_name ?? null; + + if (isset($realm_name)) { + return "/_security/saml/metadata/$realm_name"; + } + throw new RuntimeException('Missing parameter for the endpoint security.saml_service_provider_metadata'); + } + + public function getParamWhitelist(): array + { + return []; + } + + public function getMethod(): string + { + return 'GET'; + } + + public function setRealmName($realm_name): SamlServiceProviderMetadata + { + if (isset($realm_name) !== true) { + return $this; + } + $this->realm_name = $realm_name; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php b/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php index af8d38f87..a77b3c279 100644 --- a/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php +++ b/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php @@ -24,7 +24,7 @@ * Elasticsearch API name shutdown.delete_node * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteNode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Shutdown/GetNode.php b/src/Elasticsearch/Endpoints/Shutdown/GetNode.php index 80ce07b66..27992ad35 100644 --- a/src/Elasticsearch/Endpoints/Shutdown/GetNode.php +++ b/src/Elasticsearch/Endpoints/Shutdown/GetNode.php @@ -23,7 +23,7 @@ * Elasticsearch API name shutdown.get_node * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetNode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Shutdown/PutNode.php b/src/Elasticsearch/Endpoints/Shutdown/PutNode.php index ab30d23b3..1bf526c62 100644 --- a/src/Elasticsearch/Endpoints/Shutdown/PutNode.php +++ b/src/Elasticsearch/Endpoints/Shutdown/PutNode.php @@ -24,7 +24,7 @@ * Elasticsearch API name shutdown.put_node * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutNode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php b/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php index 2616ceaf9..e5e132f0c 100644 --- a/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name slm.delete_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php b/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php index 9ff0e7b4d..b68d41e61 100644 --- a/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name slm.execute_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ExecuteLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php b/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php index 9d840549c..3a70deaf0 100644 --- a/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php +++ b/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.execute_retention * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ExecuteRetention extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php b/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php index 08d9d22e1..fca1747f3 100644 --- a/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.get_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/GetStats.php b/src/Elasticsearch/Endpoints/Slm/GetStats.php index 30a3b0457..7f30d1fca 100644 --- a/src/Elasticsearch/Endpoints/Slm/GetStats.php +++ b/src/Elasticsearch/Endpoints/Slm/GetStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.get_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/GetStatus.php b/src/Elasticsearch/Endpoints/Slm/GetStatus.php index 747d5dd6f..363396527 100644 --- a/src/Elasticsearch/Endpoints/Slm/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Slm/GetStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php b/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php index 7e4e86df3..62157a11c 100644 --- a/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name slm.put_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/Start.php b/src/Elasticsearch/Endpoints/Slm/Start.php index 60943f267..e2b21db1a 100644 --- a/src/Elasticsearch/Endpoints/Slm/Start.php +++ b/src/Elasticsearch/Endpoints/Slm/Start.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.start * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Start extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/Stop.php b/src/Elasticsearch/Endpoints/Slm/Stop.php index 02d800ef3..fe64519e3 100644 --- a/src/Elasticsearch/Endpoints/Slm/Stop.php +++ b/src/Elasticsearch/Endpoints/Slm/Stop.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.stop * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Stop extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php b/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php index db5cafc33..38ad7714f 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.cleanup_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class CleanupRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php b/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php index 27730a6ef..84e8624c0 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php +++ b/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.clone * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class CloneSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Create.php b/src/Elasticsearch/Endpoints/Snapshot/Create.php index ee3e50b85..4b2e8044b 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Create.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php b/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php index 8aa18f183..a3165e475 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.create_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class CreateRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Delete.php b/src/Elasticsearch/Endpoints/Snapshot/Delete.php index 169ee906d..70aab60ca 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Delete.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php b/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php index a6ea88124..8440f5bbb 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.delete_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Get.php b/src/Elasticsearch/Endpoints/Snapshot/Get.php index 553346e7b..2872c65c0 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Get.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Get extends AbstractEndpoint { @@ -48,6 +48,7 @@ public function getParamWhitelist(): array 'master_timeout', 'ignore_unavailable', 'index_details', + 'include_repository', 'verbose' ]; } diff --git a/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php b/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php index 253d44488..0828e8e7c 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php @@ -23,7 +23,7 @@ * Elasticsearch API name snapshot.get_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php b/src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php new file mode 100644 index 000000000..f049974f3 --- /dev/null +++ b/src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php @@ -0,0 +1,74 @@ +repository ?? null; + + if (isset($repository)) { + return "/_snapshot/$repository/_analyze"; + } + throw new RuntimeException('Missing parameter for the endpoint snapshot.repository_analyze'); + } + + public function getParamWhitelist(): array + { + return [ + 'blob_count', + 'concurrency', + 'read_node_count', + 'early_read_node_count', + 'seed', + 'rare_action_probability', + 'max_blob_size', + 'max_total_data_size', + 'timeout', + 'detailed', + 'rarely_abort_writes' + ]; + } + + public function getMethod(): string + { + return 'POST'; + } + + public function setRepository($repository): RepositoryAnalyze + { + if (isset($repository) !== true) { + return $this; + } + $this->repository = $repository; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Snapshot/Restore.php b/src/Elasticsearch/Endpoints/Snapshot/Restore.php index 1c2a1f3ea..c73a2448a 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Restore.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Restore.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.restore * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Restore extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Status.php b/src/Elasticsearch/Endpoints/Snapshot/Status.php index e50da98ed..95b0dcb0d 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Status.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Status.php @@ -23,7 +23,7 @@ * Elasticsearch API name snapshot.status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Status extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php b/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php index 8cfb72984..604e71a24 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.verify_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class VerifyRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/ClearCursor.php b/src/Elasticsearch/Endpoints/Sql/ClearCursor.php index a1e04175d..eaaf93b2a 100644 --- a/src/Elasticsearch/Endpoints/Sql/ClearCursor.php +++ b/src/Elasticsearch/Endpoints/Sql/ClearCursor.php @@ -23,7 +23,7 @@ * Elasticsearch API name sql.clear_cursor * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ClearCursor extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/DeleteAsync.php b/src/Elasticsearch/Endpoints/Sql/DeleteAsync.php new file mode 100644 index 000000000..676715f0b --- /dev/null +++ b/src/Elasticsearch/Endpoints/Sql/DeleteAsync.php @@ -0,0 +1,51 @@ +id ?? null; + + if (isset($id)) { + return "/_sql/async/delete/$id"; + } + throw new RuntimeException('Missing parameter for the endpoint sql.delete_async'); + } + + public function getParamWhitelist(): array + { + return []; + } + + public function getMethod(): string + { + return 'DELETE'; + } +} diff --git a/src/Elasticsearch/Endpoints/Sql/GetAsync.php b/src/Elasticsearch/Endpoints/Sql/GetAsync.php new file mode 100644 index 000000000..4c33f0d66 --- /dev/null +++ b/src/Elasticsearch/Endpoints/Sql/GetAsync.php @@ -0,0 +1,56 @@ +id ?? null; + + if (isset($id)) { + return "/_sql/async/$id"; + } + throw new RuntimeException('Missing parameter for the endpoint sql.get_async'); + } + + public function getParamWhitelist(): array + { + return [ + 'delimiter', + 'format', + 'keep_alive', + 'wait_for_completion_timeout' + ]; + } + + public function getMethod(): string + { + return 'GET'; + } +} diff --git a/src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php b/src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php new file mode 100644 index 000000000..ef65ce578 --- /dev/null +++ b/src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php @@ -0,0 +1,51 @@ +id ?? null; + + if (isset($id)) { + return "/_sql/async/status/$id"; + } + throw new RuntimeException('Missing parameter for the endpoint sql.get_async_status'); + } + + public function getParamWhitelist(): array + { + return []; + } + + public function getMethod(): string + { + return 'GET'; + } +} diff --git a/src/Elasticsearch/Endpoints/Sql/Query.php b/src/Elasticsearch/Endpoints/Sql/Query.php index dac890351..0f7961802 100644 --- a/src/Elasticsearch/Endpoints/Sql/Query.php +++ b/src/Elasticsearch/Endpoints/Sql/Query.php @@ -23,7 +23,7 @@ * Elasticsearch API name sql.query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Query extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/Translate.php b/src/Elasticsearch/Endpoints/Sql/Translate.php index 03016e3f4..02979dd59 100644 --- a/src/Elasticsearch/Endpoints/Sql/Translate.php +++ b/src/Elasticsearch/Endpoints/Sql/Translate.php @@ -23,7 +23,7 @@ * Elasticsearch API name sql.translate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Translate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ssl/Certificates.php b/src/Elasticsearch/Endpoints/Ssl/Certificates.php index 940eb845c..37579e28a 100644 --- a/src/Elasticsearch/Endpoints/Ssl/Certificates.php +++ b/src/Elasticsearch/Endpoints/Ssl/Certificates.php @@ -23,7 +23,7 @@ * Elasticsearch API name ssl.certificates * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Certificates extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Tasks/Cancel.php b/src/Elasticsearch/Endpoints/Tasks/Cancel.php index d45f431b4..39d9dce4a 100644 --- a/src/Elasticsearch/Endpoints/Tasks/Cancel.php +++ b/src/Elasticsearch/Endpoints/Tasks/Cancel.php @@ -23,7 +23,7 @@ * Elasticsearch API name tasks.cancel * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Cancel extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Tasks/Get.php b/src/Elasticsearch/Endpoints/Tasks/Get.php index d859dd22d..4be3ff904 100644 --- a/src/Elasticsearch/Endpoints/Tasks/Get.php +++ b/src/Elasticsearch/Endpoints/Tasks/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name tasks.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Tasks/ListTasks.php b/src/Elasticsearch/Endpoints/Tasks/ListTasks.php index 51b6b54e8..7dc07a9e9 100644 --- a/src/Elasticsearch/Endpoints/Tasks/ListTasks.php +++ b/src/Elasticsearch/Endpoints/Tasks/ListTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name tasks.list * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ListTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/TermVectors.php b/src/Elasticsearch/Endpoints/TermVectors.php index 811ff73f8..67ce6ed42 100644 --- a/src/Elasticsearch/Endpoints/TermVectors.php +++ b/src/Elasticsearch/Endpoints/TermVectors.php @@ -24,7 +24,7 @@ * Elasticsearch API name termvectors * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class TermVectors extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/TermsEnum.php b/src/Elasticsearch/Endpoints/TermsEnum.php new file mode 100644 index 000000000..765a31377 --- /dev/null +++ b/src/Elasticsearch/Endpoints/TermsEnum.php @@ -0,0 +1,63 @@ +index ?? null; + + if (isset($index)) { + return "/$index/_terms_enum"; + } + throw new RuntimeException('Missing parameter for the endpoint terms_enum'); + } + + public function getParamWhitelist(): array + { + return [ + + ]; + } + + public function getMethod(): string + { + return isset($this->body) ? 'POST' : 'GET'; + } + + public function setBody($body): TermsEnum + { + if (isset($body) !== true) { + return $this; + } + $this->body = $body; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php b/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php index d24f5108e..f1aacab2d 100644 --- a/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php +++ b/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php @@ -26,7 +26,7 @@ * Elasticsearch API name text_structure.find_structure * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class FindStructure extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php b/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php index f0e47f142..6333185e4 100644 --- a/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.delete_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/GetTransform.php b/src/Elasticsearch/Endpoints/Transform/GetTransform.php index 2c9664c48..5c5b4a854 100644 --- a/src/Elasticsearch/Endpoints/Transform/GetTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/GetTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name transform.get_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php b/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php index 3dd0a8a91..e3c7af337 100644 --- a/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php +++ b/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.get_transform_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetTransformStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php b/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php index b5838add0..882f2ab89 100644 --- a/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name transform.preview_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PreviewTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/PutTransform.php b/src/Elasticsearch/Endpoints/Transform/PutTransform.php index d253768a1..8d5a0c2e9 100644 --- a/src/Elasticsearch/Endpoints/Transform/PutTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/PutTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.put_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/StartTransform.php b/src/Elasticsearch/Endpoints/Transform/StartTransform.php index 85280c79d..07085c263 100644 --- a/src/Elasticsearch/Endpoints/Transform/StartTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/StartTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.start_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class StartTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/StopTransform.php b/src/Elasticsearch/Endpoints/Transform/StopTransform.php index b1fceb760..ec6210956 100644 --- a/src/Elasticsearch/Endpoints/Transform/StopTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/StopTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.stop_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class StopTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php b/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php index 567c548a2..489f2e671 100644 --- a/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.update_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class UpdateTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Update.php b/src/Elasticsearch/Endpoints/Update.php index 158f38770..c7755d25e 100644 --- a/src/Elasticsearch/Endpoints/Update.php +++ b/src/Elasticsearch/Endpoints/Update.php @@ -24,7 +24,7 @@ * Elasticsearch API name update * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Update extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/UpdateByQuery.php b/src/Elasticsearch/Endpoints/UpdateByQuery.php index 45ef5c6ef..1d0ae18ca 100644 --- a/src/Elasticsearch/Endpoints/UpdateByQuery.php +++ b/src/Elasticsearch/Endpoints/UpdateByQuery.php @@ -24,7 +24,7 @@ * Elasticsearch API name update_by_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class UpdateByQuery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php b/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php index 866bbb23e..28fb9437a 100644 --- a/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php +++ b/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php @@ -24,7 +24,7 @@ * Elasticsearch API name update_by_query_rethrottle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class UpdateByQueryRethrottle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/AckWatch.php b/src/Elasticsearch/Endpoints/Watcher/AckWatch.php index 2049db77d..88a18fb78 100644 --- a/src/Elasticsearch/Endpoints/Watcher/AckWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/AckWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.ack_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class AckWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php b/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php index 0c1b4a604..1542e71c7 100644 --- a/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.activate_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ActivateWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php b/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php index f20e57fd9..9125e7b4c 100644 --- a/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.deactivate_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeactivateWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php b/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php index 2fe9f560d..bb32c9136 100644 --- a/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.delete_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DeleteWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php b/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php index 87c13a2d4..321d01a0f 100644 --- a/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.execute_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ExecuteWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/GetWatch.php b/src/Elasticsearch/Endpoints/Watcher/GetWatch.php index c21055eff..5e1ac141a 100644 --- a/src/Elasticsearch/Endpoints/Watcher/GetWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/GetWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.get_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GetWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/PutWatch.php b/src/Elasticsearch/Endpoints/Watcher/PutWatch.php index f365448f2..5cc2e8c30 100644 --- a/src/Elasticsearch/Endpoints/Watcher/PutWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/PutWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.put_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class PutWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php b/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php index df3b2a8e8..86bf6b463 100644 --- a/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php +++ b/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.query_watches * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class QueryWatches extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/Start.php b/src/Elasticsearch/Endpoints/Watcher/Start.php index 96eaace94..4e0e21d23 100644 --- a/src/Elasticsearch/Endpoints/Watcher/Start.php +++ b/src/Elasticsearch/Endpoints/Watcher/Start.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.start * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Start extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/Stats.php b/src/Elasticsearch/Endpoints/Watcher/Stats.php index a45432bf2..106385f30 100644 --- a/src/Elasticsearch/Endpoints/Watcher/Stats.php +++ b/src/Elasticsearch/Endpoints/Watcher/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/Stop.php b/src/Elasticsearch/Endpoints/Watcher/Stop.php index a6ee34b16..8f3b7fea5 100644 --- a/src/Elasticsearch/Endpoints/Watcher/Stop.php +++ b/src/Elasticsearch/Endpoints/Watcher/Stop.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.stop * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Stop extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Xpack/Info.php b/src/Elasticsearch/Endpoints/Xpack/Info.php index 6ebfe5750..c52918d11 100644 --- a/src/Elasticsearch/Endpoints/Xpack/Info.php +++ b/src/Elasticsearch/Endpoints/Xpack/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name xpack.info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Xpack/Usage.php b/src/Elasticsearch/Endpoints/Xpack/Usage.php index 4427868eb..39f124fa7 100644 --- a/src/Elasticsearch/Endpoints/Xpack/Usage.php +++ b/src/Elasticsearch/Endpoints/Xpack/Usage.php @@ -23,7 +23,7 @@ * Elasticsearch API name xpack.usage * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class Usage extends AbstractEndpoint { diff --git a/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php b/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php index 056cb2639..0c81f87c9 100644 --- a/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php +++ b/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php @@ -22,12 +22,14 @@ * Class AsyncSearchNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class AsyncSearchNamespace extends AbstractNamespace { /** + * Deletes an async search by ID. If the search is still running, the search request will be cancelled. Otherwise, the saved search results are deleted. + * * $params['id'] = (string) The async search ID * * @param array $params Associative array of parameters @@ -46,6 +48,8 @@ public function delete(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves the results of a previously submitted async search request given its ID. + * * $params['id'] = (string) The async search ID * $params['wait_for_completion_timeout'] = (time) Specify the time that the request should block waiting for the final response * $params['keep_alive'] = (time) Specify the time interval in which the results (partial or final) for this search will be available @@ -67,6 +71,8 @@ public function get(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves the status of a previously submitted async search request given its ID. + * * $params['id'] = (string) The async search ID * * @param array $params Associative array of parameters @@ -85,6 +91,8 @@ public function status(array $params = []) return $this->performRequest($endpoint); } /** + * Executes a search request asynchronously. + * * $params['index'] = (list) A comma-separated list of index names to search; use `_all` or empty string to perform the operation on all indices * $params['wait_for_completion_timeout'] = (time) Specify the time that the request should block waiting for the final response (Default = 1s) * $params['keep_on_completion'] = (boolean) Control whether the response should be stored in the cluster if it completed within the provided [wait_for_completion] time (default: false) (Default = false) diff --git a/src/Elasticsearch/Namespaces/AutoscalingNamespace.php b/src/Elasticsearch/Namespaces/AutoscalingNamespace.php index 9a48a022a..0eb8ba5b6 100644 --- a/src/Elasticsearch/Namespaces/AutoscalingNamespace.php +++ b/src/Elasticsearch/Namespaces/AutoscalingNamespace.php @@ -22,12 +22,14 @@ * Class AutoscalingNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class AutoscalingNamespace extends AbstractNamespace { /** + * Deletes an autoscaling policy. Designed for indirect use by ECE/ESS and ECK. Direct use is not supported. + * * $params['name'] = (string) the name of the autoscaling policy * * @param array $params Associative array of parameters @@ -45,6 +47,14 @@ public function deleteAutoscalingPolicy(array $params = []) return $this->performRequest($endpoint); } + /** + * Gets the current autoscaling capacity based on the configured autoscaling policy. Designed for indirect use by ECE/ESS and ECK. Direct use is not supported. + * + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/autoscaling-get-autoscaling-capacity.html + */ public function getAutoscalingCapacity(array $params = []) { @@ -55,6 +65,8 @@ public function getAutoscalingCapacity(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves an autoscaling policy. Designed for indirect use by ECE/ESS and ECK. Direct use is not supported. + * * $params['name'] = (string) the name of the autoscaling policy * * @param array $params Associative array of parameters @@ -73,6 +85,8 @@ public function getAutoscalingPolicy(array $params = []) return $this->performRequest($endpoint); } /** + * Creates a new autoscaling policy. Designed for indirect use by ECE/ESS and ECK. Direct use is not supported. + * * $params['name'] = (string) the name of the autoscaling policy * $params['body'] = (array) the specification of the autoscaling policy (Required) * diff --git a/src/Elasticsearch/Namespaces/CatNamespace.php b/src/Elasticsearch/Namespaces/CatNamespace.php index f47e444d1..3287e22ae 100644 --- a/src/Elasticsearch/Namespaces/CatNamespace.php +++ b/src/Elasticsearch/Namespaces/CatNamespace.php @@ -22,12 +22,14 @@ * Class CatNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class CatNamespace extends AbstractNamespace { /** + * Shows information about currently configured aliases to indices including filter and routing infos. + * * $params['name'] = (list) A comma-separated list of alias names to return * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) @@ -53,6 +55,8 @@ public function aliases(array $params = []) return $this->performRequest($endpoint); } /** + * Provides a snapshot of how many shards are allocated to each data node and how much disk space they are using. + * * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb) @@ -79,6 +83,8 @@ public function allocation(array $params = []) return $this->performRequest($endpoint); } /** + * Provides quick access to the document count of the entire cluster, or individual indices. + * * $params['index'] = (list) A comma-separated list of index names to limit the returned information * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['h'] = (list) Comma-separated list of column names to display @@ -102,6 +108,8 @@ public function count(array $params = []) return $this->performRequest($endpoint); } /** + * Shows how much heap memory is currently being used by fielddata on every data node in the cluster. + * * $params['fields'] = (list) A comma-separated list of fields to return the fielddata size * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb) @@ -126,6 +134,8 @@ public function fielddata(array $params = []) return $this->performRequest($endpoint); } /** + * Returns a concise representation of the cluster health. + * * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['h'] = (list) Comma-separated list of column names to display * $params['help'] = (boolean) Return help information (Default = false) @@ -148,6 +158,8 @@ public function health(array $params = []) return $this->performRequest($endpoint); } /** + * Returns help for the Cat APIs. + * * $params['help'] = (boolean) Return help information (Default = false) * $params['s'] = (list) Comma-separated list of column names or column aliases to sort by * @@ -165,6 +177,8 @@ public function help(array $params = []) return $this->performRequest($endpoint); } /** + * Returns information about indices: number of primaries and replicas, document counts, disk size, ... + * * $params['index'] = (list) A comma-separated list of index names to limit the returned information * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb) @@ -196,6 +210,8 @@ public function indices(array $params = []) return $this->performRequest($endpoint); } /** + * Returns information about the master node. + * * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node @@ -218,6 +234,8 @@ public function master(array $params = []) return $this->performRequest($endpoint); } /** + * Gets configuration and usage information about data frame analytics jobs. + * * $params['id'] = (string) The ID of the data frame analytics to fetch * $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no configs. (This includes `_all` string or when no configs have been specified) * $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb) @@ -244,6 +262,8 @@ public function mlDataFrameAnalytics(array $params = []) return $this->performRequest($endpoint); } /** + * Gets configuration and usage information about datafeeds. + * * $params['datafeed_id'] = (string) The ID of the datafeeds stats to fetch * $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified) * $params['allow_no_datafeeds'] = (boolean) Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified) @@ -270,6 +290,8 @@ public function mlDatafeeds(array $params = []) return $this->performRequest($endpoint); } /** + * Gets configuration and usage information about anomaly detection jobs. + * * $params['job_id'] = (string) The ID of the jobs stats to fetch * $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) * $params['allow_no_jobs'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) @@ -297,6 +319,8 @@ public function mlJobs(array $params = []) return $this->performRequest($endpoint); } /** + * Gets configuration and usage information about inference trained models. + * * $params['model_id'] = (string) The ID of the trained models stats to fetch * $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no trained models. (This includes `_all` string or when no trained models have been specified) (Default = true) * $params['from'] = (int) skips a number of trained models (Default = 0) @@ -325,6 +349,8 @@ public function mlTrainedModels(array $params = []) return $this->performRequest($endpoint); } /** + * Returns information about custom node attributes. + * * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node @@ -347,6 +373,8 @@ public function nodeattrs(array $params = []) return $this->performRequest($endpoint); } /** + * Returns basic statistics about performance of cluster nodes. + * * $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb) * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['full_id'] = (boolean) Return the full node ID instead of the shortened version (default: false) @@ -373,6 +401,8 @@ public function nodes(array $params = []) return $this->performRequest($endpoint); } /** + * Returns a concise representation of the cluster pending tasks. + * * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node @@ -396,6 +426,8 @@ public function pendingTasks(array $params = []) return $this->performRequest($endpoint); } /** + * Returns information about installed plugins across nodes node. + * * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node @@ -419,6 +451,8 @@ public function plugins(array $params = []) return $this->performRequest($endpoint); } /** + * Returns information about index shard recoveries, both on-going completed. + * * $params['index'] = (list) Comma-separated list or wildcard expression of index names to limit the returned information * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['active_only'] = (boolean) If `true`, the response only includes ongoing shard recoveries (Default = false) @@ -446,6 +480,8 @@ public function recovery(array $params = []) return $this->performRequest($endpoint); } /** + * Returns information about snapshot repositories registered in the cluster. + * * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['local'] = (boolean) Return local information, do not retrieve the state from master node (Default = false) * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node @@ -468,6 +504,8 @@ public function repositories(array $params = []) return $this->performRequest($endpoint); } /** + * Provides low-level information about the segments in the shards of an index. + * * $params['index'] = (list) A comma-separated list of index names to limit the returned information * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb) @@ -492,6 +530,8 @@ public function segments(array $params = []) return $this->performRequest($endpoint); } /** + * Provides a detailed view of shard allocation on nodes. + * * $params['index'] = (list) A comma-separated list of index names to limit the returned information * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb) @@ -519,6 +559,8 @@ public function shards(array $params = []) return $this->performRequest($endpoint); } /** + * Returns all snapshots in a specific repository. + * * $params['repository'] = (list) Name of repository from which to fetch the snapshot information * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['ignore_unavailable'] = (boolean) Set to true to ignore unavailable snapshots (Default = false) @@ -545,6 +587,8 @@ public function snapshots(array $params = []) return $this->performRequest($endpoint); } /** + * Returns information about the tasks currently executing on one or more nodes in the cluster. + * * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['nodes'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes * $params['actions'] = (list) A comma-separated list of actions that should be returned. Leave empty to return all. @@ -570,6 +614,8 @@ public function tasks(array $params = []) return $this->performRequest($endpoint); } /** + * Returns information about existing templates. + * * $params['name'] = (string) A pattern that returned template names must match * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) @@ -595,6 +641,8 @@ public function templates(array $params = []) return $this->performRequest($endpoint); } /** + * Returns cluster-wide thread pool statistics per node.By default the active, queue and rejected statistics are returned for all thread pools. + * * $params['thread_pool_patterns'] = (list) A comma-separated list of regular-expressions to filter the thread pools in the output * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['size'] = (enum) The multiplier in which to display values (Options = ,k,m,g,t,p) @@ -621,6 +669,8 @@ public function threadPool(array $params = []) return $this->performRequest($endpoint); } /** + * Gets configuration and usage information about transforms. + * * $params['transform_id'] = (string) The id of the transform for which to get stats. '_all' or '*' implies all transforms * $params['from'] = (int) skips a number of transform configs, defaults to 0 * $params['size'] = (int) specifies a max number of transforms to get, defaults to 100 diff --git a/src/Elasticsearch/Namespaces/CcrNamespace.php b/src/Elasticsearch/Namespaces/CcrNamespace.php index 4d2cee109..36e6fe76d 100644 --- a/src/Elasticsearch/Namespaces/CcrNamespace.php +++ b/src/Elasticsearch/Namespaces/CcrNamespace.php @@ -22,12 +22,14 @@ * Class CcrNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class CcrNamespace extends AbstractNamespace { /** + * Deletes auto-follow patterns. + * * $params['name'] = (string) The name of the auto follow pattern. * * @param array $params Associative array of parameters @@ -46,6 +48,8 @@ public function deleteAutoFollowPattern(array $params = []) return $this->performRequest($endpoint); } /** + * Creates a new follower index configured to follow the referenced leader index. + * * $params['index'] = (string) The name of the follower index * $params['wait_for_active_shards'] = (string) Sets the number of shard copies that must be active before returning. Defaults to 0. Set to `all` for all shard copies, otherwise set to any non-negative value less than or equal to the total number of copies for the shard (number of replicas + 1) (Default = 0) * $params['body'] = (array) The name of the leader index and other optional ccr related parameters (Required) @@ -68,6 +72,8 @@ public function follow(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves information about all follower indices, including parameters and status for each follower index + * * $params['index'] = (list) A comma-separated list of index patterns; use `_all` to perform the operation on all indices * * @param array $params Associative array of parameters @@ -86,6 +92,8 @@ public function followInfo(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves follower stats. return shard-level stats about the following tasks associated with each shard for the specified indices. + * * $params['index'] = (list) A comma-separated list of index patterns; use `_all` to perform the operation on all indices * * @param array $params Associative array of parameters @@ -104,6 +112,8 @@ public function followStats(array $params = []) return $this->performRequest($endpoint); } /** + * Removes the follower retention leases from the leader. + * * $params['index'] = (string) the name of the leader index for which specified follower retention leases should be removed * $params['body'] = (array) the name and UUID of the follower index, the name of the cluster containing the follower index, and the alias from the perspective of that cluster for the remote cluster containing the leader index (Required) * @@ -125,6 +135,8 @@ public function forgetFollower(array $params = []) return $this->performRequest($endpoint); } /** + * Gets configured auto-follow patterns. Returns the specified auto-follow pattern collection. + * * $params['name'] = (string) The name of the auto follow pattern. * * @param array $params Associative array of parameters @@ -143,6 +155,8 @@ public function getAutoFollowPattern(array $params = []) return $this->performRequest($endpoint); } /** + * Pauses an auto-follow pattern + * * $params['name'] = (string) The name of the auto follow pattern that should pause discovering new indices to follow. * * @param array $params Associative array of parameters @@ -161,6 +175,8 @@ public function pauseAutoFollowPattern(array $params = []) return $this->performRequest($endpoint); } /** + * Pauses a follower index. The follower index will not fetch any additional operations from the leader index. + * * $params['index'] = (string) The name of the follower index that should pause following its leader index. * * @param array $params Associative array of parameters @@ -179,6 +195,8 @@ public function pauseFollow(array $params = []) return $this->performRequest($endpoint); } /** + * Creates a new named collection of auto-follow patterns against a specified remote cluster. Newly created indices on the remote cluster matching any of the specified patterns will be automatically configured as follower indices. + * * $params['name'] = (string) The name of the auto follow pattern. * $params['body'] = (array) The specification of the auto follow pattern (Required) * @@ -200,6 +218,8 @@ public function putAutoFollowPattern(array $params = []) return $this->performRequest($endpoint); } /** + * Resumes an auto-follow pattern that has been paused + * * $params['name'] = (string) The name of the auto follow pattern to resume discovering new indices to follow. * * @param array $params Associative array of parameters @@ -218,6 +238,8 @@ public function resumeAutoFollowPattern(array $params = []) return $this->performRequest($endpoint); } /** + * Resumes a follower index that has been paused + * * $params['index'] = (string) The name of the follow index to resume following. * $params['body'] = (array) The name of the leader index and other optional ccr related parameters * @@ -238,6 +260,14 @@ public function resumeFollow(array $params = []) return $this->performRequest($endpoint); } + /** + * Gets all stats related to cross-cluster replication. + * + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-get-stats.html + */ public function stats(array $params = []) { @@ -248,6 +278,8 @@ public function stats(array $params = []) return $this->performRequest($endpoint); } /** + * Stops the following task associated with a follower index and removes index metadata and settings associated with cross-cluster replication. + * * $params['index'] = (string) The name of the follower index that should be turned into a regular index. * * @param array $params Associative array of parameters diff --git a/src/Elasticsearch/Namespaces/ClusterNamespace.php b/src/Elasticsearch/Namespaces/ClusterNamespace.php index d1dfbd72c..8234d6af4 100644 --- a/src/Elasticsearch/Namespaces/ClusterNamespace.php +++ b/src/Elasticsearch/Namespaces/ClusterNamespace.php @@ -22,12 +22,14 @@ * Class ClusterNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ClusterNamespace extends AbstractNamespace { /** + * Provides explanations for shard allocations in the cluster. + * * $params['include_yes_decisions'] = (boolean) Return 'YES' decisions in explanation (default: false) * $params['include_disk_info'] = (boolean) Return information about disk usage and shard sizes (default: false) * $params['body'] = (array) The index, shard, and primary flag to explain. Empty means 'explain the first unassigned shard' @@ -48,6 +50,8 @@ public function allocationExplain(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes a component template + * * $params['name'] = (string) The name of the template * $params['timeout'] = (time) Explicit operation timeout * $params['master_timeout'] = (time) Specify timeout for connection to master @@ -68,6 +72,8 @@ public function deleteComponentTemplate(array $params = []) return $this->performRequest($endpoint); } /** + * Clears cluster voting config exclusions. + * * $params['wait_for_removal'] = (boolean) Specifies whether to wait for all excluded nodes to be removed from the cluster before clearing the voting configuration exclusions list. (Default = true) * * @param array $params Associative array of parameters @@ -84,6 +90,8 @@ public function deleteVotingConfigExclusions(array $params = []) return $this->performRequest($endpoint); } /** + * Returns information about whether a particular component template exist + * * $params['name'] = (string) The name of the template * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node * $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) @@ -107,6 +115,8 @@ public function existsComponentTemplate(array $params = []): bool return BooleanRequestWrapper::performRequest($endpoint, $this->transport); } /** + * Returns one or more component templates + * * $params['name'] = (list) The comma separated names of the component templates * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node * $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) @@ -127,6 +137,8 @@ public function getComponentTemplate(array $params = []) return $this->performRequest($endpoint); } /** + * Returns cluster settings. + * * $params['flat_settings'] = (boolean) Return settings in flat format (default: false) * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node * $params['timeout'] = (time) Explicit operation timeout @@ -146,6 +158,8 @@ public function getSettings(array $params = []) return $this->performRequest($endpoint); } /** + * Returns basic information about the health of the cluster. + * * $params['index'] = (list) Limit the information returned to a specific index * $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = all) * $params['level'] = (enum) Specify the level of detail for returned information (Options = cluster,indices,shards) (Default = cluster) @@ -175,6 +189,8 @@ public function health(array $params = []) return $this->performRequest($endpoint); } /** + * Returns a list of any cluster-level changes (e.g. create index, update mapping,allocate or fail shard) which have not yet been executed. + * * $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) * $params['master_timeout'] = (time) Specify timeout for connection to master * @@ -192,6 +208,8 @@ public function pendingTasks(array $params = []) return $this->performRequest($endpoint); } /** + * Updates the cluster voting config exclusions by node ids or node names. + * * $params['node_ids'] = (string) A comma-separated list of the persistent ids of the nodes to exclude from the voting configuration. If specified, you may not also specify ?node_names. * $params['node_names'] = (string) A comma-separated list of the names of the nodes to exclude from the voting configuration. If specified, you may not also specify ?node_ids. * $params['timeout'] = (time) Explicit operation timeout (Default = 30s) @@ -210,6 +228,8 @@ public function postVotingConfigExclusions(array $params = []) return $this->performRequest($endpoint); } /** + * Creates or updates a component template + * * $params['name'] = (string) The name of the template * $params['create'] = (boolean) Whether the index template should only be added if new or can also replace an existing one (Default = false) * $params['timeout'] = (time) Explicit operation timeout @@ -234,6 +254,8 @@ public function putComponentTemplate(array $params = []) return $this->performRequest($endpoint); } /** + * Updates the cluster settings. + * * $params['flat_settings'] = (boolean) Return settings in flat format (default: false) * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node * $params['timeout'] = (time) Explicit operation timeout @@ -255,6 +277,8 @@ public function putSettings(array $params = []) return $this->performRequest($endpoint); } /** + * Returns the information about configured remote clusters. + * * * @param array $params Associative array of parameters * @return array @@ -270,6 +294,8 @@ public function remoteInfo(array $params = []) return $this->performRequest($endpoint); } /** + * Allows to manually change the allocation of individual shards in the cluster. + * * $params['dry_run'] = (boolean) Simulate the operation only and return the resulting state * $params['explain'] = (boolean) Return an explanation of why the commands can or cannot be executed * $params['retry_failed'] = (boolean) Retries allocation of shards that are blocked due to too many subsequent allocation failures @@ -294,6 +320,8 @@ public function reroute(array $params = []) return $this->performRequest($endpoint); } /** + * Returns a comprehensive information about the state of the cluster. + * * $params['metric'] = (list) Limit the information returned to the specified metrics * $params['index'] = (list) A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices * $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) @@ -323,6 +351,8 @@ public function state(array $params = []) return $this->performRequest($endpoint); } /** + * Returns high-level overview of cluster statistics. + * * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes * $params['flat_settings'] = (boolean) Return settings in flat format (default: false) * $params['timeout'] = (time) Explicit operation timeout diff --git a/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php b/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php index 94038d607..b4b5b72c3 100644 --- a/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php +++ b/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php @@ -22,12 +22,14 @@ * Class DanglingIndicesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DanglingIndicesNamespace extends AbstractNamespace { /** + * Deletes the specified dangling index + * * $params['index_uuid'] = (string) The UUID of the dangling index * $params['accept_data_loss'] = (boolean) Must be set to true in order to delete the dangling index * $params['timeout'] = (time) Explicit operation timeout @@ -49,6 +51,8 @@ public function deleteDanglingIndex(array $params = []) return $this->performRequest($endpoint); } /** + * Imports the specified dangling index + * * $params['index_uuid'] = (string) The UUID of the dangling index * $params['accept_data_loss'] = (boolean) Must be set to true in order to import the dangling index * $params['timeout'] = (time) Explicit operation timeout @@ -70,6 +74,8 @@ public function importDanglingIndex(array $params = []) return $this->performRequest($endpoint); } /** + * Returns all dangling indices. + * * * @param array $params Associative array of parameters * @return array diff --git a/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php b/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php index 6bb1d8cf9..1c6e21da7 100644 --- a/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php +++ b/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php @@ -22,12 +22,14 @@ * Class DataFrameTransformDeprecatedNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class DataFrameTransformDeprecatedNamespace extends AbstractNamespace { /** + * Deletes an existing transform. + * * $params['transform_id'] = (string) The id of the transform to delete * $params['force'] = (boolean) When `true`, the transform is deleted regardless of its current state. The default value is `false`, meaning that the transform must be `stopped` before it can be deleted. * @@ -50,6 +52,8 @@ public function deleteTransform(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves configuration information for transforms. + * * $params['transform_id'] = (string) The id or comma delimited list of id expressions of the transforms to get, '_all' or '*' implies get all transforms * $params['from'] = (int) skips a number of transform configs, defaults to 0 * $params['size'] = (int) specifies a max number of transforms to get, defaults to 100 @@ -75,6 +79,8 @@ public function getTransform(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves usage information for transforms. + * * $params['transform_id'] = (string) The id of the transform for which to get stats. '_all' or '*' implies all transforms * $params['from'] = (number) skips a number of transform stats, defaults to 0 * $params['size'] = (number) specifies a max number of transform stats to get, defaults to 100 @@ -98,6 +104,18 @@ public function getTransformStats(array $params = []) return $this->performRequest($endpoint); } + /** + * Previews a transform. + * + * $params['body'] = (array) The definition for the transform to preview (Required) + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/preview-transform.html + * + * @note This API is BETA and may change in ways that are not backwards compatible + * + */ public function previewTransform(array $params = []) { $body = $this->extractArgument($params, 'body'); @@ -110,6 +128,8 @@ public function previewTransform(array $params = []) return $this->performRequest($endpoint); } /** + * Instantiates a transform. + * * $params['transform_id'] = (string) The id of the new transform. * $params['defer_validation'] = (boolean) If validations should be deferred until transform starts, defaults to false. * $params['body'] = (array) The transform definition (Required) @@ -135,6 +155,8 @@ public function putTransform(array $params = []) return $this->performRequest($endpoint); } /** + * Starts one or more transforms. + * * $params['transform_id'] = (string) The id of the transform to start * $params['timeout'] = (time) Controls the time to wait for the transform to start * @@ -157,6 +179,8 @@ public function startTransform(array $params = []) return $this->performRequest($endpoint); } /** + * Stops one or more transforms. + * * $params['transform_id'] = (string) The id of the transform to stop * $params['wait_for_completion'] = (boolean) Whether to wait for the transform to fully stop before returning or not. Default to false * $params['timeout'] = (time) Controls the time to wait until the transform has stopped. Default to 30 seconds @@ -181,6 +205,8 @@ public function stopTransform(array $params = []) return $this->performRequest($endpoint); } /** + * Updates certain properties of a transform. + * * $params['transform_id'] = (string) The id of the transform. * $params['defer_validation'] = (boolean) If validations should be deferred until transform starts, defaults to false. * $params['body'] = (array) The update transform definition (Required) diff --git a/src/Elasticsearch/Namespaces/EnrichNamespace.php b/src/Elasticsearch/Namespaces/EnrichNamespace.php index 60e040650..92ce12730 100644 --- a/src/Elasticsearch/Namespaces/EnrichNamespace.php +++ b/src/Elasticsearch/Namespaces/EnrichNamespace.php @@ -22,12 +22,14 @@ * Class EnrichNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class EnrichNamespace extends AbstractNamespace { /** + * Deletes an existing enrich policy and its enrich index. + * * $params['name'] = (string) The name of the enrich policy * * @param array $params Associative array of parameters @@ -46,6 +48,8 @@ public function deletePolicy(array $params = []) return $this->performRequest($endpoint); } /** + * Creates the enrich index for an existing enrich policy. + * * $params['name'] = (string) The name of the enrich policy * $params['wait_for_completion'] = (boolean) Should the request should block until the execution is complete. (Default = true) * @@ -65,6 +69,8 @@ public function executePolicy(array $params = []) return $this->performRequest($endpoint); } /** + * Gets information about an enrich policy. + * * $params['name'] = (list) A comma-separated list of enrich policy names * * @param array $params Associative array of parameters @@ -83,6 +89,8 @@ public function getPolicy(array $params = []) return $this->performRequest($endpoint); } /** + * Creates a new enrich policy. + * * $params['name'] = (string) The name of the enrich policy * $params['body'] = (array) The enrich policy to register (Required) * @@ -103,6 +111,14 @@ public function putPolicy(array $params = []) return $this->performRequest($endpoint); } + /** + * Gets enrich coordinator statistics and information about enrich policies that are currently executing. + * + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/enrich-stats-api.html + */ public function stats(array $params = []) { diff --git a/src/Elasticsearch/Namespaces/EqlNamespace.php b/src/Elasticsearch/Namespaces/EqlNamespace.php index 62add7256..c7d26ad13 100644 --- a/src/Elasticsearch/Namespaces/EqlNamespace.php +++ b/src/Elasticsearch/Namespaces/EqlNamespace.php @@ -22,12 +22,14 @@ * Class EqlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class EqlNamespace extends AbstractNamespace { /** + * Deletes an async EQL search by ID. If the search is still running, the search request will be cancelled. Otherwise, the saved search results are deleted. + * * $params['id'] = (string) The async search ID * * @param array $params Associative array of parameters @@ -46,6 +48,8 @@ public function delete(array $params = []) return $this->performRequest($endpoint); } /** + * Returns async results from previously executed Event Query Language (EQL) search + * * $params['id'] = (string) The async search ID * $params['wait_for_completion_timeout'] = (time) Specify the time that the request should block waiting for the final response * $params['keep_alive'] = (time) Update the time interval in which the results (partial or final) for this search will be available (Default = 5d) @@ -66,6 +70,8 @@ public function get(array $params = []) return $this->performRequest($endpoint); } /** + * Returns the status of a previously submitted async or stored Event Query Language (EQL) search + * * $params['id'] = (string) The async search ID * * @param array $params Associative array of parameters @@ -84,6 +90,8 @@ public function getStatus(array $params = []) return $this->performRequest($endpoint); } /** + * Returns results matching a query expressed in Event Query Language (EQL) + * * $params['index'] = (string) The name of the index to scope the operation * $params['wait_for_completion_timeout'] = (time) Specify the time that the request should block waiting for the final response * $params['keep_on_completion'] = (boolean) Control whether the response should be stored in the cluster if it completed within the provided [wait_for_completion] time (default: false) (Default = false) diff --git a/src/Elasticsearch/Namespaces/FeaturesNamespace.php b/src/Elasticsearch/Namespaces/FeaturesNamespace.php index 26513d2c6..a7d0745ae 100644 --- a/src/Elasticsearch/Namespaces/FeaturesNamespace.php +++ b/src/Elasticsearch/Namespaces/FeaturesNamespace.php @@ -22,12 +22,14 @@ * Class FeaturesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class FeaturesNamespace extends AbstractNamespace { /** + * Gets a list of features which can be included in snapshots using the feature_states field when creating a snapshot + * * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node * * @param array $params Associative array of parameters @@ -43,6 +45,17 @@ public function getFeatures(array $params = []) return $this->performRequest($endpoint); } + /** + * Resets the internal state of features, usually by deleting system indices + * + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html + * + * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release + * + */ public function resetFeatures(array $params = []) { diff --git a/src/Elasticsearch/Namespaces/FleetNamespace.php b/src/Elasticsearch/Namespaces/FleetNamespace.php index dea4a7032..81fbcc3e8 100644 --- a/src/Elasticsearch/Namespaces/FleetNamespace.php +++ b/src/Elasticsearch/Namespaces/FleetNamespace.php @@ -22,12 +22,14 @@ * Class FleetNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class FleetNamespace extends AbstractNamespace { /** + * Returns the current global checkpoints for an index. This API is design for internal use by the fleet server project. + * * $params['index'] = (string) The name of the index. * $params['wait_for_advance'] = (boolean) Whether to wait for the global checkpoint to advance past the specified current checkpoints (Default = true) * $params['wait_for_index'] = (boolean) Whether to wait for the target index to exist and all primary shards be active (Default = true) diff --git a/src/Elasticsearch/Namespaces/GraphNamespace.php b/src/Elasticsearch/Namespaces/GraphNamespace.php index 1efd1d2ab..4ac57425e 100644 --- a/src/Elasticsearch/Namespaces/GraphNamespace.php +++ b/src/Elasticsearch/Namespaces/GraphNamespace.php @@ -22,12 +22,14 @@ * Class GraphNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class GraphNamespace extends AbstractNamespace { /** + * Explore extracted and summarized information about the documents and terms in an index. + * * $params['index'] = (list) A comma-separated list of index names to search; use `_all` or empty string to perform the operation on all indices (Required) * $params['type'] = DEPRECATED (list) A comma-separated list of document types to search; leave empty to perform the operation on all types * $params['routing'] = (string) Specific routing value diff --git a/src/Elasticsearch/Namespaces/IlmNamespace.php b/src/Elasticsearch/Namespaces/IlmNamespace.php index b798d0eb1..77615bb9d 100644 --- a/src/Elasticsearch/Namespaces/IlmNamespace.php +++ b/src/Elasticsearch/Namespaces/IlmNamespace.php @@ -22,12 +22,14 @@ * Class IlmNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class IlmNamespace extends AbstractNamespace { /** + * Deletes the specified lifecycle policy definition. A currently used policy cannot be deleted. + * * $params['policy'] = (string) The name of the index lifecycle policy * * @param array $params Associative array of parameters @@ -46,6 +48,8 @@ public function deleteLifecycle(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves information about the index's current lifecycle state, such as the currently executing phase, action, and step. + * * $params['index'] = (string) The name of the index to explain * $params['only_managed'] = (boolean) filters the indices included in the response to ones managed by ILM * $params['only_errors'] = (boolean) filters the indices included in the response to ones in an ILM error state, implies only_managed @@ -66,6 +70,8 @@ public function explainLifecycle(array $params = []) return $this->performRequest($endpoint); } /** + * Returns the specified policy definition. Includes the policy version and last modified date. + * * $params['policy'] = (string) The name of the index lifecycle policy * * @param array $params Associative array of parameters @@ -84,6 +90,8 @@ public function getLifecycle(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves the current index lifecycle management (ILM) status. + * * * @param array $params Associative array of parameters * @return array @@ -99,6 +107,29 @@ public function getStatus(array $params = []) return $this->performRequest($endpoint); } /** + * Migrates the indices and ILM policies away from custom node attribute allocation routing to data tiers routing + * + * $params['dry_run'] = (boolean) If set to true it will simulate the migration, providing a way to retrieve the ILM policies and indices that need to be migrated. The default is false + * $params['body'] = (array) Optionally specify a legacy index template name to delete and optionally specify a node attribute name used for index shard routing (defaults to "data") + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/ilm-migrate-to-data-tiers.html + */ + public function migrateToDataTiers(array $params = []) + { + $body = $this->extractArgument($params, 'body'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Ilm\MigrateToDataTiers'); + $endpoint->setParams($params); + $endpoint->setBody($body); + + return $this->performRequest($endpoint); + } + /** + * Manually moves an index into the specified step and executes that step. + * * $params['index'] = (string) The name of the index whose lifecycle step is to change * $params['body'] = (array) The new lifecycle step to move to * @@ -120,6 +151,8 @@ public function moveToStep(array $params = []) return $this->performRequest($endpoint); } /** + * Creates a lifecycle policy + * * $params['policy'] = (string) The name of the index lifecycle policy * $params['body'] = (array) The lifecycle policy definition to register * @@ -141,6 +174,8 @@ public function putLifecycle(array $params = []) return $this->performRequest($endpoint); } /** + * Removes the assigned lifecycle policy and stops managing the specified index + * * $params['index'] = (string) The name of the index to remove policy on * * @param array $params Associative array of parameters @@ -159,6 +194,8 @@ public function removePolicy(array $params = []) return $this->performRequest($endpoint); } /** + * Retries executing the policy for an index that is in the ERROR step. + * * $params['index'] = (string) The name of the indices (comma-separated) whose failed lifecycle step is to be retry * * @param array $params Associative array of parameters @@ -177,6 +214,8 @@ public function retry(array $params = []) return $this->performRequest($endpoint); } /** + * Start the index lifecycle management (ILM) plugin. + * * * @param array $params Associative array of parameters * @return array @@ -192,6 +231,8 @@ public function start(array $params = []) return $this->performRequest($endpoint); } /** + * Halts all lifecycle management operations and stops the index lifecycle management (ILM) plugin + * * * @param array $params Associative array of parameters * @return array diff --git a/src/Elasticsearch/Namespaces/IndicesNamespace.php b/src/Elasticsearch/Namespaces/IndicesNamespace.php index a7700d94d..fbe488844 100644 --- a/src/Elasticsearch/Namespaces/IndicesNamespace.php +++ b/src/Elasticsearch/Namespaces/IndicesNamespace.php @@ -22,12 +22,14 @@ * Class IndicesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class IndicesNamespace extends AbstractNamespace { /** + * Adds a block to an index. + * * $params['index'] = (list) A comma separated list of indices to add a block to * $params['block'] = (string) The block to add (one of read, write, read_only or metadata) * $params['timeout'] = (time) Explicit operation timeout @@ -54,6 +56,8 @@ public function addBlock(array $params = []) return $this->performRequest($endpoint); } /** + * Performs the analysis process on a text and return the tokens breakdown of the text. + * * $params['index'] = (string) The name of the index to scope the operation * $params['body'] = (array) Define analyzer/tokenizer parameters and the text on which the analysis should be performed * @@ -75,6 +79,8 @@ public function analyze(array $params = []) return $this->performRequest($endpoint); } /** + * Clears all or specific caches for one or more indices. + * * $params['index'] = (list) A comma-separated list of index name to limit the operation * $params['fielddata'] = (boolean) Clear field data * $params['fields'] = (list) A comma-separated list of fields to clear when using the `fielddata` parameter (default: all) @@ -100,6 +106,8 @@ public function clearCache(array $params = []) return $this->performRequest($endpoint); } /** + * Clones an index + * * $params['index'] = (string) The name of the source index to clone * $params['target'] = (string) The name of the target index to clone into * $params['timeout'] = (time) Explicit operation timeout @@ -127,6 +135,8 @@ public function clone(array $params = []) return $this->performRequest($endpoint); } /** + * Closes an index. + * * $params['index'] = (list) A comma separated list of indices to close * $params['timeout'] = (time) Explicit operation timeout * $params['master_timeout'] = (time) Specify timeout for connection to master @@ -151,6 +161,8 @@ public function close(array $params = []) return $this->performRequest($endpoint); } /** + * Creates an index with optional settings and mappings. + * * $params['index'] = (string) The name of the index * $params['include_type_name'] = (boolean) Whether a type should be expected in the body of the mappings. * $params['wait_for_active_shards'] = (string) Set the number of active shards to wait for before the operation returns. @@ -176,6 +188,8 @@ public function create(array $params = []) return $this->performRequest($endpoint); } /** + * Creates a data stream + * * $params['name'] = (string) The name of the data stream * * @param array $params Associative array of parameters @@ -194,6 +208,8 @@ public function createDataStream(array $params = []) return $this->performRequest($endpoint); } /** + * Provides statistics on operations happening in a data stream. + * * $params['name'] = (list) A comma-separated list of data stream names; use `_all` or empty string to perform the operation on all data streams * * @param array $params Associative array of parameters @@ -212,6 +228,8 @@ public function dataStreamsStats(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes an index. + * * $params['index'] = (list) A comma-separated list of indices to delete; use `_all` or `*` string to delete all indices * $params['timeout'] = (time) Explicit operation timeout * $params['master_timeout'] = (time) Specify timeout for connection to master @@ -235,6 +253,8 @@ public function delete(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes an alias. + * * $params['index'] = (list) A comma-separated list of index names (supports wildcards); use `_all` for all indices (Required) * $params['name'] = (list) A comma-separated list of aliases to delete (supports wildcards); use `_all` to delete all aliases for the specified indices. (Required) * $params['timeout'] = (time) Explicit timestamp for the document @@ -258,6 +278,8 @@ public function deleteAlias(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes a data stream. + * * $params['name'] = (list) A comma-separated list of data streams to delete; use `*` to delete all data streams * $params['expand_wildcards'] = (enum) Whether wildcard expressions should get expanded to open or closed indices (default: open) (Options = open,closed,hidden,none,all) (Default = open) * @@ -277,6 +299,8 @@ public function deleteDataStream(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes an index template. + * * $params['name'] = (string) The name of the template * $params['timeout'] = (time) Explicit operation timeout * $params['master_timeout'] = (time) Specify timeout for connection to master @@ -297,6 +321,8 @@ public function deleteIndexTemplate(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes an index template. + * * $params['name'] = (string) The name of the template * $params['timeout'] = (time) Explicit operation timeout * $params['master_timeout'] = (time) Specify timeout for connection to master @@ -317,6 +343,36 @@ public function deleteTemplate(array $params = []) return $this->performRequest($endpoint); } /** + * Analyzes the disk usage of each field of an index or data stream + * + * $params['index'] = (string) Comma-separated list of indices or data streams to analyze the disk usage + * $params['run_expensive_tasks'] = (boolean) Must be set to [true] in order for the task to be performed. Defaults to false. + * $params['flush'] = (boolean) Whether flush or not before analyzing the index disk usage. Defaults to true + * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) + * $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) + * $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open) + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-disk-usage.html + * + * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release + * + */ + public function diskUsage(array $params = []) + { + $index = $this->extractArgument($params, 'index'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Indices\DiskUsage'); + $endpoint->setParams($params); + $endpoint->setIndex($index); + + return $this->performRequest($endpoint); + } + /** + * Returns information about whether a particular index exists. + * * $params['index'] = (list) A comma-separated list of index names * $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) * $params['ignore_unavailable'] = (boolean) Ignore unavailable indexes (default: false) @@ -344,6 +400,8 @@ public function exists(array $params = []): bool return BooleanRequestWrapper::performRequest($endpoint, $this->transport); } /** + * Returns information about whether a particular alias exists. + * * $params['name'] = (list) A comma-separated list of alias names to return (Required) * $params['index'] = (list) A comma-separated list of index names to filter aliases * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) @@ -372,6 +430,8 @@ public function existsAlias(array $params = []): bool return BooleanRequestWrapper::performRequest($endpoint, $this->transport); } /** + * Returns information about whether a particular index template exists. + * * $params['name'] = (string) The name of the template * $params['flat_settings'] = (boolean) Return settings in flat format (default: false) * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node @@ -396,6 +456,8 @@ public function existsIndexTemplate(array $params = []): bool return BooleanRequestWrapper::performRequest($endpoint, $this->transport); } /** + * Returns information about whether a particular index template exists. + * * $params['name'] = (list) The comma separated names of the index templates * $params['flat_settings'] = (boolean) Return settings in flat format (default: false) * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node @@ -420,6 +482,8 @@ public function existsTemplate(array $params = []): bool return BooleanRequestWrapper::performRequest($endpoint, $this->transport); } /** + * Returns information about whether a particular document type exists. (DEPRECATED) + * * $params['index'] = (list) A comma-separated list of index names; use `_all` to check the types across all indices * $params['type'] = DEPRECATED (list) A comma-separated list of document types to check * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) @@ -448,6 +512,35 @@ public function existsType(array $params = []): bool return BooleanRequestWrapper::performRequest($endpoint, $this->transport); } /** + * Returns the field usage stats for each field of an index + * + * $params['index'] = (string) A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices + * $params['fields'] = (list) A comma-separated list of fields to include in the stats if only a subset of fields should be returned (supports wildcards) + * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) + * $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) + * $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open) + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-field-usage-stats.html + * + * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release + * + */ + public function fieldUsageStats(array $params = []) + { + $index = $this->extractArgument($params, 'index'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Indices\FieldUsageStats'); + $endpoint->setParams($params); + $endpoint->setIndex($index); + + return $this->performRequest($endpoint); + } + /** + * Performs the flush operation on one or more indices. + * * $params['index'] = (list) A comma-separated list of index names; use `_all` or empty string for all indices * $params['force'] = (boolean) Whether a flush should be forced even if it is not necessarily needed ie. if no changes will be committed to the index. This is useful if transaction log IDs should be incremented even if no uncommitted changes are present. (This setting can be considered as internal) * $params['wait_if_ongoing'] = (boolean) If set to true the flush operation will block until the flush can be executed if another flush operation is already executing. The default is true. If set to false the flush will be skipped iff if another flush operation is already running. @@ -471,6 +564,8 @@ public function flush(array $params = []) return $this->performRequest($endpoint); } /** + * Performs a synced flush operation on one or more indices. Synced flush is deprecated and will be removed in 8.0. Use flush instead + * * $params['index'] = (list) A comma-separated list of index names; use `_all` or empty string for all indices * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) * $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) @@ -492,6 +587,8 @@ public function flushSynced(array $params = []) return $this->performRequest($endpoint); } /** + * Performs the force merge operation on one or more indices. + * * $params['index'] = (list) A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices * $params['flush'] = (boolean) Specify whether the index should be flushed after performing the operation (default: true) * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) @@ -516,6 +613,8 @@ public function forcemerge(array $params = []) return $this->performRequest($endpoint); } /** + * Freezes an index. A frozen index has almost no overhead on the cluster (except for maintaining its metadata in memory) and is read-only. + * * $params['index'] = (string) The name of the index to freeze * $params['timeout'] = (time) Explicit operation timeout * $params['master_timeout'] = (time) Specify timeout for connection to master @@ -540,6 +639,8 @@ public function freeze(array $params = []) return $this->performRequest($endpoint); } /** + * Returns information about one or more indices. + * * $params['index'] = (list) A comma-separated list of index names * $params['include_type_name'] = (boolean) Whether to add the type name to the response (default: false) * $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) @@ -566,6 +667,8 @@ public function get(array $params = []) return $this->performRequest($endpoint); } /** + * Returns an alias. + * * $params['name'] = (list) A comma-separated list of alias names to return * $params['index'] = (list) A comma-separated list of index names to filter aliases * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) @@ -591,6 +694,8 @@ public function getAlias(array $params = []) return $this->performRequest($endpoint); } /** + * Returns data streams. + * * $params['name'] = (list) A comma-separated list of data streams to get; use `*` to get all data streams * $params['expand_wildcards'] = (enum) Whether wildcard expressions should get expanded to open or closed indices (default: open) (Options = open,closed,hidden,none,all) (Default = open) * @@ -610,6 +715,8 @@ public function getDataStream(array $params = []) return $this->performRequest($endpoint); } /** + * Returns mapping for one or more fields. + * * $params['fields'] = (list) A comma-separated list of fields (Required) * $params['index'] = (list) A comma-separated list of index names * $params['type'] = DEPRECATED (list) A comma-separated list of document types @@ -640,6 +747,8 @@ public function getFieldMapping(array $params = []) return $this->performRequest($endpoint); } /** + * Returns an index template. + * * $params['name'] = (list) The comma separated names of the index templates * $params['flat_settings'] = (boolean) Return settings in flat format (default: false) * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node @@ -661,6 +770,8 @@ public function getIndexTemplate(array $params = []) return $this->performRequest($endpoint); } /** + * Returns mappings for one or more indices. + * * $params['index'] = (list) A comma-separated list of index names * $params['type'] = DEPRECATED (list) A comma-separated list of document types * $params['include_type_name'] = (boolean) Whether to add the type name to the response (default: false) @@ -688,6 +799,8 @@ public function getMapping(array $params = []) return $this->performRequest($endpoint); } /** + * Returns settings for one or more indices. + * * $params['index'] = (list) A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices * $params['name'] = (list) The name of the settings that should be included * $params['master_timeout'] = (time) Specify timeout for connection to master @@ -716,6 +829,8 @@ public function getSettings(array $params = []) return $this->performRequest($endpoint); } /** + * Returns an index template. + * * $params['name'] = (list) The comma separated names of the index templates * $params['include_type_name'] = (boolean) Whether a type should be returned in the body of the mappings. * $params['flat_settings'] = (boolean) Return settings in flat format (default: false) @@ -738,6 +853,8 @@ public function getTemplate(array $params = []) return $this->performRequest($endpoint); } /** + * DEPRECATED Returns a progress status of current upgrade. + * * $params['index'] = (list) A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) * $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) @@ -759,6 +876,8 @@ public function getUpgrade(array $params = []) return $this->performRequest($endpoint); } /** + * Migrates an alias to a data stream + * * $params['name'] = (string) The name of the alias to migrate * * @param array $params Associative array of parameters @@ -777,6 +896,8 @@ public function migrateToDataStream(array $params = []) return $this->performRequest($endpoint); } /** + * Opens an index. + * * $params['index'] = (list) A comma separated list of indices to open * $params['timeout'] = (time) Explicit operation timeout * $params['master_timeout'] = (time) Specify timeout for connection to master @@ -801,6 +922,8 @@ public function open(array $params = []) return $this->performRequest($endpoint); } /** + * Promotes a data stream from a replicated data stream managed by CCR to a regular data stream + * * $params['name'] = (string) The name of the data stream * * @param array $params Associative array of parameters @@ -819,6 +942,8 @@ public function promoteDataStream(array $params = []) return $this->performRequest($endpoint); } /** + * Creates or updates an alias. + * * $params['index'] = (list) A comma-separated list of index names the alias should point to (supports wildcards); use `_all` to perform the operation on all indices. (Required) * $params['name'] = (string) The name of the alias to be created or updated (Required) * $params['timeout'] = (time) Explicit timestamp for the document @@ -845,6 +970,8 @@ public function putAlias(array $params = []) return $this->performRequest($endpoint); } /** + * Creates or updates an index template. + * * $params['name'] = (string) The name of the template * $params['create'] = (boolean) Whether the index template should only be added if new or can also replace an existing one (Default = false) * $params['cause'] = (string) User defined reason for creating/updating the index template (Default = ) @@ -869,6 +996,8 @@ public function putIndexTemplate(array $params = []) return $this->performRequest($endpoint); } /** + * Updates the index mappings. + * * $params['index'] = (list) A comma-separated list of index names the mapping should be added to (supports wildcards); use `_all` or omit to add the mapping on all indices. * $params['type'] = DEPRECATED (string) The name of the document type * $params['include_type_name'] = (boolean) Whether a type should be expected in the body of the mappings. @@ -900,6 +1029,8 @@ public function putMapping(array $params = []) return $this->performRequest($endpoint); } /** + * Updates the index settings. + * * $params['index'] = (list) A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices * $params['master_timeout'] = (time) Specify timeout for connection to master * $params['timeout'] = (time) Explicit operation timeout @@ -928,6 +1059,8 @@ public function putSettings(array $params = []) return $this->performRequest($endpoint); } /** + * Creates or updates an index template. + * * $params['name'] = (string) The name of the template * $params['include_type_name'] = (boolean) Whether a type should be returned in the body of the mappings. * $params['order'] = (number) The order for this template when merging multiple matching ones (higher numbers are merged later, overriding the lower numbers) @@ -953,6 +1086,8 @@ public function putTemplate(array $params = []) return $this->performRequest($endpoint); } /** + * Returns information about ongoing index shard recoveries. + * * $params['index'] = (list) A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices * $params['detailed'] = (boolean) Whether to display detailed information about shard recovery (Default = false) * $params['active_only'] = (boolean) Display only those recoveries that are currently on-going (Default = false) @@ -973,6 +1108,8 @@ public function recovery(array $params = []) return $this->performRequest($endpoint); } /** + * Performs the refresh operation in one or more indices. + * * $params['index'] = (list) A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) * $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) @@ -994,6 +1131,8 @@ public function refresh(array $params = []) return $this->performRequest($endpoint); } /** + * Reloads an index's search analyzers and their resources. + * * $params['index'] = (list) A comma-separated list of index names to reload analyzers for * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) * $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) @@ -1015,6 +1154,8 @@ public function reloadSearchAnalyzers(array $params = []) return $this->performRequest($endpoint); } /** + * Returns information about any matching indices, aliases, and data streams + * * $params['name'] = (list) A comma-separated list of names or wildcard expressions * $params['expand_wildcards'] = (enum) Whether wildcard expressions should get expanded to open or closed indices (default: open) (Options = open,closed,hidden,none,all) (Default = open) * @@ -1037,6 +1178,8 @@ public function resolveIndex(array $params = []) return $this->performRequest($endpoint); } /** + * Updates an alias to point to a new index when the existing indexis considered to be too large or too old. + * * $params['alias'] = (string) The name of the alias to rollover (Required) * $params['new_index'] = (string) The name of the rollover index * $params['include_type_name'] = (boolean) Whether a type should be included in the body of the mappings. @@ -1066,6 +1209,8 @@ public function rollover(array $params = []) return $this->performRequest($endpoint); } /** + * Provides low-level information about segments in a Lucene index. + * * $params['index'] = (list) A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) * $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) @@ -1088,6 +1233,8 @@ public function segments(array $params = []) return $this->performRequest($endpoint); } /** + * Provides store information for shard copies of indices. + * * $params['index'] = (list) A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices * $params['status'] = (list) A comma-separated list of statuses used to filter on shards to get store information for (Options = green,yellow,red,all) * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) @@ -1110,6 +1257,8 @@ public function shardStores(array $params = []) return $this->performRequest($endpoint); } /** + * Allow to shrink an existing index into a new index with fewer primary shards. + * * $params['index'] = (string) The name of the source index to shrink * $params['target'] = (string) The name of the target index to shrink into * $params['copy_settings'] = (boolean) whether or not to copy settings from the source index (defaults to false) @@ -1138,6 +1287,8 @@ public function shrink(array $params = []) return $this->performRequest($endpoint); } /** + * Simulate matching the given index name against the index templates in the system + * * $params['name'] = (string) The name of the index (it must be a concrete index name) * $params['create'] = (boolean) Whether the index template we optionally defined in the body should only be dry-run added if new or can also replace an existing one (Default = false) * $params['cause'] = (string) User defined reason for dry-run creating the new template for simulation purposes (Default = ) @@ -1162,6 +1313,8 @@ public function simulateIndexTemplate(array $params = []) return $this->performRequest($endpoint); } /** + * Simulate resolving the given template name or body + * * $params['name'] = (string) The name of the index template * $params['create'] = (boolean) Whether the index template we optionally defined in the body should only be dry-run added if new or can also replace an existing one (Default = false) * $params['cause'] = (string) User defined reason for dry-run creating the new template for simulation purposes (Default = ) @@ -1186,6 +1339,8 @@ public function simulateTemplate(array $params = []) return $this->performRequest($endpoint); } /** + * Allows you to split an existing index into a new index with more primary shards. + * * $params['index'] = (string) The name of the source index to split * $params['target'] = (string) The name of the target index to split into * $params['copy_settings'] = (boolean) whether or not to copy settings from the source index (defaults to false) @@ -1214,6 +1369,8 @@ public function split(array $params = []) return $this->performRequest($endpoint); } /** + * Provides statistics on operations happening in an index. + * * $params['metric'] = (list) Limit the information returned the specific metrics. * $params['index'] = (list) A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices * $params['completion_fields'] = (list) A comma-separated list of fields for `fielddata` and `suggest` index metric (supports wildcards) @@ -1245,6 +1402,8 @@ public function stats(array $params = []) return $this->performRequest($endpoint); } /** + * Unfreezes an index. When a frozen index is unfrozen, the index goes through the normal recovery process and becomes writeable again. + * * $params['index'] = (string) The name of the index to unfreeze * $params['timeout'] = (time) Explicit operation timeout * $params['master_timeout'] = (time) Specify timeout for connection to master @@ -1269,6 +1428,8 @@ public function unfreeze(array $params = []) return $this->performRequest($endpoint); } /** + * Updates index aliases. + * * $params['timeout'] = (time) Request timeout * $params['master_timeout'] = (time) Specify timeout for connection to master * $params['body'] = (array) The definition of `actions` to perform (Required) @@ -1289,6 +1450,8 @@ public function updateAliases(array $params = []) return $this->performRequest($endpoint); } /** + * DEPRECATED Upgrades to the current version of Lucene. + * * $params['index'] = (list) A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices * $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) * $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open) @@ -1312,6 +1475,8 @@ public function upgrade(array $params = []) return $this->performRequest($endpoint); } /** + * Allows a user to validate a potentially expensive query without executing it. + * * $params['index'] = (list) A comma-separated list of index names to restrict the operation; use `_all` or empty string to perform the operation on all indices * $params['type'] = DEPRECATED (list) A comma-separated list of document types to restrict the operation; leave empty to perform the operation on all types * $params['explain'] = (boolean) Return detailed information about the error diff --git a/src/Elasticsearch/Namespaces/IngestNamespace.php b/src/Elasticsearch/Namespaces/IngestNamespace.php index 16dfde4c3..07111aebb 100644 --- a/src/Elasticsearch/Namespaces/IngestNamespace.php +++ b/src/Elasticsearch/Namespaces/IngestNamespace.php @@ -22,12 +22,14 @@ * Class IngestNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class IngestNamespace extends AbstractNamespace { /** + * Deletes a pipeline. + * * $params['id'] = (string) Pipeline ID * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node * $params['timeout'] = (time) Explicit operation timeout @@ -47,6 +49,14 @@ public function deletePipeline(array $params = []) return $this->performRequest($endpoint); } + /** + * Returns statistical information about geoip databases + * + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/geoip-stats-api.html + */ public function geoIpStats(array $params = []) { @@ -57,6 +67,8 @@ public function geoIpStats(array $params = []) return $this->performRequest($endpoint); } /** + * Returns a pipeline. + * * $params['id'] = (string) Comma separated list of pipeline ids. Wildcards supported * $params['summary'] = (boolean) Return pipelines without their definitions (default: false) * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node @@ -77,6 +89,8 @@ public function getPipeline(array $params = []) return $this->performRequest($endpoint); } /** + * Returns a list of the built-in patterns. + * * * @param array $params Associative array of parameters * @return array @@ -92,6 +106,8 @@ public function processorGrok(array $params = []) return $this->performRequest($endpoint); } /** + * Creates or updates a pipeline. + * * $params['id'] = (string) Pipeline ID * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node * $params['timeout'] = (time) Explicit operation timeout @@ -115,6 +131,8 @@ public function putPipeline(array $params = []) return $this->performRequest($endpoint); } /** + * Allows to simulate a pipeline with example documents. + * * $params['id'] = (string) Pipeline ID * $params['verbose'] = (boolean) Verbose mode. Display data output for each processor in executed pipeline (Default = false) * $params['body'] = (array) The simulate definition (Required) diff --git a/src/Elasticsearch/Namespaces/LicenseNamespace.php b/src/Elasticsearch/Namespaces/LicenseNamespace.php index 60439f31c..7253e3416 100644 --- a/src/Elasticsearch/Namespaces/LicenseNamespace.php +++ b/src/Elasticsearch/Namespaces/LicenseNamespace.php @@ -22,11 +22,19 @@ * Class LicenseNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class LicenseNamespace extends AbstractNamespace { + /** + * Deletes licensing information for the cluster + * + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/delete-license.html + */ public function delete(array $params = []) { @@ -37,6 +45,8 @@ public function delete(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves licensing information for the cluster + * * $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) * $params['accept_enterprise'] = (boolean) If the active license is an enterprise license, return type as 'enterprise' (default: false) * @@ -54,6 +64,8 @@ public function get(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves information about the status of the basic license. + * * * @param array $params Associative array of parameters * @return array @@ -69,6 +81,8 @@ public function getBasicStatus(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves information about the status of the trial license. + * * * @param array $params Associative array of parameters * @return array @@ -84,6 +98,8 @@ public function getTrialStatus(array $params = []) return $this->performRequest($endpoint); } /** + * Updates the license for the cluster. + * * $params['acknowledge'] = (boolean) whether the user has acknowledged acknowledge messages (default: false) * $params['body'] = (array) licenses to be installed * @@ -103,6 +119,8 @@ public function post(array $params = []) return $this->performRequest($endpoint); } /** + * Starts an indefinite basic license. + * * $params['acknowledge'] = (boolean) whether the user has acknowledged acknowledge messages (default: false) * * @param array $params Associative array of parameters @@ -119,6 +137,8 @@ public function postStartBasic(array $params = []) return $this->performRequest($endpoint); } /** + * starts a limited time trial license. + * * $params['type'] = (string) The type of trial license to generate (default: "trial") * $params['acknowledge'] = (boolean) whether the user has acknowledged acknowledge messages (default: false) * diff --git a/src/Elasticsearch/Namespaces/LogstashNamespace.php b/src/Elasticsearch/Namespaces/LogstashNamespace.php index 54b54414b..762cd37a7 100644 --- a/src/Elasticsearch/Namespaces/LogstashNamespace.php +++ b/src/Elasticsearch/Namespaces/LogstashNamespace.php @@ -22,12 +22,14 @@ * Class LogstashNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class LogstashNamespace extends AbstractNamespace { /** + * Deletes Logstash Pipelines used by Central Management + * * $params['id'] = (string) The ID of the Pipeline * * @param array $params Associative array of parameters @@ -46,6 +48,8 @@ public function deletePipeline(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves Logstash Pipelines used by Central Management + * * $params['id'] = (string) A comma-separated list of Pipeline IDs * * @param array $params Associative array of parameters @@ -64,6 +68,8 @@ public function getPipeline(array $params = []) return $this->performRequest($endpoint); } /** + * Adds and updates Logstash Pipelines used for Central Management + * * $params['id'] = (string) The ID of the Pipeline * $params['body'] = (array) The Pipeline to add or update (Required) * diff --git a/src/Elasticsearch/Namespaces/MigrationNamespace.php b/src/Elasticsearch/Namespaces/MigrationNamespace.php index c552285ca..548d38f55 100644 --- a/src/Elasticsearch/Namespaces/MigrationNamespace.php +++ b/src/Elasticsearch/Namespaces/MigrationNamespace.php @@ -22,12 +22,14 @@ * Class MigrationNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class MigrationNamespace extends AbstractNamespace { /** + * Retrieves information about different cluster, node, and index level settings that use deprecated features that will be removed or changed in the next major version. + * * $params['index'] = (string) Index pattern * * @param array $params Associative array of parameters diff --git a/src/Elasticsearch/Namespaces/MlNamespace.php b/src/Elasticsearch/Namespaces/MlNamespace.php index 5e2e45bc6..5b4549df4 100644 --- a/src/Elasticsearch/Namespaces/MlNamespace.php +++ b/src/Elasticsearch/Namespaces/MlNamespace.php @@ -22,12 +22,14 @@ * Class MlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class MlNamespace extends AbstractNamespace { /** + * Closes one or more anomaly detection jobs. A job can be opened and closed multiple times throughout its lifecycle. + * * $params['job_id'] = (string) The name of the job to close * $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) * $params['allow_no_jobs'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) @@ -53,6 +55,8 @@ public function closeJob(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes a calendar. + * * $params['calendar_id'] = (string) The ID of the calendar to delete * * @param array $params Associative array of parameters @@ -71,6 +75,8 @@ public function deleteCalendar(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes scheduled events from a calendar. + * * $params['calendar_id'] = (string) The ID of the calendar to modify * $params['event_id'] = (string) The ID of the event to remove from the calendar * @@ -92,6 +98,8 @@ public function deleteCalendarEvent(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes anomaly detection jobs from a calendar. + * * $params['calendar_id'] = (string) The ID of the calendar to modify * $params['job_id'] = (string) The ID of the job to remove from the calendar * @@ -113,6 +121,8 @@ public function deleteCalendarJob(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes an existing data frame analytics job. + * * $params['id'] = (string) The ID of the data frame analytics to delete * $params['force'] = (boolean) True if the job should be forcefully deleted (Default = false) * $params['timeout'] = (time) Controls the time to wait until a job is deleted. Defaults to 1 minute @@ -133,6 +143,8 @@ public function deleteDataFrameAnalytics(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes an existing datafeed. + * * $params['datafeed_id'] = (string) The ID of the datafeed to delete * $params['force'] = (boolean) True if the datafeed should be forcefully deleted * @@ -152,6 +164,8 @@ public function deleteDatafeed(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes expired and unused machine learning data. + * * $params['job_id'] = (string) The ID of the job(s) to perform expired data hygiene for * $params['requests_per_second'] = (number) The desired requests per second for the deletion processes. * $params['timeout'] = (time) How long can the underlying delete processes run until they are canceled @@ -175,6 +189,8 @@ public function deleteExpiredData(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes a filter. + * * $params['filter_id'] = (string) The ID of the filter to delete * * @param array $params Associative array of parameters @@ -193,6 +209,8 @@ public function deleteFilter(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes forecasts from a machine learning job. + * * $params['job_id'] = (string) The ID of the job from which to delete forecasts (Required) * $params['forecast_id'] = (string) The ID of the forecast to delete, can be comma delimited list. Leaving blank implies `_all` * $params['allow_no_forecasts'] = (boolean) Whether to ignore if `_all` matches no forecasts @@ -216,6 +234,8 @@ public function deleteForecast(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes an existing anomaly detection job. + * * $params['job_id'] = (string) The ID of the job to delete * $params['force'] = (boolean) True if the job should be forcefully deleted (Default = false) * $params['wait_for_completion'] = (boolean) Should this request wait until the operation has completed before returning (Default = true) @@ -236,6 +256,8 @@ public function deleteJob(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes an existing model snapshot. + * * $params['job_id'] = (string) The ID of the job to fetch * $params['snapshot_id'] = (string) The ID of the snapshot to delete * @@ -257,6 +279,8 @@ public function deleteModelSnapshot(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes an existing trained inference model that is currently not referenced by an ingest pipeline. + * * $params['model_id'] = (string) The ID of the trained model to delete * * @param array $params Associative array of parameters @@ -275,6 +299,8 @@ public function deleteTrainedModel(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes a model alias that refers to the trained model + * * $params['model_alias'] = (string) The trained model alias to delete * $params['model_id'] = (string) The trained model where the model alias is assigned * @@ -296,6 +322,8 @@ public function deleteTrainedModelAlias(array $params = []) return $this->performRequest($endpoint); } /** + * Estimates the model memory + * * $params['body'] = (array) The analysis config, plus cardinality estimates for fields it references (Required) * * @param array $params Associative array of parameters @@ -313,6 +341,15 @@ public function estimateModelMemory(array $params = []) return $this->performRequest($endpoint); } + /** + * Evaluates the data frame analytics for an annotated index. + * + * $params['body'] = (array) The evaluation definition (Required) + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/evaluate-dfanalytics.html + */ public function evaluateDataFrame(array $params = []) { $body = $this->extractArgument($params, 'body'); @@ -325,6 +362,8 @@ public function evaluateDataFrame(array $params = []) return $this->performRequest($endpoint); } /** + * Explains a data frame analytics config. + * * $params['id'] = (string) The ID of the data frame analytics to explain * $params['body'] = (array) The data frame analytics config to explain * @@ -346,6 +385,8 @@ public function explainDataFrameAnalytics(array $params = []) return $this->performRequest($endpoint); } /** + * Finds the structure of a text file. The text file must contain data that is suitable to be ingested into Elasticsearch. + * * $params['lines_to_sample'] = (int) How many lines of the file should be included in the analysis (Default = 1000) * $params['line_merge_size_limit'] = (int) Maximum number of characters permitted in a single message when lines are merged to create messages. (Default = 10000) * $params['timeout'] = (time) Timeout after which the analysis will be aborted (Default = 25s) @@ -381,6 +422,8 @@ public function findFileStructure(array $params = []) return $this->performRequest($endpoint); } /** + * Forces any buffered data to be processed by the job. + * * $params['job_id'] = (string) The name of the job to flush * $params['calc_interim'] = (boolean) Calculates interim results for the most recent bucket or all buckets within the latency period * $params['start'] = (string) When used in conjunction with calc_interim, specifies the range of buckets on which to calculate interim results @@ -407,6 +450,8 @@ public function flushJob(array $params = []) return $this->performRequest($endpoint); } /** + * Predicts the future behavior of a time series by using its historical behavior. + * * $params['job_id'] = (string) The ID of the job to forecast for * $params['duration'] = (time) The duration of the forecast * $params['expires_in'] = (time) The time interval after which the forecast expires. Expired forecasts will be deleted at the first opportunity. @@ -428,6 +473,8 @@ public function forecast(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves anomaly detection job results for one or more buckets. + * * $params['job_id'] = (string) ID of the job to get bucket results from (Required) * $params['timestamp'] = (string) The timestamp of the desired single bucket result * $params['expand'] = (boolean) Include anomaly records @@ -461,6 +508,8 @@ public function getBuckets(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves information about the scheduled events in calendars. + * * $params['calendar_id'] = (string) The ID of the calendar containing the events * $params['job_id'] = (string) Get events for the job. When this option is used calendar_id must be '_all' * $params['start'] = (string) Get events after this time @@ -484,6 +533,8 @@ public function getCalendarEvents(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves configuration information for calendars. + * * $params['calendar_id'] = (string) The ID of the calendar to fetch * $params['from'] = (int) skips a number of calendars * $params['size'] = (int) specifies a max number of calendars to get @@ -507,6 +558,8 @@ public function getCalendars(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves anomaly detection job results for one or more categories. + * * $params['job_id'] = (string) The name of the job (Required) * $params['category_id'] = (long) The identifier of the category definition of interest * $params['from'] = (int) skips a number of categories @@ -534,6 +587,8 @@ public function getCategories(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves configuration information for data frame analytics jobs. + * * $params['id'] = (string) The ID of the data frame analytics to fetch * $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no data frame analytics. (This includes `_all` string or when no data frame analytics have been specified) (Default = true) * $params['from'] = (int) skips a number of analytics (Default = 0) @@ -556,6 +611,8 @@ public function getDataFrameAnalytics(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves usage information for data frame analytics jobs. + * * $params['id'] = (string) The ID of the data frame analytics stats to fetch * $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no data frame analytics. (This includes `_all` string or when no data frame analytics have been specified) (Default = true) * $params['from'] = (int) skips a number of analytics (Default = 0) @@ -578,6 +635,8 @@ public function getDataFrameAnalyticsStats(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves usage information for datafeeds. + * * $params['datafeed_id'] = (string) The ID of the datafeeds stats to fetch * $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified) * $params['allow_no_datafeeds'] = (boolean) Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified) @@ -598,6 +657,8 @@ public function getDatafeedStats(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves configuration information for datafeeds. + * * $params['datafeed_id'] = (string) The ID of the datafeeds to fetch * $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified) * $params['allow_no_datafeeds'] = (boolean) Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified) @@ -619,6 +680,8 @@ public function getDatafeeds(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves filters. + * * $params['filter_id'] = (string) The ID of the filter to fetch * $params['from'] = (int) skips a number of filters * $params['size'] = (int) specifies a max number of filters to get @@ -639,6 +702,8 @@ public function getFilters(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves anomaly detection job results for one or more influencers. + * * $params['job_id'] = (string) Identifier for the anomaly detection job * $params['exclude_interim'] = (boolean) Exclude interim results * $params['from'] = (int) skips a number of influencers @@ -668,6 +733,8 @@ public function getInfluencers(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves usage information for anomaly detection jobs. + * * $params['job_id'] = (string) The ID of the jobs stats to fetch * $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) * $params['allow_no_jobs'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) @@ -688,6 +755,8 @@ public function getJobStats(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves configuration information for anomaly detection jobs. + * * $params['job_id'] = (string) The ID of the jobs to fetch * $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) * $params['allow_no_jobs'] = (boolean) Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified) @@ -709,6 +778,8 @@ public function getJobs(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves information about model snapshots. + * * $params['job_id'] = (string) The ID of the job to fetch (Required) * $params['snapshot_id'] = (string) The ID of the snapshot to fetch * $params['from'] = (int) Skips a number of documents @@ -739,6 +810,8 @@ public function getModelSnapshots(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves overall bucket results that summarize the bucket results of multiple anomaly detection jobs. + * * $params['job_id'] = (string) The job IDs for which to calculate overall bucket results * $params['top_n'] = (int) The number of top job bucket scores to be used in the overall_score calculation * $params['bucket_span'] = (string) The span of the overall buckets. Defaults to the longest job bucket_span @@ -768,6 +841,8 @@ public function getOverallBuckets(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves anomaly records for an anomaly detection job. + * * $params['job_id'] = (string) The ID of the job * $params['exclude_interim'] = (boolean) Exclude interim results * $params['from'] = (int) skips a number of records @@ -797,6 +872,8 @@ public function getRecords(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves configuration information for a trained inference model. + * * $params['model_id'] = (string) The ID of the trained models to fetch * $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no trained models. (This includes `_all` string or when no trained models have been specified) (Default = true) * $params['include'] = (string) A comma-separate list of fields to optionally include. Valid options are 'definition' and 'total_feature_importance'. Default is none. @@ -823,6 +900,8 @@ public function getTrainedModels(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves usage information for trained inference models. + * * $params['model_id'] = (string) The ID of the trained models stats to fetch * $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no trained models. (This includes `_all` string or when no trained models have been specified) (Default = true) * $params['from'] = (int) skips a number of trained models (Default = 0) @@ -843,6 +922,14 @@ public function getTrainedModelsStats(array $params = []) return $this->performRequest($endpoint); } + /** + * Returns defaults and limits used by machine learning. + * + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/get-ml-info.html + */ public function info(array $params = []) { @@ -853,6 +940,8 @@ public function info(array $params = []) return $this->performRequest($endpoint); } /** + * Opens one or more anomaly detection jobs. + * * $params['job_id'] = (string) The ID of the job to open * * @param array $params Associative array of parameters @@ -871,6 +960,8 @@ public function openJob(array $params = []) return $this->performRequest($endpoint); } /** + * Posts scheduled events in a calendar. + * * $params['calendar_id'] = (string) The ID of the calendar to modify * $params['body'] = (array) A list of events (Required) * @@ -892,6 +983,8 @@ public function postCalendarEvents(array $params = []) return $this->performRequest($endpoint); } /** + * Sends data to an anomaly detection job for analysis. + * * $params['job_id'] = (string) The name of the job receiving the data * $params['reset_start'] = (string) Optional parameter to specify the start of the bucket resetting range * $params['reset_end'] = (string) Optional parameter to specify the end of the bucket resetting range @@ -915,6 +1008,8 @@ public function postData(array $params = []) return $this->performRequest($endpoint); } /** + * Previews that will be analyzed given a data frame analytics config. + * * $params['id'] = (string) The ID of the data frame analytics to preview * $params['body'] = (array) The data frame analytics config to preview * @@ -936,6 +1031,8 @@ public function previewDataFrameAnalytics(array $params = []) return $this->performRequest($endpoint); } /** + * Previews a datafeed. + * * $params['datafeed_id'] = (string) The ID of the datafeed to preview * $params['body'] = (array) The datafeed config and job config with which to execute the preview * @@ -957,6 +1054,8 @@ public function previewDatafeed(array $params = []) return $this->performRequest($endpoint); } /** + * Instantiates a calendar. + * * $params['calendar_id'] = (string) The ID of the calendar to create * $params['body'] = (array) The calendar details * @@ -978,6 +1077,8 @@ public function putCalendar(array $params = []) return $this->performRequest($endpoint); } /** + * Adds an anomaly detection job to a calendar. + * * $params['calendar_id'] = (string) The ID of the calendar to modify * $params['job_id'] = (string) The ID of the job to add to the calendar * @@ -999,6 +1100,8 @@ public function putCalendarJob(array $params = []) return $this->performRequest($endpoint); } /** + * Instantiates a data frame analytics job. + * * $params['id'] = (string) The ID of the data frame analytics to create * $params['body'] = (array) The data frame analytics configuration (Required) * @@ -1020,6 +1123,8 @@ public function putDataFrameAnalytics(array $params = []) return $this->performRequest($endpoint); } /** + * Instantiates a datafeed. + * * $params['datafeed_id'] = (string) The ID of the datafeed to create * $params['ignore_unavailable'] = (boolean) Ignore unavailable indexes (default: false) * $params['allow_no_indices'] = (boolean) Ignore if the source indices expressions resolves to no concrete indices (default: true) @@ -1045,6 +1150,8 @@ public function putDatafeed(array $params = []) return $this->performRequest($endpoint); } /** + * Instantiates a filter. + * * $params['filter_id'] = (string) The ID of the filter to create * $params['body'] = (array) The filter details (Required) * @@ -1066,8 +1173,14 @@ public function putFilter(array $params = []) return $this->performRequest($endpoint); } /** - * $params['job_id'] = (string) The ID of the job to create - * $params['body'] = (array) The job (Required) + * Instantiates an anomaly detection job. + * + * $params['job_id'] = (string) The ID of the job to create + * $params['ignore_unavailable'] = (boolean) Ignore unavailable indexes (default: false). Only set if datafeed_config is provided. + * $params['allow_no_indices'] = (boolean) Ignore if the source indices expressions resolves to no concrete indices (default: true). Only set if datafeed_config is provided. + * $params['ignore_throttled'] = (boolean) Ignore indices that are marked as throttled (default: true). Only set if datafeed_config is provided. + * $params['expand_wildcards'] = (enum) Whether source index expressions should get expanded to open or closed indices (default: open). Only set if datafeed_config is provided. (Options = open,closed,hidden,none,all) + * $params['body'] = (array) The job (Required) * * @param array $params Associative array of parameters * @return array @@ -1087,6 +1200,8 @@ public function putJob(array $params = []) return $this->performRequest($endpoint); } /** + * Creates an inference trained model. + * * $params['model_id'] = (string) The ID of the trained models to store * $params['body'] = (array) The trained model configuration (Required) * @@ -1108,6 +1223,8 @@ public function putTrainedModel(array $params = []) return $this->performRequest($endpoint); } /** + * Creates a new model alias (or reassigns an existing one) to refer to the trained model + * * $params['model_alias'] = (string) The trained model alias to update * $params['model_id'] = (string) The trained model where the model alias should be assigned * $params['reassign'] = (boolean) If the model_alias already exists and points to a separate model_id, this parameter must be true. Defaults to false. @@ -1130,6 +1247,29 @@ public function putTrainedModelAlias(array $params = []) return $this->performRequest($endpoint); } /** + * Resets an existing anomaly detection job. + * + * $params['job_id'] = (string) The ID of the job to reset + * $params['wait_for_completion'] = (boolean) Should this request wait until the operation has completed before returning (Default = true) + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-reset-job.html + */ + public function resetJob(array $params = []) + { + $job_id = $this->extractArgument($params, 'job_id'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Ml\ResetJob'); + $endpoint->setParams($params); + $endpoint->setJobId($job_id); + + return $this->performRequest($endpoint); + } + /** + * Reverts to a specific snapshot. + * * $params['job_id'] = (string) The ID of the job to fetch * $params['snapshot_id'] = (string) The ID of the snapshot to revert to * $params['delete_intervening_results'] = (boolean) Should we reset the results back to the time of the snapshot? @@ -1155,6 +1295,8 @@ public function revertModelSnapshot(array $params = []) return $this->performRequest($endpoint); } /** + * Sets a cluster wide upgrade_mode setting that prepares machine learning indices for an upgrade. + * * $params['enabled'] = (boolean) Whether to enable upgrade_mode ML setting or not. Defaults to false. * $params['timeout'] = (time) Controls the time to wait before action times out. Defaults to 30 seconds * @@ -1172,6 +1314,8 @@ public function setUpgradeMode(array $params = []) return $this->performRequest($endpoint); } /** + * Starts a data frame analytics job. + * * $params['id'] = (string) The ID of the data frame analytics to start * $params['timeout'] = (time) Controls the time to wait until the task has started. Defaults to 20 seconds * $params['body'] = (array) The start data frame analytics parameters @@ -1194,6 +1338,8 @@ public function startDataFrameAnalytics(array $params = []) return $this->performRequest($endpoint); } /** + * Starts one or more datafeeds. + * * $params['datafeed_id'] = (string) The ID of the datafeed to start * $params['start'] = (string) The start time from where the datafeed should begin * $params['end'] = (string) The end time when the datafeed should stop. When not set, the datafeed continues in real time @@ -1218,6 +1364,8 @@ public function startDatafeed(array $params = []) return $this->performRequest($endpoint); } /** + * Stops one or more data frame analytics jobs. + * * $params['id'] = (string) The ID of the data frame analytics to stop * $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no data frame analytics. (This includes `_all` string or when no data frame analytics have been specified) * $params['force'] = (boolean) True if the data frame analytics should be forcefully stopped @@ -1242,6 +1390,8 @@ public function stopDataFrameAnalytics(array $params = []) return $this->performRequest($endpoint); } /** + * Stops one or more datafeeds. + * * $params['datafeed_id'] = (string) The ID of the datafeed to stop * $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified) * $params['allow_no_datafeeds'] = (boolean) Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified) @@ -1267,6 +1417,8 @@ public function stopDatafeed(array $params = []) return $this->performRequest($endpoint); } /** + * Updates certain properties of a data frame analytics job. + * * $params['id'] = (string) The ID of the data frame analytics to update * $params['body'] = (array) The data frame analytics settings to update (Required) * @@ -1288,6 +1440,8 @@ public function updateDataFrameAnalytics(array $params = []) return $this->performRequest($endpoint); } /** + * Updates certain properties of a datafeed. + * * $params['datafeed_id'] = (string) The ID of the datafeed to update * $params['ignore_unavailable'] = (boolean) Ignore unavailable indexes (default: false) * $params['allow_no_indices'] = (boolean) Ignore if the source indices expressions resolves to no concrete indices (default: true) @@ -1313,6 +1467,8 @@ public function updateDatafeed(array $params = []) return $this->performRequest($endpoint); } /** + * Updates the description of a filter, adds items, or removes items. + * * $params['filter_id'] = (string) The ID of the filter to update * $params['body'] = (array) The filter update (Required) * @@ -1334,6 +1490,8 @@ public function updateFilter(array $params = []) return $this->performRequest($endpoint); } /** + * Updates certain properties of an anomaly detection job. + * * $params['job_id'] = (string) The ID of the job to create * $params['body'] = (array) The job update settings (Required) * @@ -1355,6 +1513,8 @@ public function updateJob(array $params = []) return $this->performRequest($endpoint); } /** + * Updates certain properties of a snapshot. + * * $params['job_id'] = (string) The ID of the job to fetch * $params['snapshot_id'] = (string) The ID of the snapshot to update * $params['body'] = (array) The model snapshot properties to update (Required) @@ -1379,6 +1539,8 @@ public function updateModelSnapshot(array $params = []) return $this->performRequest($endpoint); } /** + * Upgrades a given job snapshot to the current major version. + * * $params['job_id'] = (string) The ID of the job * $params['snapshot_id'] = (string) The ID of the snapshot * $params['timeout'] = (time) How long should the API wait for the job to be opened and the old snapshot to be loaded. @@ -1402,6 +1564,8 @@ public function upgradeJobSnapshot(array $params = []) return $this->performRequest($endpoint); } /** + * Validates an anomaly detection job. + * * $params['body'] = (array) The job config (Required) * * @param array $params Associative array of parameters @@ -1420,6 +1584,8 @@ public function validate(array $params = []) return $this->performRequest($endpoint); } /** + * Validates an anomaly detection detector. + * * $params['body'] = (array) The detector (Required) * * @param array $params Associative array of parameters diff --git a/src/Elasticsearch/Namespaces/MonitoringNamespace.php b/src/Elasticsearch/Namespaces/MonitoringNamespace.php index b1f0e36b1..825425d78 100644 --- a/src/Elasticsearch/Namespaces/MonitoringNamespace.php +++ b/src/Elasticsearch/Namespaces/MonitoringNamespace.php @@ -22,12 +22,14 @@ * Class MonitoringNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class MonitoringNamespace extends AbstractNamespace { /** + * Used by the monitoring features to send monitoring data. + * * $params['type'] = DEPRECATED (string) Default document type for items which don't provide one * $params['system_id'] = (string) Identifier of the monitored system * $params['system_api_version'] = (string) API Version of the monitored system diff --git a/src/Elasticsearch/Namespaces/NodesNamespace.php b/src/Elasticsearch/Namespaces/NodesNamespace.php index d1f35d219..4f2cb88ca 100644 --- a/src/Elasticsearch/Namespaces/NodesNamespace.php +++ b/src/Elasticsearch/Namespaces/NodesNamespace.php @@ -22,12 +22,14 @@ * Class NodesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class NodesNamespace extends AbstractNamespace { /** + * Returns information about hot threads on each node in the cluster. + * * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes * $params['interval'] = (time) The interval for the second sampling of threads * $params['snapshots'] = (number) Number of samples of thread stacktrace (default: 10) @@ -52,6 +54,8 @@ public function hotThreads(array $params = []) return $this->performRequest($endpoint); } /** + * Returns information about nodes in the cluster. + * * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes * $params['metric'] = (list) A comma-separated list of metrics you wish returned. Leave empty to return all. * $params['flat_settings'] = (boolean) Return settings in flat format (default: false) @@ -75,6 +79,8 @@ public function info(array $params = []) return $this->performRequest($endpoint); } /** + * Reloads secure settings. + * * $params['node_id'] = (list) A comma-separated list of node IDs to span the reload/reinit call. Should stay empty because reloading usually involves all cluster nodes. * $params['timeout'] = (time) Explicit operation timeout * $params['body'] = (array) An object containing the password for the elasticsearch keystore @@ -97,6 +103,8 @@ public function reloadSecureSettings(array $params = []) return $this->performRequest($endpoint); } /** + * Returns statistical information about nodes in the cluster. + * * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes * $params['metric'] = (list) Limit the information returned to the specified metrics * $params['index_metric'] = (list) Limit the information returned for `indices` metric to the specific index metrics. Isn't used if `indices` (or `all`) metric isn't specified. @@ -130,6 +138,8 @@ public function stats(array $params = []) return $this->performRequest($endpoint); } /** + * Returns low-level information about REST actions usage on nodes. + * * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes * $params['metric'] = (list) Limit the information returned to the specified metrics * $params['timeout'] = (time) Explicit operation timeout diff --git a/src/Elasticsearch/Namespaces/RollupNamespace.php b/src/Elasticsearch/Namespaces/RollupNamespace.php index fcb73b6a4..d3cb782e6 100644 --- a/src/Elasticsearch/Namespaces/RollupNamespace.php +++ b/src/Elasticsearch/Namespaces/RollupNamespace.php @@ -22,12 +22,14 @@ * Class RollupNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class RollupNamespace extends AbstractNamespace { /** + * Deletes an existing rollup job. + * * $params['id'] = (string) The ID of the job to delete * * @param array $params Associative array of parameters @@ -49,6 +51,8 @@ public function deleteJob(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves the configuration, stats, and status of rollup jobs. + * * $params['id'] = (string) The ID of the job(s) to fetch. Accepts glob patterns, or left blank for all jobs * * @param array $params Associative array of parameters @@ -70,6 +74,8 @@ public function getJobs(array $params = []) return $this->performRequest($endpoint); } /** + * Returns the capabilities of any rollup jobs that have been configured for a specific index or index pattern. + * * $params['id'] = (string) The ID of the index to check rollup capabilities on, or left blank for all jobs * * @param array $params Associative array of parameters @@ -91,6 +97,8 @@ public function getRollupCaps(array $params = []) return $this->performRequest($endpoint); } /** + * Returns the rollup capabilities of all jobs inside of a rollup index (e.g. the index where rollup data is stored). + * * $params['index'] = (string) The rollup index or index pattern to obtain rollup capabilities from. * * @param array $params Associative array of parameters @@ -112,6 +120,8 @@ public function getRollupIndexCaps(array $params = []) return $this->performRequest($endpoint); } /** + * Creates a rollup job. + * * $params['id'] = (string) The ID of the job to create * $params['body'] = (array) The job configuration (Required) * @@ -136,13 +146,18 @@ public function putJob(array $params = []) return $this->performRequest($endpoint); } /** + * Rollup an index + * * $params['index'] = (string) The index to roll up * $params['rollup_index'] = (string) The name of the rollup index to create * $params['body'] = (array) The rollup configuration (Required) * * @param array $params Associative array of parameters * @return array - * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/rollup-api.html + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/xpack-rollup.html + * + * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release + * */ public function rollup(array $params = []) { @@ -160,6 +175,8 @@ public function rollup(array $params = []) return $this->performRequest($endpoint); } /** + * Enables searching rolled-up data using the standard query DSL. + * * $params['index'] = (list) The indices or index-pattern(s) (containing rollup or regular data) that should be searched (Required) * $params['type'] = DEPRECATED (string) The doc type inside the index * $params['typed_keys'] = (boolean) Specify whether aggregation and suggester names should be prefixed by their respective types in the response @@ -189,6 +206,8 @@ public function rollupSearch(array $params = []) return $this->performRequest($endpoint); } /** + * Starts an existing, stopped rollup job. + * * $params['id'] = (string) The ID of the job to start * * @param array $params Associative array of parameters @@ -210,6 +229,8 @@ public function startJob(array $params = []) return $this->performRequest($endpoint); } /** + * Stops an existing, started rollup job. + * * $params['id'] = (string) The ID of the job to stop * $params['wait_for_completion'] = (boolean) True if the API should block until the job has fully stopped, false if should be executed async. Defaults to false. * $params['timeout'] = (time) Block for (at maximum) the specified duration while waiting for the job to stop. Defaults to 30s. diff --git a/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php b/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php index f8b3e065f..7d9a8e357 100644 --- a/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php +++ b/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php @@ -22,12 +22,14 @@ * Class SearchableSnapshotsNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class SearchableSnapshotsNamespace extends AbstractNamespace { /** + * Retrieve node-level cache statistics about searchable snapshots. + * * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes * * @param array $params Associative array of parameters @@ -49,6 +51,8 @@ public function cacheStats(array $params = []) return $this->performRequest($endpoint); } /** + * Clear the cache of searchable snapshots. + * * $params['index'] = (list) A comma-separated list of index names * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) * $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) @@ -73,6 +77,8 @@ public function clearCache(array $params = []) return $this->performRequest($endpoint); } /** + * Mount a snapshot as a searchable index. + * * $params['repository'] = (string) The name of the repository containing the snapshot of the index to mount * $params['snapshot'] = (string) The name of the snapshot of the index to mount * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node @@ -103,6 +109,8 @@ public function mount(array $params = []) return $this->performRequest($endpoint); } /** + * DEPRECATED: This API is replaced by the Repositories Metering API. + * * $params['repository'] = (string) The repository for which to get the stats for * * @param array $params Associative array of parameters @@ -124,6 +132,8 @@ public function repositoryStats(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieve shard-level statistics about searchable snapshots. + * * $params['index'] = (list) A comma-separated list of index names * $params['level'] = (enum) Return stats aggregated at cluster, index or shard level (Options = cluster,indices,shards) (Default = indices) * diff --git a/src/Elasticsearch/Namespaces/SecurityNamespace.php b/src/Elasticsearch/Namespaces/SecurityNamespace.php index 1fedf0c4a..1794212bb 100644 --- a/src/Elasticsearch/Namespaces/SecurityNamespace.php +++ b/src/Elasticsearch/Namespaces/SecurityNamespace.php @@ -22,12 +22,14 @@ * Class SecurityNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class SecurityNamespace extends AbstractNamespace { /** + * Enables authentication as a user and retrieve information about the authenticated user. + * * * @param array $params Associative array of parameters * @return array @@ -43,6 +45,8 @@ public function authenticate(array $params = []) return $this->performRequest($endpoint); } /** + * Changes the passwords of users in the native realm and built-in users. + * * $params['username'] = (string) The username of the user to change the password for * $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) * $params['body'] = (array) the new password for the user (Required) @@ -65,6 +69,8 @@ public function changePassword(array $params = []) return $this->performRequest($endpoint); } /** + * Clear a subset or all entries from the API key cache. + * * $params['ids'] = (list) A comma-separated list of IDs of API keys to clear from the cache * * @param array $params Associative array of parameters @@ -83,6 +89,8 @@ public function clearApiKeyCache(array $params = []) return $this->performRequest($endpoint); } /** + * Evicts application privileges from the native application privileges cache. + * * $params['application'] = (list) A comma-separated list of application names * * @param array $params Associative array of parameters @@ -101,6 +109,8 @@ public function clearCachedPrivileges(array $params = []) return $this->performRequest($endpoint); } /** + * Evicts users from the user cache. Can completely clear the cache or evict specific users. + * * $params['realms'] = (list) Comma-separated list of realms to clear * $params['usernames'] = (list) Comma-separated list of usernames to clear from the cache * @@ -120,6 +130,8 @@ public function clearCachedRealms(array $params = []) return $this->performRequest($endpoint); } /** + * Evicts roles from the native role cache. + * * $params['name'] = (list) Role name * * @param array $params Associative array of parameters @@ -138,6 +150,8 @@ public function clearCachedRoles(array $params = []) return $this->performRequest($endpoint); } /** + * Evicts tokens from the service account token caches. + * * $params['namespace'] = (string) An identifier for the namespace * $params['service'] = (string) An identifier for the service name * $params['name'] = (list) A comma-separated list of service token names @@ -165,6 +179,8 @@ public function clearCachedServiceTokens(array $params = []) return $this->performRequest($endpoint); } /** + * Creates an API key for access without requiring basic authentication. + * * $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) * $params['body'] = (array) The api key request to create an API key (Required) * @@ -184,6 +200,8 @@ public function createApiKey(array $params = []) return $this->performRequest($endpoint); } /** + * Creates a service account token for access without requiring basic authentication. + * * $params['namespace'] = (string) An identifier for the namespace (Required) * $params['service'] = (string) An identifier for the service name (Required) * $params['name'] = (string) An identifier for the token name @@ -212,6 +230,8 @@ public function createServiceToken(array $params = []) return $this->performRequest($endpoint); } /** + * Removes application privileges. + * * $params['application'] = (string) Application name * $params['name'] = (string) Privilege name * $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) @@ -234,6 +254,8 @@ public function deletePrivileges(array $params = []) return $this->performRequest($endpoint); } /** + * Removes roles in the native realm. + * * $params['name'] = (string) Role name * $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) * @@ -253,6 +275,8 @@ public function deleteRole(array $params = []) return $this->performRequest($endpoint); } /** + * Removes role mappings. + * * $params['name'] = (string) Role-mapping name * $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) * @@ -272,6 +296,8 @@ public function deleteRoleMapping(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes a service account token. + * * $params['namespace'] = (string) An identifier for the namespace * $params['service'] = (string) An identifier for the service name * $params['name'] = (string) An identifier for the token name @@ -300,6 +326,8 @@ public function deleteServiceToken(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes users from the native realm. + * * $params['username'] = (string) username * $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) * @@ -319,6 +347,8 @@ public function deleteUser(array $params = []) return $this->performRequest($endpoint); } /** + * Disables users in the native realm. + * * $params['username'] = (string) The username of the user to disable * $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) * @@ -338,6 +368,8 @@ public function disableUser(array $params = []) return $this->performRequest($endpoint); } /** + * Enables users in the native realm. + * * $params['username'] = (string) The username of the user to enable * $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) * @@ -357,6 +389,8 @@ public function enableUser(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves information for one or more API keys. + * * $params['id'] = (string) API key id of the API key to be retrieved * $params['name'] = (string) API key name of the API key to be retrieved * $params['username'] = (string) user name of the user who created this API key to be retrieved @@ -377,6 +411,8 @@ public function getApiKey(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves the list of cluster privileges and index privileges that are available in this version of Elasticsearch. + * * * @param array $params Associative array of parameters * @return array @@ -392,6 +428,8 @@ public function getBuiltinPrivileges(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves application privileges. + * * $params['application'] = (string) Application name * $params['name'] = (string) Privilege name * @@ -413,6 +451,8 @@ public function getPrivileges(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves roles in the native realm. + * * $params['name'] = (list) A comma-separated list of role names * * @param array $params Associative array of parameters @@ -431,6 +471,8 @@ public function getRole(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves role mappings. + * * $params['name'] = (list) A comma-separated list of role-mapping names * * @param array $params Associative array of parameters @@ -449,6 +491,8 @@ public function getRoleMapping(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves information about service accounts. + * * $params['namespace'] = (string) An identifier for the namespace * $params['service'] = (string) An identifier for the service name * @@ -473,6 +517,8 @@ public function getServiceAccounts(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves information of all service credentials for a service account. + * * $params['namespace'] = (string) An identifier for the namespace * $params['service'] = (string) An identifier for the service name * @@ -497,6 +543,8 @@ public function getServiceCredentials(array $params = []) return $this->performRequest($endpoint); } /** + * Creates a bearer token for access without requiring basic authentication. + * * $params['body'] = (array) The token request to get (Required) * * @param array $params Associative array of parameters @@ -515,6 +563,8 @@ public function getToken(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves information about users in the native realm and built-in users. + * * $params['username'] = (list) A comma-separated list of usernames * * @param array $params Associative array of parameters @@ -533,10 +583,12 @@ public function getUser(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves security privileges for the logged in user. + * * * @param array $params Associative array of parameters * @return array - * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-get-privileges.html + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-get-user-privileges.html */ public function getUserPrivileges(array $params = []) { @@ -548,6 +600,8 @@ public function getUserPrivileges(array $params = []) return $this->performRequest($endpoint); } /** + * Creates an API key on behalf of another user. + * * $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) * $params['body'] = (array) The api key request to create an API key (Required) * @@ -567,6 +621,8 @@ public function grantApiKey(array $params = []) return $this->performRequest($endpoint); } /** + * Determines whether the specified user has a specified list of privileges. + * * $params['user'] = (string) Username * $params['body'] = (array) The privileges to test (Required) * @@ -587,6 +643,15 @@ public function hasPrivileges(array $params = []) return $this->performRequest($endpoint); } + /** + * Invalidates one or more API keys. + * + * $params['body'] = (array) The api key request to invalidate API key(s) (Required) + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-invalidate-api-key.html + */ public function invalidateApiKey(array $params = []) { $body = $this->extractArgument($params, 'body'); @@ -599,6 +664,8 @@ public function invalidateApiKey(array $params = []) return $this->performRequest($endpoint); } /** + * Invalidates one or more access tokens or refresh tokens. + * * $params['body'] = (array) The token to invalidate (Required) * * @param array $params Associative array of parameters @@ -617,6 +684,8 @@ public function invalidateToken(array $params = []) return $this->performRequest($endpoint); } /** + * Adds or updates application privileges. + * * $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) * $params['body'] = (array) The privilege(s) to add (Required) * @@ -636,6 +705,8 @@ public function putPrivileges(array $params = []) return $this->performRequest($endpoint); } /** + * Adds and updates roles in the native realm. + * * $params['name'] = (string) Role name * $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) * $params['body'] = (array) The role to add (Required) @@ -658,6 +729,8 @@ public function putRole(array $params = []) return $this->performRequest($endpoint); } /** + * Creates and updates role mappings. + * * $params['name'] = (string) Role-mapping name * $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) * $params['body'] = (array) The role mapping to add (Required) @@ -680,6 +753,8 @@ public function putRoleMapping(array $params = []) return $this->performRequest($endpoint); } /** + * Adds and updates users in the native realm. These users are commonly referred to as native users. + * * $params['username'] = (string) The username of the User * $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for) * $params['body'] = (array) The user to add (Required) @@ -699,6 +774,126 @@ public function putUser(array $params = []) $endpoint->setUsername($username); $endpoint->setBody($body); + return $this->performRequest($endpoint); + } + /** + * Exchanges a SAML Response message for an Elasticsearch access token and refresh token pair + * + * $params['body'] = (array) The SAML response to authenticate (Required) + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-saml-authenticate.html + */ + public function samlAuthenticate(array $params = []) + { + $body = $this->extractArgument($params, 'body'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Security\SamlAuthenticate'); + $endpoint->setParams($params); + $endpoint->setBody($body); + + return $this->performRequest($endpoint); + } + /** + * Verifies the logout response sent from the SAML IdP + * + * $params['body'] = (array) The logout response to verify (Required) + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-saml-complete-logout.html + */ + public function samlCompleteLogout(array $params = []) + { + $body = $this->extractArgument($params, 'body'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Security\SamlCompleteLogout'); + $endpoint->setParams($params); + $endpoint->setBody($body); + + return $this->performRequest($endpoint); + } + /** + * Consumes a SAML LogoutRequest + * + * $params['body'] = (array) The LogoutRequest message (Required) + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-saml-invalidate.html + */ + public function samlInvalidate(array $params = []) + { + $body = $this->extractArgument($params, 'body'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Security\SamlInvalidate'); + $endpoint->setParams($params); + $endpoint->setBody($body); + + return $this->performRequest($endpoint); + } + /** + * Invalidates an access token and a refresh token that were generated via the SAML Authenticate API + * + * $params['body'] = (array) The tokens to invalidate (Required) + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-saml-logout.html + */ + public function samlLogout(array $params = []) + { + $body = $this->extractArgument($params, 'body'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Security\SamlLogout'); + $endpoint->setParams($params); + $endpoint->setBody($body); + + return $this->performRequest($endpoint); + } + /** + * Creates a SAML authentication request + * + * $params['body'] = (array) The realm for which to create the authentication request, identified by either its name or the ACS URL (Required) + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-saml-prepare-authentication.html + */ + public function samlPrepareAuthentication(array $params = []) + { + $body = $this->extractArgument($params, 'body'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Security\SamlPrepareAuthentication'); + $endpoint->setParams($params); + $endpoint->setBody($body); + + return $this->performRequest($endpoint); + } + /** + * Generates SAML metadata for the Elastic stack SAML 2.0 Service Provider + * + * $params['realm_name'] = (string) The name of the SAML realm to get the metadata for + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-saml-sp-metadata.html + */ + public function samlServiceProviderMetadata(array $params = []) + { + $realm_name = $this->extractArgument($params, 'realm_name'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Security\SamlServiceProviderMetadata'); + $endpoint->setParams($params); + $endpoint->setRealmName($realm_name); + return $this->performRequest($endpoint); } } diff --git a/src/Elasticsearch/Namespaces/ShutdownNamespace.php b/src/Elasticsearch/Namespaces/ShutdownNamespace.php index 0e15a0bdb..94f375309 100644 --- a/src/Elasticsearch/Namespaces/ShutdownNamespace.php +++ b/src/Elasticsearch/Namespaces/ShutdownNamespace.php @@ -22,12 +22,14 @@ * Class ShutdownNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class ShutdownNamespace extends AbstractNamespace { /** + * Removes a node from the shutdown list + * * $params['node_id'] = (string) The node id of node to be removed from the shutdown state * * @param array $params Associative array of parameters @@ -49,6 +51,8 @@ public function deleteNode(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieve status of a node or nodes that are currently marked as shutting down + * * $params['node_id'] = (string) Which node for which to retrieve the shutdown status * * @param array $params Associative array of parameters @@ -70,6 +74,8 @@ public function getNode(array $params = []) return $this->performRequest($endpoint); } /** + * Adds a node to be shut down + * * $params['node_id'] = (string) The node id of node to be shut down * $params['body'] = (array) The shutdown type definition to register (Required) * diff --git a/src/Elasticsearch/Namespaces/SlmNamespace.php b/src/Elasticsearch/Namespaces/SlmNamespace.php index f5c50b733..651781436 100644 --- a/src/Elasticsearch/Namespaces/SlmNamespace.php +++ b/src/Elasticsearch/Namespaces/SlmNamespace.php @@ -22,12 +22,14 @@ * Class SlmNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class SlmNamespace extends AbstractNamespace { /** + * Deletes an existing snapshot lifecycle policy. + * * $params['policy_id'] = (string) The id of the snapshot lifecycle policy to remove * * @param array $params Associative array of parameters @@ -46,6 +48,8 @@ public function deleteLifecycle(array $params = []) return $this->performRequest($endpoint); } /** + * Immediately creates a snapshot according to the lifecycle policy, without waiting for the scheduled time. + * * $params['policy_id'] = (string) The id of the snapshot lifecycle policy to be executed * * @param array $params Associative array of parameters @@ -64,6 +68,8 @@ public function executeLifecycle(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes any snapshots that are expired according to the policy's retention rules. + * * * @param array $params Associative array of parameters * @return array @@ -79,6 +85,8 @@ public function executeRetention(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves one or more snapshot lifecycle policy definitions and information about the latest snapshot attempts. + * * $params['policy_id'] = (list) Comma-separated list of snapshot lifecycle policies to retrieve * * @param array $params Associative array of parameters @@ -97,6 +105,8 @@ public function getLifecycle(array $params = []) return $this->performRequest($endpoint); } /** + * Returns global and policy-level statistics about actions taken by snapshot lifecycle management. + * * * @param array $params Associative array of parameters * @return array @@ -112,6 +122,8 @@ public function getStats(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves the status of snapshot lifecycle management (SLM). + * * * @param array $params Associative array of parameters * @return array @@ -127,6 +139,8 @@ public function getStatus(array $params = []) return $this->performRequest($endpoint); } /** + * Creates or updates a snapshot lifecycle policy. + * * $params['policy_id'] = (string) The id of the snapshot lifecycle policy * $params['body'] = (array) The snapshot lifecycle policy definition to register * @@ -148,6 +162,8 @@ public function putLifecycle(array $params = []) return $this->performRequest($endpoint); } /** + * Turns on snapshot lifecycle management (SLM). + * * * @param array $params Associative array of parameters * @return array @@ -163,6 +179,8 @@ public function start(array $params = []) return $this->performRequest($endpoint); } /** + * Turns off snapshot lifecycle management (SLM). + * * * @param array $params Associative array of parameters * @return array diff --git a/src/Elasticsearch/Namespaces/SnapshotNamespace.php b/src/Elasticsearch/Namespaces/SnapshotNamespace.php index f62b46c35..730e71789 100644 --- a/src/Elasticsearch/Namespaces/SnapshotNamespace.php +++ b/src/Elasticsearch/Namespaces/SnapshotNamespace.php @@ -22,12 +22,14 @@ * Class SnapshotNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class SnapshotNamespace extends AbstractNamespace { /** + * Removes stale data from repository. + * * $params['repository'] = (string) A repository name * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node * $params['timeout'] = (time) Explicit operation timeout @@ -48,6 +50,8 @@ public function cleanupRepository(array $params = []) return $this->performRequest($endpoint); } /** + * Clones indices from one snapshot into another snapshot in the same repository. + * * $params['repository'] = (string) A repository name * $params['snapshot'] = (string) The name of the snapshot to clone from * $params['target_snapshot'] = (string) The name of the cloned snapshot to create @@ -76,6 +80,8 @@ public function clone(array $params = []) return $this->performRequest($endpoint); } /** + * Creates a snapshot in a repository. + * * $params['repository'] = (string) A repository name * $params['snapshot'] = (string) A snapshot name * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node @@ -102,6 +108,8 @@ public function create(array $params = []) return $this->performRequest($endpoint); } /** + * Creates a repository. + * * $params['repository'] = (string) A repository name * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node * $params['timeout'] = (time) Explicit operation timeout @@ -126,6 +134,8 @@ public function createRepository(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes a snapshot. + * * $params['repository'] = (string) A repository name * $params['snapshot'] = (string) A snapshot name * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node @@ -148,6 +158,8 @@ public function delete(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes a repository. + * * $params['repository'] = (list) Name of the snapshot repository to unregister. Wildcard (`*`) patterns are supported. * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node * $params['timeout'] = (time) Explicit operation timeout @@ -168,11 +180,14 @@ public function deleteRepository(array $params = []) return $this->performRequest($endpoint); } /** + * Returns information about a snapshot. + * * $params['repository'] = (string) A repository name * $params['snapshot'] = (list) A comma-separated list of snapshot names * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node * $params['ignore_unavailable'] = (boolean) Whether to ignore unavailable snapshots, defaults to false which means a SnapshotMissingException is thrown * $params['index_details'] = (boolean) Whether to include details of each index in the snapshot, if those details are available. Defaults to false. + * $params['include_repository'] = (boolean) Whether to include the repository name in the snapshot info. Defaults to true. * $params['verbose'] = (boolean) Whether to show verbose snapshot info or only show the basic info found in the repository index blob * * @param array $params Associative array of parameters @@ -193,6 +208,8 @@ public function get(array $params = []) return $this->performRequest($endpoint); } /** + * Returns information about a repository. + * * $params['repository'] = (list) A comma-separated list of repository names * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node * $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) @@ -213,6 +230,39 @@ public function getRepository(array $params = []) return $this->performRequest($endpoint); } /** + * Analyzes a repository for correctness and performance + * + * $params['repository'] = (string) A repository name + * $params['blob_count'] = (number) Number of blobs to create during the test. Defaults to 100. + * $params['concurrency'] = (number) Number of operations to run concurrently during the test. Defaults to 10. + * $params['read_node_count'] = (number) Number of nodes on which to read a blob after writing. Defaults to 10. + * $params['early_read_node_count'] = (number) Number of nodes on which to perform an early read on a blob, i.e. before writing has completed. Early reads are rare actions so the 'rare_action_probability' parameter is also relevant. Defaults to 2. + * $params['seed'] = (number) Seed for the random number generator used to create the test workload. Defaults to a random value. + * $params['rare_action_probability'] = (number) Probability of taking a rare action such as an early read or an overwrite. Defaults to 0.02. + * $params['max_blob_size'] = (string) Maximum size of a blob to create during the test, e.g '1gb' or '100mb'. Defaults to '10mb'. + * $params['max_total_data_size'] = (string) Maximum total size of all blobs to create during the test, e.g '1tb' or '100gb'. Defaults to '1gb'. + * $params['timeout'] = (time) Explicit operation timeout. Defaults to '30s'. + * $params['detailed'] = (boolean) Whether to return detailed results or a summary. Defaults to 'false' so that only the summary is returned. + * $params['rarely_abort_writes'] = (boolean) Whether to rarely abort writes before they complete. Defaults to 'true'. + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html + */ + public function repositoryAnalyze(array $params = []) + { + $repository = $this->extractArgument($params, 'repository'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Snapshot\RepositoryAnalyze'); + $endpoint->setParams($params); + $endpoint->setRepository($repository); + + return $this->performRequest($endpoint); + } + /** + * Restores a snapshot. + * * $params['repository'] = (string) A repository name * $params['snapshot'] = (string) A snapshot name * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node @@ -239,6 +289,8 @@ public function restore(array $params = []) return $this->performRequest($endpoint); } /** + * Returns information about the status of a snapshot. + * * $params['repository'] = (string) A repository name * $params['snapshot'] = (list) A comma-separated list of snapshot names * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node @@ -262,6 +314,8 @@ public function status(array $params = []) return $this->performRequest($endpoint); } /** + * Verifies a repository. + * * $params['repository'] = (string) A repository name * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node * $params['timeout'] = (time) Explicit operation timeout diff --git a/src/Elasticsearch/Namespaces/SqlNamespace.php b/src/Elasticsearch/Namespaces/SqlNamespace.php index b1fcd36af..420e717c6 100644 --- a/src/Elasticsearch/Namespaces/SqlNamespace.php +++ b/src/Elasticsearch/Namespaces/SqlNamespace.php @@ -22,11 +22,20 @@ * Class SqlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class SqlNamespace extends AbstractNamespace { + /** + * Clears the SQL cursor + * + * $params['body'] = (array) Specify the cursor value in the `cursor` element to clean the cursor. (Required) + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/sql-pagination.html + */ public function clearCursor(array $params = []) { $body = $this->extractArgument($params, 'body'); @@ -39,6 +48,72 @@ public function clearCursor(array $params = []) return $this->performRequest($endpoint); } /** + * Deletes an async SQL search or a stored synchronous SQL search. If the search is still running, the API cancels it. + * + * $params['id'] = (string) The async search ID + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/delete-async-sql-search-api.html + */ + public function deleteAsync(array $params = []) + { + $id = $this->extractArgument($params, 'id'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Sql\DeleteAsync'); + $endpoint->setParams($params); + $endpoint->setId($id); + + return $this->performRequest($endpoint); + } + /** + * Returns the current status and available results for an async SQL search or stored synchronous SQL search + * + * $params['id'] = (string) The async search ID + * $params['delimiter'] = (string) Separator for CSV results (Default = ,) + * $params['format'] = (string) Short version of the Accept header, e.g. json, yaml + * $params['keep_alive'] = (time) Retention period for the search and its results (Default = 5d) + * $params['wait_for_completion_timeout'] = (time) Duration to wait for complete results + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/get-async-sql-search-api.html + */ + public function getAsync(array $params = []) + { + $id = $this->extractArgument($params, 'id'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Sql\GetAsync'); + $endpoint->setParams($params); + $endpoint->setId($id); + + return $this->performRequest($endpoint); + } + /** + * Returns the current status of an async SQL search or a stored synchronous SQL search + * + * $params['id'] = (string) The async search ID + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/get-async-sql-search-status-api.html + */ + public function getAsyncStatus(array $params = []) + { + $id = $this->extractArgument($params, 'id'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Sql\GetAsyncStatus'); + $endpoint->setParams($params); + $endpoint->setId($id); + + return $this->performRequest($endpoint); + } + /** + * Executes a SQL request + * * $params['format'] = (string) a short version of the Accept header, e.g. json, yaml * $params['body'] = (array) Use the `query` element to start a query. Use the `cursor` element to continue a query. (Required) * @@ -58,6 +133,8 @@ public function query(array $params = []) return $this->performRequest($endpoint); } /** + * Translates SQL into Elasticsearch queries + * * $params['body'] = (array) Specify the query in the `query` element. (Required) * * @param array $params Associative array of parameters diff --git a/src/Elasticsearch/Namespaces/SslNamespace.php b/src/Elasticsearch/Namespaces/SslNamespace.php index 73370d79c..4eb71f1fe 100644 --- a/src/Elasticsearch/Namespaces/SslNamespace.php +++ b/src/Elasticsearch/Namespaces/SslNamespace.php @@ -22,12 +22,14 @@ * Class SslNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class SslNamespace extends AbstractNamespace { /** + * Retrieves information about the X.509 certificates used to encrypt communications in the cluster. + * * * @param array $params Associative array of parameters * @return array diff --git a/src/Elasticsearch/Namespaces/TasksNamespace.php b/src/Elasticsearch/Namespaces/TasksNamespace.php index 2b41f0d03..1b7033182 100644 --- a/src/Elasticsearch/Namespaces/TasksNamespace.php +++ b/src/Elasticsearch/Namespaces/TasksNamespace.php @@ -22,12 +22,14 @@ * Class TasksNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class TasksNamespace extends AbstractNamespace { /** + * Cancels a task, if it can be cancelled through an API. + * * $params['task_id'] = (string) Cancel the task with specified task id (node_id:task_number) * $params['nodes'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes * $params['actions'] = (list) A comma-separated list of actions that should be cancelled. Leave empty to cancel all. @@ -53,6 +55,8 @@ public function cancel(array $params = []) return $this->performRequest($endpoint); } /** + * Returns information about a task. + * * $params['task_id'] = (string) Return the task with specified id (node_id:task_number) * $params['wait_for_completion'] = (boolean) Wait for the matching tasks to complete (default: false) * $params['timeout'] = (time) Explicit operation timeout @@ -76,6 +80,8 @@ public function get(array $params = []) return $this->performRequest($endpoint); } /** + * Returns a list of tasks. + * * $params['nodes'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes * $params['actions'] = (list) A comma-separated list of actions that should be returned. Leave empty to return all. * $params['detailed'] = (boolean) Return detailed task information (default: false) diff --git a/src/Elasticsearch/Namespaces/TextStructureNamespace.php b/src/Elasticsearch/Namespaces/TextStructureNamespace.php index fabd2567f..eca880135 100644 --- a/src/Elasticsearch/Namespaces/TextStructureNamespace.php +++ b/src/Elasticsearch/Namespaces/TextStructureNamespace.php @@ -22,12 +22,14 @@ * Class TextStructureNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class TextStructureNamespace extends AbstractNamespace { /** + * Finds the structure of a text file. The text file must contain data that is suitable to be ingested into Elasticsearch. + * * $params['lines_to_sample'] = (int) How many lines of the file should be included in the analysis (Default = 1000) * $params['line_merge_size_limit'] = (int) Maximum number of characters permitted in a single message when lines are merged to create messages. (Default = 10000) * $params['timeout'] = (time) Timeout after which the analysis will be aborted (Default = 25s) diff --git a/src/Elasticsearch/Namespaces/TransformNamespace.php b/src/Elasticsearch/Namespaces/TransformNamespace.php index 44f47838b..237438734 100644 --- a/src/Elasticsearch/Namespaces/TransformNamespace.php +++ b/src/Elasticsearch/Namespaces/TransformNamespace.php @@ -22,12 +22,14 @@ * Class TransformNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class TransformNamespace extends AbstractNamespace { /** + * Deletes an existing transform. + * * $params['transform_id'] = (string) The id of the transform to delete * $params['force'] = (boolean) When `true`, the transform is deleted regardless of its current state. The default value is `false`, meaning that the transform must be `stopped` before it can be deleted. * @@ -47,6 +49,8 @@ public function deleteTransform(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves configuration information for transforms. + * * $params['transform_id'] = (string) The id or comma delimited list of id expressions of the transforms to get, '_all' or '*' implies get all transforms * $params['from'] = (int) skips a number of transform configs, defaults to 0 * $params['size'] = (int) specifies a max number of transforms to get, defaults to 100 @@ -69,6 +73,8 @@ public function getTransform(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves usage information for transforms. + * * $params['transform_id'] = (string) The id of the transform for which to get stats. '_all' or '*' implies all transforms * $params['from'] = (number) skips a number of transform stats, defaults to 0 * $params['size'] = (number) specifies a max number of transform stats to get, defaults to 100 @@ -89,6 +95,15 @@ public function getTransformStats(array $params = []) return $this->performRequest($endpoint); } + /** + * Previews a transform. + * + * $params['body'] = (array) The definition for the transform to preview (Required) + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/preview-transform.html + */ public function previewTransform(array $params = []) { $body = $this->extractArgument($params, 'body'); @@ -101,6 +116,8 @@ public function previewTransform(array $params = []) return $this->performRequest($endpoint); } /** + * Instantiates a transform. + * * $params['transform_id'] = (string) The id of the new transform. * $params['defer_validation'] = (boolean) If validations should be deferred until transform starts, defaults to false. * $params['body'] = (array) The transform definition (Required) @@ -123,6 +140,8 @@ public function putTransform(array $params = []) return $this->performRequest($endpoint); } /** + * Starts one or more transforms. + * * $params['transform_id'] = (string) The id of the transform to start * $params['timeout'] = (time) Controls the time to wait for the transform to start * @@ -142,6 +161,8 @@ public function startTransform(array $params = []) return $this->performRequest($endpoint); } /** + * Stops one or more transforms. + * * $params['transform_id'] = (string) The id of the transform to stop * $params['force'] = (boolean) Whether to force stop a failed transform or not. Default to false * $params['wait_for_completion'] = (boolean) Whether to wait for the transform to fully stop before returning or not. Default to false @@ -165,6 +186,8 @@ public function stopTransform(array $params = []) return $this->performRequest($endpoint); } /** + * Updates certain properties of a transform. + * * $params['transform_id'] = (string) The id of the transform. * $params['defer_validation'] = (boolean) If validations should be deferred until transform starts, defaults to false. * $params['body'] = (array) The update transform definition (Required) diff --git a/src/Elasticsearch/Namespaces/WatcherNamespace.php b/src/Elasticsearch/Namespaces/WatcherNamespace.php index 145071374..4e7f9c9b7 100644 --- a/src/Elasticsearch/Namespaces/WatcherNamespace.php +++ b/src/Elasticsearch/Namespaces/WatcherNamespace.php @@ -22,12 +22,14 @@ * Class WatcherNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class WatcherNamespace extends AbstractNamespace { /** + * Acknowledges a watch, manually throttling the execution of the watch's actions. + * * $params['watch_id'] = (string) Watch ID (Required) * $params['action_id'] = (list) A comma-separated list of the action ids to be acked * @@ -49,6 +51,8 @@ public function ackWatch(array $params = []) return $this->performRequest($endpoint); } /** + * Activates a currently inactive watch. + * * $params['watch_id'] = (string) Watch ID * * @param array $params Associative array of parameters @@ -67,6 +71,8 @@ public function activateWatch(array $params = []) return $this->performRequest($endpoint); } /** + * Deactivates a currently active watch. + * * $params['watch_id'] = (string) Watch ID * * @param array $params Associative array of parameters @@ -85,6 +91,8 @@ public function deactivateWatch(array $params = []) return $this->performRequest($endpoint); } /** + * Removes a watch from Watcher. + * * $params['id'] = (string) Watch ID * * @param array $params Associative array of parameters @@ -103,6 +111,8 @@ public function deleteWatch(array $params = []) return $this->performRequest($endpoint); } /** + * Forces the execution of a stored watch. + * * $params['id'] = (string) Watch ID * $params['debug'] = (boolean) indicates whether the watch should execute in debug mode * $params['body'] = (array) Execution control @@ -125,6 +135,8 @@ public function executeWatch(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves a watch by its ID. + * * $params['id'] = (string) Watch ID * * @param array $params Associative array of parameters @@ -143,6 +155,8 @@ public function getWatch(array $params = []) return $this->performRequest($endpoint); } /** + * Creates a new watch, or updates an existing one. + * * $params['id'] = (string) Watch ID * $params['active'] = (boolean) Specify whether the watch is in/active by default * $params['version'] = (number) Explicit version number for concurrency control @@ -168,6 +182,8 @@ public function putWatch(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves stored watches. + * * $params['body'] = (array) From, size, query, sort and search_after * * @param array $params Associative array of parameters @@ -186,6 +202,8 @@ public function queryWatches(array $params = []) return $this->performRequest($endpoint); } /** + * Starts Watcher if it is not already running. + * * * @param array $params Associative array of parameters * @return array @@ -201,6 +219,8 @@ public function start(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves the current Watcher metrics. + * * $params['metric'] = (list) Controls what additional stat metrics should be include in the response * $params['emit_stacktraces'] = (boolean) Emits stack traces of currently running watches * @@ -220,6 +240,8 @@ public function stats(array $params = []) return $this->performRequest($endpoint); } /** + * Stops Watcher if it is running. + * * * @param array $params Associative array of parameters * @return array diff --git a/src/Elasticsearch/Namespaces/XpackNamespace.php b/src/Elasticsearch/Namespaces/XpackNamespace.php index b25803e12..82c78f978 100644 --- a/src/Elasticsearch/Namespaces/XpackNamespace.php +++ b/src/Elasticsearch/Namespaces/XpackNamespace.php @@ -22,12 +22,14 @@ * Class XpackNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f) + * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) */ class XpackNamespace extends AbstractNamespace { /** + * Retrieves information about the installed X-Pack features. + * * $params['categories'] = (list) Comma-separated list of info categories. Can be any of: build, license, features * $params['accept_enterprise'] = (boolean) If an enterprise license is installed, return the type and mode as 'enterprise' (default: false) * @@ -45,6 +47,8 @@ public function info(array $params = []) return $this->performRequest($endpoint); } /** + * Retrieves usage information about the installed X-Pack features. + * * $params['master_timeout'] = (time) Specify timeout for watch write operation * * @param array $params Associative array of parameters From 567566adfbb7f3d1012bdd16c3ec8c89d97c0326 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 15 Jul 2021 17:05:41 +0200 Subject: [PATCH 33/81] Updated the YAML test generator with the support of .value case --- util/ActionTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/util/ActionTest.php b/util/ActionTest.php index e6d6083cb..22771fdb0 100644 --- a/util/ActionTest.php +++ b/util/ActionTest.php @@ -432,6 +432,10 @@ private function convertResponseField(string $field): string if ($field === '$body' || $field === '') { return $output; } + // if the field start with $ use this as variable instead of $response + if ($field[0] === '$') { + list($output, $field) = explode('.', $field, 2); + } // if the field starts with a .$variable remove the first dot if (substr($field, 0, 2) === '.$') { $field = substr($field, 1); From 4ed0d7cc9cd56d9c3861fe0f3ae882603fb28644 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Tue, 3 Aug 2021 16:21:45 +0200 Subject: [PATCH 34/81] Allow psr/log 2 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index ff1b269a6..327b7ba0d 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ "php": "^7.3 || ^8.0", "ext-json": ">=1.3.7", "ezimuel/ringphp": "^1.1.2", - "psr/log": "~1.0" + "psr/log": "^1|^2" }, "require-dev": { "ext-yaml": "*", From 0ca2de20c9231b3dadc1dc0df0c587e2e7081b9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Bourgoin?= Date: Wed, 4 Aug 2021 08:20:34 +0200 Subject: [PATCH 35/81] Fix typo on per-request-configuration.asciidoc (#1155) Just a tiny typo. --- docs/per-request-configuration.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/per-request-configuration.asciidoc b/docs/per-request-configuration.asciidoc index 8e045d135..9bedf7c9c 100644 --- a/docs/per-request-configuration.asciidoc +++ b/docs/per-request-configuration.asciidoc @@ -253,7 +253,7 @@ Array It is possible to configure per-request curl timeouts via the `timeout` and `connect_timeout` parameters. These control the client-side, curl timeouts. The -`connect_timeout` paramter controls how long curl should wait for the "connect" +`connect_timeout` parameter controls how long curl should wait for the "connect" phase to finish, while the `timeout` parameter controls how long curl should wait for the entire request to finish. From 62bdcd72ea12604dd939f493dfb09f34fd64ce2e Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 18 Aug 2021 10:54:41 +0200 Subject: [PATCH 36/81] Added compatibility in README --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 7da624d98..e1e6bd724 100755 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ Table of Contents - [elasticsearch-php](#elasticsearch-php) * [Features](#features) * [Version Matrix](#version-matrix) + * [Compatibility](#compatibility) * [Documentation](#documentation) * [Installation via Composer](#installation-via-composer) * [PHP Version Requirement](#php-version-requirement) @@ -87,6 +88,13 @@ Version Matrix - If you are using a version older than 1.0, you must install the `0.4` Elasticsearch-PHP branch. Since ES 0.90.x and below is now EOL, the corresponding `0.4` branch will not receive any more development or bugfixes. Please upgrade. - You should never use Elasticsearch-PHP Master branch, as it tracks Elasticsearch master and may contain incomplete features or breaks in backwards compatibility. Only use ES-PHP master if you are developing against ES master for some reason. +Compatibility +------------- + +Language clients are forward compatible; meaning that clients support communicating +with greater minor versions of Elasticsearch. Elastic language clients are also backwards +compatible with lesser supported minor Elasticsearch versions. + Documentation -------------- [Full documentation can be found here.](https://www.elastic.co/guide/en/elasticsearch/client/php-api/current/index.html) Docs are stored within the repo under /docs/, so if you see a typo or problem, please submit a PR to fix it! From 9472875d61c085a4caa9f12e50f3681bcd4a2da8 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Tue, 21 Sep 2021 10:55:57 +0200 Subject: [PATCH 37/81] Updated endpoints to 7.15 --- .ci/jobs/elastic+elasticsearch-php+7.10.yml | 14 --- .ci/jobs/elastic+elasticsearch-php+7.9.yml | 14 --- .ci/test-matrix.yml | 2 +- src/Elasticsearch/Client.php | 45 ++++++- .../Endpoints/AsyncSearch/Delete.php | 2 +- .../Endpoints/AsyncSearch/Get.php | 2 +- .../Endpoints/AsyncSearch/Status.php | 2 +- .../Endpoints/AsyncSearch/Submit.php | 2 +- .../Autoscaling/DeleteAutoscalingPolicy.php | 2 +- .../Autoscaling/GetAutoscalingCapacity.php | 2 +- .../Autoscaling/GetAutoscalingPolicy.php | 2 +- .../Autoscaling/PutAutoscalingPolicy.php | 2 +- src/Elasticsearch/Endpoints/Bulk.php | 2 +- src/Elasticsearch/Endpoints/Cat/Aliases.php | 2 +- .../Endpoints/Cat/Allocation.php | 2 +- src/Elasticsearch/Endpoints/Cat/Count.php | 2 +- src/Elasticsearch/Endpoints/Cat/Fielddata.php | 2 +- src/Elasticsearch/Endpoints/Cat/Health.php | 2 +- src/Elasticsearch/Endpoints/Cat/Help.php | 2 +- src/Elasticsearch/Endpoints/Cat/Indices.php | 2 +- src/Elasticsearch/Endpoints/Cat/Master.php | 2 +- .../Endpoints/Cat/MlDataFrameAnalytics.php | 2 +- .../Endpoints/Cat/MlDatafeeds.php | 2 +- src/Elasticsearch/Endpoints/Cat/MlJobs.php | 2 +- .../Endpoints/Cat/MlTrainedModels.php | 2 +- src/Elasticsearch/Endpoints/Cat/NodeAttrs.php | 2 +- src/Elasticsearch/Endpoints/Cat/Nodes.php | 2 +- .../Endpoints/Cat/PendingTasks.php | 2 +- src/Elasticsearch/Endpoints/Cat/Plugins.php | 2 +- src/Elasticsearch/Endpoints/Cat/Recovery.php | 2 +- .../Endpoints/Cat/Repositories.php | 2 +- src/Elasticsearch/Endpoints/Cat/Segments.php | 2 +- src/Elasticsearch/Endpoints/Cat/Shards.php | 2 +- src/Elasticsearch/Endpoints/Cat/Snapshots.php | 2 +- src/Elasticsearch/Endpoints/Cat/Tasks.php | 2 +- src/Elasticsearch/Endpoints/Cat/Templates.php | 2 +- .../Endpoints/Cat/ThreadPool.php | 2 +- .../Endpoints/Cat/Transforms.php | 2 +- .../Endpoints/Ccr/DeleteAutoFollowPattern.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Follow.php | 2 +- .../Endpoints/Ccr/FollowInfo.php | 2 +- .../Endpoints/Ccr/FollowStats.php | 2 +- .../Endpoints/Ccr/ForgetFollower.php | 2 +- .../Endpoints/Ccr/GetAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/PauseAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/PauseFollow.php | 2 +- .../Endpoints/Ccr/PutAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/ResumeAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/ResumeFollow.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Stats.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Unfollow.php | 2 +- src/Elasticsearch/Endpoints/ClearScroll.php | 2 +- .../Endpoints/ClosePointInTime.php | 2 +- .../Endpoints/Cluster/AllocationExplain.php | 2 +- .../Cluster/DeleteComponentTemplate.php | 2 +- .../Cluster/DeleteVotingConfigExclusions.php | 2 +- .../Cluster/ExistsComponentTemplate.php | 2 +- .../Cluster/GetComponentTemplate.php | 2 +- .../Endpoints/Cluster/GetSettings.php | 2 +- .../Endpoints/Cluster/Health.php | 2 +- .../Endpoints/Cluster/PendingTasks.php | 2 +- .../Cluster/PostVotingConfigExclusions.php | 2 +- .../Cluster/PutComponentTemplate.php | 2 +- .../Endpoints/Cluster/PutSettings.php | 2 +- .../Endpoints/Cluster/RemoteInfo.php | 2 +- .../Endpoints/Cluster/Reroute.php | 2 +- src/Elasticsearch/Endpoints/Cluster/State.php | 2 +- src/Elasticsearch/Endpoints/Cluster/Stats.php | 2 +- src/Elasticsearch/Endpoints/Count.php | 2 +- src/Elasticsearch/Endpoints/Create.php | 2 +- .../DanglingIndices/DeleteDanglingIndex.php | 2 +- .../DanglingIndices/ImportDanglingIndex.php | 2 +- .../DanglingIndices/ListDanglingIndices.php | 2 +- .../DeleteTransform.php | 2 +- .../GetTransform.php | 2 +- .../GetTransformStats.php | 2 +- .../PreviewTransform.php | 2 +- .../PutTransform.php | 2 +- .../StartTransform.php | 2 +- .../StopTransform.php | 2 +- .../UpdateTransform.php | 2 +- src/Elasticsearch/Endpoints/Delete.php | 2 +- src/Elasticsearch/Endpoints/DeleteByQuery.php | 2 +- .../Endpoints/DeleteByQueryRethrottle.php | 2 +- src/Elasticsearch/Endpoints/DeleteScript.php | 2 +- .../Endpoints/Enrich/DeletePolicy.php | 2 +- .../Endpoints/Enrich/ExecutePolicy.php | 2 +- .../Endpoints/Enrich/GetPolicy.php | 2 +- .../Endpoints/Enrich/PutPolicy.php | 2 +- src/Elasticsearch/Endpoints/Enrich/Stats.php | 2 +- src/Elasticsearch/Endpoints/Eql/Delete.php | 2 +- src/Elasticsearch/Endpoints/Eql/Get.php | 2 +- src/Elasticsearch/Endpoints/Eql/GetStatus.php | 2 +- src/Elasticsearch/Endpoints/Eql/Search.php | 2 +- src/Elasticsearch/Endpoints/Exists.php | 2 +- src/Elasticsearch/Endpoints/ExistsSource.php | 2 +- src/Elasticsearch/Endpoints/Explain.php | 2 +- .../Endpoints/Features/GetFeatures.php | 2 +- .../Endpoints/Features/ResetFeatures.php | 2 +- src/Elasticsearch/Endpoints/FieldCaps.php | 2 +- .../Endpoints/Fleet/GlobalCheckpoints.php | 2 +- src/Elasticsearch/Endpoints/Get.php | 2 +- src/Elasticsearch/Endpoints/GetScript.php | 2 +- .../Endpoints/GetScriptContext.php | 2 +- .../Endpoints/GetScriptLanguages.php | 2 +- src/Elasticsearch/Endpoints/GetSource.php | 2 +- src/Elasticsearch/Endpoints/Graph/Explore.php | 2 +- .../Endpoints/Ilm/DeleteLifecycle.php | 2 +- .../Endpoints/Ilm/ExplainLifecycle.php | 2 +- .../Endpoints/Ilm/GetLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Ilm/GetStatus.php | 2 +- .../Endpoints/Ilm/MigrateToDataTiers.php | 2 +- .../Endpoints/Ilm/MoveToStep.php | 2 +- .../Endpoints/Ilm/PutLifecycle.php | 2 +- .../Endpoints/Ilm/RemovePolicy.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Retry.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Start.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Stop.php | 2 +- src/Elasticsearch/Endpoints/Index.php | 2 +- .../Endpoints/Indices/AddBlock.php | 2 +- .../Endpoints/Indices/Analyze.php | 2 +- .../Endpoints/Indices/ClearCache.php | 2 +- .../Endpoints/Indices/CloneIndices.php | 2 +- src/Elasticsearch/Endpoints/Indices/Close.php | 2 +- .../Endpoints/Indices/Create.php | 2 +- .../Endpoints/Indices/CreateDataStream.php | 2 +- .../Endpoints/Indices/DataStreamsStats.php | 2 +- .../Endpoints/Indices/Delete.php | 2 +- .../Endpoints/Indices/DeleteAlias.php | 2 +- .../Endpoints/Indices/DeleteDataStream.php | 2 +- .../Endpoints/Indices/DeleteIndexTemplate.php | 2 +- .../Endpoints/Indices/DeleteTemplate.php | 2 +- .../Endpoints/Indices/DiskUsage.php | 2 +- .../Endpoints/Indices/Exists.php | 2 +- .../Endpoints/Indices/ExistsAlias.php | 2 +- .../Endpoints/Indices/ExistsIndexTemplate.php | 2 +- .../Endpoints/Indices/ExistsTemplate.php | 2 +- .../Endpoints/Indices/ExistsType.php | 2 +- .../Endpoints/Indices/FieldUsageStats.php | 2 +- src/Elasticsearch/Endpoints/Indices/Flush.php | 2 +- .../Endpoints/Indices/FlushSynced.php | 2 +- .../Endpoints/Indices/ForceMerge.php | 2 +- .../Endpoints/Indices/Freeze.php | 2 +- src/Elasticsearch/Endpoints/Indices/Get.php | 2 +- .../Endpoints/Indices/GetAlias.php | 2 +- .../Endpoints/Indices/GetDataStream.php | 2 +- .../Endpoints/Indices/GetFieldMapping.php | 2 +- .../Endpoints/Indices/GetIndexTemplate.php | 2 +- .../Endpoints/Indices/GetMapping.php | 2 +- .../Endpoints/Indices/GetSettings.php | 2 +- .../Endpoints/Indices/GetTemplate.php | 2 +- .../Endpoints/Indices/GetUpgrade.php | 2 +- .../Endpoints/Indices/MigrateToDataStream.php | 2 +- src/Elasticsearch/Endpoints/Indices/Open.php | 2 +- .../Endpoints/Indices/PromoteDataStream.php | 2 +- .../Endpoints/Indices/PutAlias.php | 2 +- .../Endpoints/Indices/PutIndexTemplate.php | 2 +- .../Endpoints/Indices/PutMapping.php | 2 +- .../Endpoints/Indices/PutSettings.php | 2 +- .../Endpoints/Indices/PutTemplate.php | 2 +- .../Endpoints/Indices/Recovery.php | 2 +- .../Endpoints/Indices/Refresh.php | 2 +- .../Indices/ReloadSearchAnalyzers.php | 2 +- .../Endpoints/Indices/ResolveIndex.php | 2 +- .../Endpoints/Indices/Rollover.php | 2 +- .../Endpoints/Indices/Segments.php | 2 +- .../Endpoints/Indices/ShardStores.php | 2 +- .../Endpoints/Indices/Shrink.php | 2 +- .../Indices/SimulateIndexTemplate.php | 2 +- .../Endpoints/Indices/SimulateTemplate.php | 2 +- src/Elasticsearch/Endpoints/Indices/Split.php | 2 +- src/Elasticsearch/Endpoints/Indices/Stats.php | 2 +- .../Endpoints/Indices/Unfreeze.php | 2 +- .../Endpoints/Indices/UpdateAliases.php | 2 +- .../Endpoints/Indices/Upgrade.php | 2 +- .../Endpoints/Indices/ValidateQuery.php | 2 +- src/Elasticsearch/Endpoints/Info.php | 2 +- .../Endpoints/Ingest/DeletePipeline.php | 2 +- .../Endpoints/Ingest/GeoIpStats.php | 2 +- .../Endpoints/Ingest/GetPipeline.php | 2 +- .../Endpoints/Ingest/ProcessorGrok.php | 2 +- .../Endpoints/Ingest/PutPipeline.php | 2 +- .../Endpoints/Ingest/Simulate.php | 2 +- .../Endpoints/License/Delete.php | 2 +- src/Elasticsearch/Endpoints/License/Get.php | 2 +- .../Endpoints/License/GetBasicStatus.php | 2 +- .../Endpoints/License/GetTrialStatus.php | 2 +- src/Elasticsearch/Endpoints/License/Post.php | 2 +- .../Endpoints/License/PostStartBasic.php | 2 +- .../Endpoints/License/PostStartTrial.php | 2 +- .../Endpoints/Logstash/DeletePipeline.php | 2 +- .../Endpoints/Logstash/GetPipeline.php | 2 +- .../Endpoints/Logstash/PutPipeline.php | 2 +- src/Elasticsearch/Endpoints/MTermVectors.php | 2 +- src/Elasticsearch/Endpoints/Mget.php | 2 +- .../Endpoints/Migration/Deprecations.php | 2 +- src/Elasticsearch/Endpoints/Ml/CloseJob.php | 2 +- .../Endpoints/Ml/DeleteCalendar.php | 2 +- .../Endpoints/Ml/DeleteCalendarEvent.php | 2 +- .../Endpoints/Ml/DeleteCalendarJob.php | 2 +- .../Endpoints/Ml/DeleteDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/DeleteDatafeed.php | 2 +- .../Endpoints/Ml/DeleteExpiredData.php | 2 +- .../Endpoints/Ml/DeleteFilter.php | 2 +- .../Endpoints/Ml/DeleteForecast.php | 2 +- src/Elasticsearch/Endpoints/Ml/DeleteJob.php | 2 +- .../Endpoints/Ml/DeleteModelSnapshot.php | 2 +- .../Endpoints/Ml/DeleteTrainedModel.php | 2 +- .../Endpoints/Ml/DeleteTrainedModelAlias.php | 2 +- .../Endpoints/Ml/EstimateModelMemory.php | 2 +- .../Endpoints/Ml/EvaluateDataFrame.php | 2 +- .../Ml/ExplainDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/FindFileStructure.php | 2 +- src/Elasticsearch/Endpoints/Ml/FlushJob.php | 2 +- src/Elasticsearch/Endpoints/Ml/Forecast.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetBuckets.php | 2 +- .../Endpoints/Ml/GetCalendarEvents.php | 2 +- .../Endpoints/Ml/GetCalendars.php | 2 +- .../Endpoints/Ml/GetCategories.php | 2 +- .../Endpoints/Ml/GetDataFrameAnalytics.php | 2 +- .../Ml/GetDataFrameAnalyticsStats.php | 2 +- .../Endpoints/Ml/GetDatafeedStats.php | 2 +- .../Endpoints/Ml/GetDatafeeds.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetFilters.php | 2 +- .../Endpoints/Ml/GetInfluencers.php | 2 +- .../Endpoints/Ml/GetJobStats.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetJobs.php | 2 +- .../Endpoints/Ml/GetModelSnapshots.php | 2 +- .../Endpoints/Ml/GetOverallBuckets.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetRecords.php | 2 +- .../Endpoints/Ml/GetTrainedModels.php | 2 +- .../Endpoints/Ml/GetTrainedModelsStats.php | 2 +- src/Elasticsearch/Endpoints/Ml/Info.php | 2 +- src/Elasticsearch/Endpoints/Ml/OpenJob.php | 2 +- .../Endpoints/Ml/PostCalendarEvents.php | 2 +- src/Elasticsearch/Endpoints/Ml/PostData.php | 2 +- .../Ml/PreviewDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/PreviewDatafeed.php | 2 +- .../Endpoints/Ml/PutCalendar.php | 2 +- .../Endpoints/Ml/PutCalendarJob.php | 2 +- .../Endpoints/Ml/PutDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/PutDatafeed.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutFilter.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutJob.php | 2 +- .../Endpoints/Ml/PutTrainedModel.php | 2 +- .../Endpoints/Ml/PutTrainedModelAlias.php | 2 +- src/Elasticsearch/Endpoints/Ml/ResetJob.php | 2 +- .../Endpoints/Ml/RevertModelSnapshot.php | 2 +- .../Endpoints/Ml/SetUpgradeMode.php | 2 +- .../Endpoints/Ml/StartDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/StartDatafeed.php | 2 +- .../Endpoints/Ml/StopDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/StopDatafeed.php | 2 +- .../Endpoints/Ml/UpdateDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/UpdateDatafeed.php | 2 +- .../Endpoints/Ml/UpdateFilter.php | 2 +- src/Elasticsearch/Endpoints/Ml/UpdateJob.php | 2 +- .../Endpoints/Ml/UpdateModelSnapshot.php | 2 +- .../Endpoints/Ml/UpgradeJobSnapshot.php | 2 +- src/Elasticsearch/Endpoints/Ml/Validate.php | 2 +- .../Endpoints/Ml/ValidateDetector.php | 2 +- .../Endpoints/Monitoring/Bulk.php | 2 +- src/Elasticsearch/Endpoints/Msearch.php | 2 +- .../Endpoints/MsearchTemplate.php | 2 +- .../ClearRepositoriesMeteringArchive.php | 77 ++++++++++++ .../Nodes/GetRepositoriesMeteringInfo.php | 65 ++++++++++ .../Endpoints/Nodes/HotThreads.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Info.php | 2 +- .../Endpoints/Nodes/ReloadSecureSettings.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Stats.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Usage.php | 2 +- .../Endpoints/OpenPointInTime.php | 5 +- src/Elasticsearch/Endpoints/Ping.php | 2 +- src/Elasticsearch/Endpoints/PutScript.php | 2 +- src/Elasticsearch/Endpoints/RankEval.php | 2 +- src/Elasticsearch/Endpoints/Reindex.php | 2 +- .../Endpoints/ReindexRethrottle.php | 2 +- .../Endpoints/RenderSearchTemplate.php | 2 +- .../Endpoints/Rollup/DeleteJob.php | 2 +- .../Endpoints/Rollup/GetJobs.php | 2 +- .../Endpoints/Rollup/GetRollupCaps.php | 2 +- .../Endpoints/Rollup/GetRollupIndexCaps.php | 2 +- src/Elasticsearch/Endpoints/Rollup/PutJob.php | 2 +- src/Elasticsearch/Endpoints/Rollup/Rollup.php | 2 +- .../Endpoints/Rollup/RollupSearch.php | 2 +- .../Endpoints/Rollup/StartJob.php | 2 +- .../Endpoints/Rollup/StopJob.php | 2 +- .../Endpoints/ScriptsPainlessExecute.php | 2 +- src/Elasticsearch/Endpoints/Scroll.php | 2 +- src/Elasticsearch/Endpoints/Search.php | 2 +- src/Elasticsearch/Endpoints/SearchMvt.php | 115 ++++++++++++++++++ src/Elasticsearch/Endpoints/SearchShards.php | 2 +- .../Endpoints/SearchTemplate.php | 2 +- .../SearchableSnapshots/CacheStats.php | 2 +- .../SearchableSnapshots/ClearCache.php | 2 +- .../Endpoints/SearchableSnapshots/Mount.php | 2 +- .../SearchableSnapshots/RepositoryStats.php | 2 +- .../Endpoints/SearchableSnapshots/Stats.php | 2 +- .../Endpoints/Security/Authenticate.php | 2 +- .../Endpoints/Security/ChangePassword.php | 2 +- .../Endpoints/Security/ClearApiKeyCache.php | 2 +- .../Security/ClearCachedPrivileges.php | 2 +- .../Endpoints/Security/ClearCachedRealms.php | 2 +- .../Endpoints/Security/ClearCachedRoles.php | 2 +- .../Security/ClearCachedServiceTokens.php | 2 +- .../Endpoints/Security/CreateApiKey.php | 2 +- .../Endpoints/Security/CreateServiceToken.php | 2 +- .../Endpoints/Security/DeletePrivileges.php | 2 +- .../Endpoints/Security/DeleteRole.php | 2 +- .../Endpoints/Security/DeleteRoleMapping.php | 2 +- .../Endpoints/Security/DeleteServiceToken.php | 2 +- .../Endpoints/Security/DeleteUser.php | 2 +- .../Endpoints/Security/DisableUser.php | 2 +- .../Endpoints/Security/EnableUser.php | 2 +- .../Endpoints/Security/GetApiKey.php | 2 +- .../Security/GetBuiltinPrivileges.php | 2 +- .../Endpoints/Security/GetPrivileges.php | 2 +- .../Endpoints/Security/GetRole.php | 2 +- .../Endpoints/Security/GetRoleMapping.php | 2 +- .../Endpoints/Security/GetServiceAccounts.php | 2 +- .../Security/GetServiceCredentials.php | 2 +- .../Endpoints/Security/GetToken.php | 2 +- .../Endpoints/Security/GetUser.php | 2 +- .../Endpoints/Security/GetUserPrivileges.php | 2 +- .../Endpoints/Security/GrantApiKey.php | 2 +- .../Endpoints/Security/HasPrivileges.php | 2 +- .../Endpoints/Security/InvalidateApiKey.php | 2 +- .../Endpoints/Security/InvalidateToken.php | 2 +- .../Endpoints/Security/PutPrivileges.php | 2 +- .../Endpoints/Security/PutRole.php | 2 +- .../Endpoints/Security/PutRoleMapping.php | 2 +- .../Endpoints/Security/PutUser.php | 2 +- .../Endpoints/Security/QueryApiKeys.php | 58 +++++++++ .../Endpoints/Security/SamlAuthenticate.php | 2 +- .../Endpoints/Security/SamlCompleteLogout.php | 2 +- .../Endpoints/Security/SamlInvalidate.php | 2 +- .../Endpoints/Security/SamlLogout.php | 2 +- .../Security/SamlPrepareAuthentication.php | 2 +- .../Security/SamlServiceProviderMetadata.php | 2 +- .../Endpoints/Shutdown/DeleteNode.php | 2 +- .../Endpoints/Shutdown/GetNode.php | 2 +- .../Endpoints/Shutdown/PutNode.php | 2 +- .../Endpoints/Slm/DeleteLifecycle.php | 2 +- .../Endpoints/Slm/ExecuteLifecycle.php | 2 +- .../Endpoints/Slm/ExecuteRetention.php | 2 +- .../Endpoints/Slm/GetLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Slm/GetStats.php | 2 +- src/Elasticsearch/Endpoints/Slm/GetStatus.php | 2 +- .../Endpoints/Slm/PutLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Slm/Start.php | 2 +- src/Elasticsearch/Endpoints/Slm/Stop.php | 2 +- .../Endpoints/Snapshot/CleanupRepository.php | 2 +- .../Endpoints/Snapshot/CloneSnapshot.php | 2 +- .../Endpoints/Snapshot/Create.php | 2 +- .../Endpoints/Snapshot/CreateRepository.php | 2 +- .../Endpoints/Snapshot/Delete.php | 2 +- .../Endpoints/Snapshot/DeleteRepository.php | 2 +- src/Elasticsearch/Endpoints/Snapshot/Get.php | 2 +- .../Endpoints/Snapshot/GetRepository.php | 2 +- .../Endpoints/Snapshot/RepositoryAnalyze.php | 2 +- .../Endpoints/Snapshot/Restore.php | 2 +- .../Endpoints/Snapshot/Status.php | 2 +- .../Endpoints/Snapshot/VerifyRepository.php | 2 +- .../Endpoints/Sql/ClearCursor.php | 2 +- .../Endpoints/Sql/DeleteAsync.php | 2 +- src/Elasticsearch/Endpoints/Sql/GetAsync.php | 2 +- .../Endpoints/Sql/GetAsyncStatus.php | 2 +- src/Elasticsearch/Endpoints/Sql/Query.php | 2 +- src/Elasticsearch/Endpoints/Sql/Translate.php | 2 +- .../Endpoints/Ssl/Certificates.php | 2 +- src/Elasticsearch/Endpoints/Tasks/Cancel.php | 2 +- src/Elasticsearch/Endpoints/Tasks/Get.php | 2 +- .../Endpoints/Tasks/ListTasks.php | 2 +- src/Elasticsearch/Endpoints/TermVectors.php | 2 +- src/Elasticsearch/Endpoints/TermsEnum.php | 2 +- .../Endpoints/TextStructure/FindStructure.php | 2 +- .../Endpoints/Transform/DeleteTransform.php | 2 +- .../Endpoints/Transform/GetTransform.php | 2 +- .../Endpoints/Transform/GetTransformStats.php | 2 +- .../Endpoints/Transform/PreviewTransform.php | 2 +- .../Endpoints/Transform/PutTransform.php | 2 +- .../Endpoints/Transform/StartTransform.php | 2 +- .../Endpoints/Transform/StopTransform.php | 2 +- .../Endpoints/Transform/UpdateTransform.php | 2 +- src/Elasticsearch/Endpoints/Update.php | 2 +- src/Elasticsearch/Endpoints/UpdateByQuery.php | 2 +- .../Endpoints/UpdateByQueryRethrottle.php | 2 +- .../Endpoints/Watcher/AckWatch.php | 2 +- .../Endpoints/Watcher/ActivateWatch.php | 2 +- .../Endpoints/Watcher/DeactivateWatch.php | 2 +- .../Endpoints/Watcher/DeleteWatch.php | 2 +- .../Endpoints/Watcher/ExecuteWatch.php | 2 +- .../Endpoints/Watcher/GetWatch.php | 2 +- .../Endpoints/Watcher/PutWatch.php | 2 +- .../Endpoints/Watcher/QueryWatches.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Start.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Stats.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Stop.php | 2 +- src/Elasticsearch/Endpoints/Xpack/Info.php | 2 +- src/Elasticsearch/Endpoints/Xpack/Usage.php | 2 +- .../Namespaces/AsyncSearchNamespace.php | 2 +- .../Namespaces/AutoscalingNamespace.php | 2 +- src/Elasticsearch/Namespaces/CatNamespace.php | 2 +- src/Elasticsearch/Namespaces/CcrNamespace.php | 2 +- .../Namespaces/ClusterNamespace.php | 4 +- .../Namespaces/DanglingIndicesNamespace.php | 2 +- .../DataFrameTransformDeprecatedNamespace.php | 2 +- .../Namespaces/EnrichNamespace.php | 2 +- src/Elasticsearch/Namespaces/EqlNamespace.php | 2 +- .../Namespaces/FeaturesNamespace.php | 2 +- .../Namespaces/FleetNamespace.php | 2 +- .../Namespaces/GraphNamespace.php | 2 +- src/Elasticsearch/Namespaces/IlmNamespace.php | 2 +- .../Namespaces/IndicesNamespace.php | 6 +- .../Namespaces/IngestNamespace.php | 2 +- .../Namespaces/LicenseNamespace.php | 2 +- .../Namespaces/LogstashNamespace.php | 2 +- .../Namespaces/MigrationNamespace.php | 2 +- src/Elasticsearch/Namespaces/MlNamespace.php | 2 +- .../Namespaces/MonitoringNamespace.php | 2 +- .../Namespaces/NodesNamespace.php | 51 +++++++- .../Namespaces/RollupNamespace.php | 2 +- .../SearchableSnapshotsNamespace.php | 2 +- .../Namespaces/SecurityNamespace.php | 22 +++- .../Namespaces/ShutdownNamespace.php | 2 +- src/Elasticsearch/Namespaces/SlmNamespace.php | 2 +- .../Namespaces/SnapshotNamespace.php | 2 +- src/Elasticsearch/Namespaces/SqlNamespace.php | 8 +- src/Elasticsearch/Namespaces/SslNamespace.php | 2 +- .../Namespaces/TasksNamespace.php | 2 +- .../Namespaces/TextStructureNamespace.php | 2 +- .../Namespaces/TransformNamespace.php | 2 +- .../Namespaces/WatcherNamespace.php | 2 +- .../Namespaces/XpackNamespace.php | 2 +- 434 files changed, 863 insertions(+), 463 deletions(-) delete mode 100644 .ci/jobs/elastic+elasticsearch-php+7.10.yml delete mode 100644 .ci/jobs/elastic+elasticsearch-php+7.9.yml create mode 100644 src/Elasticsearch/Endpoints/Nodes/ClearRepositoriesMeteringArchive.php create mode 100644 src/Elasticsearch/Endpoints/Nodes/GetRepositoriesMeteringInfo.php create mode 100644 src/Elasticsearch/Endpoints/SearchMvt.php create mode 100644 src/Elasticsearch/Endpoints/Security/QueryApiKeys.php diff --git a/.ci/jobs/elastic+elasticsearch-php+7.10.yml b/.ci/jobs/elastic+elasticsearch-php+7.10.yml deleted file mode 100644 index 847fbed1a..000000000 --- a/.ci/jobs/elastic+elasticsearch-php+7.10.yml +++ /dev/null @@ -1,14 +0,0 @@ ---- -- job: - name: elastic+elasticsearch-php+7.10 - display-name: 'elastic / elasticsearch-php # 7.10' - description: Testing the elasticsearch-php 7.10 branch. - parameters: - - string: - name: branch_specifier - default: refs/heads/7.10 - description: the Git branch specifier to build (<branchName>, <tagName>, - <commitId>, etc.) - triggers: - - github - - timed: 'H */12 * * *' diff --git a/.ci/jobs/elastic+elasticsearch-php+7.9.yml b/.ci/jobs/elastic+elasticsearch-php+7.9.yml deleted file mode 100644 index 441c47422..000000000 --- a/.ci/jobs/elastic+elasticsearch-php+7.9.yml +++ /dev/null @@ -1,14 +0,0 @@ ---- -- job: - name: elastic+elasticsearch-php+7.9 - display-name: 'elastic / elasticsearch-php # 7.9' - description: Testing the elasticsearch-php 7.9 branch. - parameters: - - string: - name: branch_specifier - default: refs/heads/7.9 - description: the Git branch specifier to build (<branchName>, <tagName>, - <commitId>, etc.) - triggers: - - github - - timed: 'H */12 * * *' diff --git a/.ci/test-matrix.yml b/.ci/test-matrix.yml index 0bec1291b..1bbfd6b2b 100644 --- a/.ci/test-matrix.yml +++ b/.ci/test-matrix.yml @@ -1,6 +1,6 @@ --- STACK_VERSION: - - 7.x-SNAPSHOT + - 7.15-SNAPSHOT PHP_VERSION: - 8.0-cli diff --git a/src/Elasticsearch/Client.php b/src/Elasticsearch/Client.php index 88b6784c6..754d9b2e0 100644 --- a/src/Elasticsearch/Client.php +++ b/src/Elasticsearch/Client.php @@ -65,7 +65,7 @@ * Class Client * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Client { @@ -1364,6 +1364,49 @@ public function search(array $params = []) return $this->performRequest($endpoint); } + /** + * Searches a vector tile for geospatial values. Returns results as a binary Mapbox vector tile. + * + * $params['index'] = (list) Comma-separated list of data streams, indices, or aliases to search + * $params['field'] = (string) Field containing geospatial data to return + * $params['zoom'] = (int) Zoom level for the vector tile to search + * $params['x'] = (int) X coordinate for the vector tile to search + * $params['y'] = (int) Y coordinate for the vector tile to search + * $params['exact_bounds'] = (boolean) If false, the meta layer's feature is the bounding box of the tile. If true, the meta layer's feature is a bounding box resulting from a `geo_bounds` aggregation. (Default = false) + * $params['extent'] = (int) Size, in pixels, of a side of the vector tile. (Default = 4096) + * $params['grid_precision'] = (int) Additional zoom levels available through the aggs layer. Accepts 0-8. (Default = 8) + * $params['grid_type'] = (enum) Determines the geometry type for features in the aggs layer. (Options = grid,point) (Default = grid) + * $params['size'] = (int) Maximum number of features to return in the hits layer. Accepts 0-10000. (Default = 10000) + * $params['body'] = (array) Search request body. + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/search-vector-tile-api.html + * + * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release + * + */ + public function searchMvt(array $params = []) + { + $index = $this->extractArgument($params, 'index'); + $field = $this->extractArgument($params, 'field'); + $zoom = $this->extractArgument($params, 'zoom'); + $x = $this->extractArgument($params, 'x'); + $y = $this->extractArgument($params, 'y'); + $body = $this->extractArgument($params, 'body'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('SearchMvt'); + $endpoint->setParams($params); + $endpoint->setIndex($index); + $endpoint->setField($field); + $endpoint->setZoom($zoom); + $endpoint->setX($x); + $endpoint->setY($y); + $endpoint->setBody($body); + + return $this->performRequest($endpoint); + } /** * Returns information about the indices and shards that a search request would be executed against. * diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php b/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php index a6505de5e..d038ecfd5 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Get.php b/src/Elasticsearch/Endpoints/AsyncSearch/Get.php index 1cb050c1e..a543f4728 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Get.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Status.php b/src/Elasticsearch/Endpoints/AsyncSearch/Status.php index 90baf5670..5e77474e4 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Status.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Status.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Status extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php b/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php index d17fae047..773832af2 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php @@ -23,7 +23,7 @@ * Elasticsearch API name async_search.submit * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Submit extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php index d955d7384..a4f1041e1 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.delete_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php index 21bfa854c..cc83f0044 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php @@ -23,7 +23,7 @@ * Elasticsearch API name autoscaling.get_autoscaling_capacity * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetAutoscalingCapacity extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php index 260c0f121..44b83e76b 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.get_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php index 87a7424bd..ff56880e3 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.put_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Bulk.php b/src/Elasticsearch/Endpoints/Bulk.php index 22496ce04..9ad83f019 100644 --- a/src/Elasticsearch/Endpoints/Bulk.php +++ b/src/Elasticsearch/Endpoints/Bulk.php @@ -26,7 +26,7 @@ * Elasticsearch API name bulk * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Bulk extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Aliases.php b/src/Elasticsearch/Endpoints/Cat/Aliases.php index 81d93b8de..91ccd16cd 100644 --- a/src/Elasticsearch/Endpoints/Cat/Aliases.php +++ b/src/Elasticsearch/Endpoints/Cat/Aliases.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.aliases * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Aliases extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Allocation.php b/src/Elasticsearch/Endpoints/Cat/Allocation.php index 89e8629fa..5b9a63193 100644 --- a/src/Elasticsearch/Endpoints/Cat/Allocation.php +++ b/src/Elasticsearch/Endpoints/Cat/Allocation.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.allocation * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Allocation extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Count.php b/src/Elasticsearch/Endpoints/Cat/Count.php index 51063f23e..bc30c580f 100644 --- a/src/Elasticsearch/Endpoints/Cat/Count.php +++ b/src/Elasticsearch/Endpoints/Cat/Count.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.count * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Count extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Fielddata.php b/src/Elasticsearch/Endpoints/Cat/Fielddata.php index 0d1fae364..0bab08169 100644 --- a/src/Elasticsearch/Endpoints/Cat/Fielddata.php +++ b/src/Elasticsearch/Endpoints/Cat/Fielddata.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.fielddata * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Fielddata extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Health.php b/src/Elasticsearch/Endpoints/Cat/Health.php index 011194f15..f6b9bb1f1 100644 --- a/src/Elasticsearch/Endpoints/Cat/Health.php +++ b/src/Elasticsearch/Endpoints/Cat/Health.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.health * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Health extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Help.php b/src/Elasticsearch/Endpoints/Cat/Help.php index 170a8fe35..e64220b5f 100644 --- a/src/Elasticsearch/Endpoints/Cat/Help.php +++ b/src/Elasticsearch/Endpoints/Cat/Help.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.help * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Help extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Indices.php b/src/Elasticsearch/Endpoints/Cat/Indices.php index 7128772be..b8b282a66 100644 --- a/src/Elasticsearch/Endpoints/Cat/Indices.php +++ b/src/Elasticsearch/Endpoints/Cat/Indices.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.indices * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Indices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Master.php b/src/Elasticsearch/Endpoints/Cat/Master.php index ed69588b1..15a449eb6 100644 --- a/src/Elasticsearch/Endpoints/Cat/Master.php +++ b/src/Elasticsearch/Endpoints/Cat/Master.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.master * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Master extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php index 2ca3721bc..a8c5ecc8d 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class MlDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php b/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php index 986eb950d..cf52a3aab 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php +++ b/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_datafeeds * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class MlDatafeeds extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlJobs.php b/src/Elasticsearch/Endpoints/Cat/MlJobs.php index 8ca02ffd1..6de7fbee5 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlJobs.php +++ b/src/Elasticsearch/Endpoints/Cat/MlJobs.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_jobs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class MlJobs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php b/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php index c9eecedc8..4c49de11c 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php +++ b/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_trained_models * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class MlTrainedModels extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php b/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php index 62c78efa3..fa952254a 100644 --- a/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php +++ b/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.nodeattrs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class NodeAttrs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Nodes.php b/src/Elasticsearch/Endpoints/Cat/Nodes.php index 012b9fe8f..f4cbb74cc 100644 --- a/src/Elasticsearch/Endpoints/Cat/Nodes.php +++ b/src/Elasticsearch/Endpoints/Cat/Nodes.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.nodes * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Nodes extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/PendingTasks.php b/src/Elasticsearch/Endpoints/Cat/PendingTasks.php index f3cf57f25..6a14dad6a 100644 --- a/src/Elasticsearch/Endpoints/Cat/PendingTasks.php +++ b/src/Elasticsearch/Endpoints/Cat/PendingTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.pending_tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PendingTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Plugins.php b/src/Elasticsearch/Endpoints/Cat/Plugins.php index 50d3f1a73..148d6c6f6 100644 --- a/src/Elasticsearch/Endpoints/Cat/Plugins.php +++ b/src/Elasticsearch/Endpoints/Cat/Plugins.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.plugins * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Plugins extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Recovery.php b/src/Elasticsearch/Endpoints/Cat/Recovery.php index 1a1df6c8f..0653eb427 100644 --- a/src/Elasticsearch/Endpoints/Cat/Recovery.php +++ b/src/Elasticsearch/Endpoints/Cat/Recovery.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.recovery * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Recovery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Repositories.php b/src/Elasticsearch/Endpoints/Cat/Repositories.php index 3f2220399..97e679245 100644 --- a/src/Elasticsearch/Endpoints/Cat/Repositories.php +++ b/src/Elasticsearch/Endpoints/Cat/Repositories.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.repositories * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Repositories extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Segments.php b/src/Elasticsearch/Endpoints/Cat/Segments.php index eb64c2768..1117decba 100644 --- a/src/Elasticsearch/Endpoints/Cat/Segments.php +++ b/src/Elasticsearch/Endpoints/Cat/Segments.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.segments * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Segments extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Shards.php b/src/Elasticsearch/Endpoints/Cat/Shards.php index ad262e3b2..5e9495cdd 100644 --- a/src/Elasticsearch/Endpoints/Cat/Shards.php +++ b/src/Elasticsearch/Endpoints/Cat/Shards.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.shards * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Shards extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Snapshots.php b/src/Elasticsearch/Endpoints/Cat/Snapshots.php index 1ced62357..d4e4ebf79 100644 --- a/src/Elasticsearch/Endpoints/Cat/Snapshots.php +++ b/src/Elasticsearch/Endpoints/Cat/Snapshots.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.snapshots * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Snapshots extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Tasks.php b/src/Elasticsearch/Endpoints/Cat/Tasks.php index 976fe9eba..6e519f2b1 100644 --- a/src/Elasticsearch/Endpoints/Cat/Tasks.php +++ b/src/Elasticsearch/Endpoints/Cat/Tasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Tasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Templates.php b/src/Elasticsearch/Endpoints/Cat/Templates.php index d3bfcabcf..e1eee797d 100644 --- a/src/Elasticsearch/Endpoints/Cat/Templates.php +++ b/src/Elasticsearch/Endpoints/Cat/Templates.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.templates * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Templates extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/ThreadPool.php b/src/Elasticsearch/Endpoints/Cat/ThreadPool.php index 960c2114a..7ca821405 100644 --- a/src/Elasticsearch/Endpoints/Cat/ThreadPool.php +++ b/src/Elasticsearch/Endpoints/Cat/ThreadPool.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.thread_pool * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ThreadPool extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Transforms.php b/src/Elasticsearch/Endpoints/Cat/Transforms.php index c5aaa2275..ba216b53a 100644 --- a/src/Elasticsearch/Endpoints/Cat/Transforms.php +++ b/src/Elasticsearch/Endpoints/Cat/Transforms.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.transforms * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Transforms extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php index f667eea6b..9b712180a 100644 --- a/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.delete_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Follow.php b/src/Elasticsearch/Endpoints/Ccr/Follow.php index 46830a31a..d02c84c70 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Follow.php +++ b/src/Elasticsearch/Endpoints/Ccr/Follow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Follow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php b/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php index d390e167e..2b050cb95 100644 --- a/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php +++ b/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow_info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class FollowInfo extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/FollowStats.php b/src/Elasticsearch/Endpoints/Ccr/FollowStats.php index 0e89e2487..b665d3eb0 100644 --- a/src/Elasticsearch/Endpoints/Ccr/FollowStats.php +++ b/src/Elasticsearch/Endpoints/Ccr/FollowStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class FollowStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php b/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php index 2f0bcb023..6cd09b2a5 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php +++ b/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.forget_follower * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ForgetFollower extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php index ab18cab33..6a8bf9993 100644 --- a/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php @@ -23,7 +23,7 @@ * Elasticsearch API name ccr.get_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php index 0e39d83bc..df9de7e2e 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.pause_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PauseAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php b/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php index 2556cd502..43b704ca1 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.pause_follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PauseFollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php index b164c936b..5e6bd5a48 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.put_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php index e362369c3..4d8da27b6 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.resume_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ResumeAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php b/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php index 2e90f1f09..a2cfbad98 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.resume_follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ResumeFollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Stats.php b/src/Elasticsearch/Endpoints/Ccr/Stats.php index d37096cb4..a23857aae 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Stats.php +++ b/src/Elasticsearch/Endpoints/Ccr/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ccr.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Unfollow.php b/src/Elasticsearch/Endpoints/Ccr/Unfollow.php index f057584b3..137f7a8b2 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Unfollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/Unfollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.unfollow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Unfollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ClearScroll.php b/src/Elasticsearch/Endpoints/ClearScroll.php index e792863e5..87c00d6df 100644 --- a/src/Elasticsearch/Endpoints/ClearScroll.php +++ b/src/Elasticsearch/Endpoints/ClearScroll.php @@ -23,7 +23,7 @@ * Elasticsearch API name clear_scroll * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ClearScroll extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ClosePointInTime.php b/src/Elasticsearch/Endpoints/ClosePointInTime.php index d18424c43..74aa1da2a 100644 --- a/src/Elasticsearch/Endpoints/ClosePointInTime.php +++ b/src/Elasticsearch/Endpoints/ClosePointInTime.php @@ -23,7 +23,7 @@ * Elasticsearch API name close_point_in_time * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ClosePointInTime extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php b/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php index 3d2375e4a..441e48d5e 100644 --- a/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php +++ b/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.allocation_explain * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class AllocationExplain extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php index 3736a5895..e2b3ce4e1 100644 --- a/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.delete_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php b/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php index 90cf4b3a7..6ab9c5ad8 100644 --- a/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php +++ b/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.delete_voting_config_exclusions * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteVotingConfigExclusions extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php index 8bdb8460d..a95bc01a2 100644 --- a/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.exists_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ExistsComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php index 12a56176e..d463cbe59 100644 --- a/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.get_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/GetSettings.php b/src/Elasticsearch/Endpoints/Cluster/GetSettings.php index 6a8dd4916..61b781d31 100644 --- a/src/Elasticsearch/Endpoints/Cluster/GetSettings.php +++ b/src/Elasticsearch/Endpoints/Cluster/GetSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.get_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Health.php b/src/Elasticsearch/Endpoints/Cluster/Health.php index 28cd51f12..1d6d1f809 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Health.php +++ b/src/Elasticsearch/Endpoints/Cluster/Health.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.health * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Health extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php b/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php index 453f292f1..0192ba7e2 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php +++ b/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.pending_tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PendingTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php b/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php index 17336db00..15767af8b 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php +++ b/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.post_voting_config_exclusions * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PostVotingConfigExclusions extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php index a6830b66c..1dc3d2f12 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.put_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PutSettings.php b/src/Elasticsearch/Endpoints/Cluster/PutSettings.php index 007ccbc24..324de45d9 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PutSettings.php +++ b/src/Elasticsearch/Endpoints/Cluster/PutSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.put_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php b/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php index 31e55c19d..68cee3eda 100644 --- a/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php +++ b/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.remote_info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class RemoteInfo extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Reroute.php b/src/Elasticsearch/Endpoints/Cluster/Reroute.php index 60eae997e..ea2bbf242 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Reroute.php +++ b/src/Elasticsearch/Endpoints/Cluster/Reroute.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.reroute * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Reroute extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/State.php b/src/Elasticsearch/Endpoints/Cluster/State.php index 947c1db1e..3cf00eeb1 100644 --- a/src/Elasticsearch/Endpoints/Cluster/State.php +++ b/src/Elasticsearch/Endpoints/Cluster/State.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.state * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class State extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Stats.php b/src/Elasticsearch/Endpoints/Cluster/Stats.php index 0123bf7cc..5b25d8d09 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Stats.php +++ b/src/Elasticsearch/Endpoints/Cluster/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Count.php b/src/Elasticsearch/Endpoints/Count.php index a4b602ddf..0fb6ad6bc 100644 --- a/src/Elasticsearch/Endpoints/Count.php +++ b/src/Elasticsearch/Endpoints/Count.php @@ -23,7 +23,7 @@ * Elasticsearch API name count * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Count extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Create.php b/src/Elasticsearch/Endpoints/Create.php index 0bbe7f4d8..a167b7b48 100644 --- a/src/Elasticsearch/Endpoints/Create.php +++ b/src/Elasticsearch/Endpoints/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php b/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php index ede06b607..365069b1e 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name dangling_indices.delete_dangling_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteDanglingIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php b/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php index d09614a78..283ac8e34 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name dangling_indices.import_dangling_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ImportDanglingIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php b/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php index 0e2add726..4e46401ce 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php @@ -23,7 +23,7 @@ * Elasticsearch API name dangling_indices.list_dangling_indices * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ListDanglingIndices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php index b8505b3f4..bd0e26da5 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.delete_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php index e2fa39a61..458183d68 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name data_frame_transform_deprecated.get_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php index 8e4bbf681..83eb237c8 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.get_transform_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetTransformStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php index f7342b4a2..6b6858b99 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name data_frame_transform_deprecated.preview_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PreviewTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php index 2207a7ae4..70bdfb380 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.put_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php index 7b38407da..f62e3b89c 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.start_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class StartTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php index c34334b9c..00550ca78 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.stop_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class StopTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php index 8d68cdafc..ba61b6133 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.update_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class UpdateTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Delete.php b/src/Elasticsearch/Endpoints/Delete.php index e717ad2c6..74e4980a7 100644 --- a/src/Elasticsearch/Endpoints/Delete.php +++ b/src/Elasticsearch/Endpoints/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteByQuery.php b/src/Elasticsearch/Endpoints/DeleteByQuery.php index 15b1094e5..63580fb25 100644 --- a/src/Elasticsearch/Endpoints/DeleteByQuery.php +++ b/src/Elasticsearch/Endpoints/DeleteByQuery.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_by_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteByQuery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php b/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php index f5b7fc21c..8884c09d4 100644 --- a/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php +++ b/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_by_query_rethrottle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteByQueryRethrottle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteScript.php b/src/Elasticsearch/Endpoints/DeleteScript.php index 0d5c496eb..0cd1f2317 100644 --- a/src/Elasticsearch/Endpoints/DeleteScript.php +++ b/src/Elasticsearch/Endpoints/DeleteScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php b/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php index de7a5987d..d5653db95 100644 --- a/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.delete_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeletePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php b/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php index 0f4e827bd..cfeac770c 100644 --- a/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.execute_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ExecutePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php b/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php index f37f18cfd..33f0171ec 100644 --- a/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php @@ -23,7 +23,7 @@ * Elasticsearch API name enrich.get_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php b/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php index 4901394fa..b1f64a4c2 100644 --- a/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.put_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/Stats.php b/src/Elasticsearch/Endpoints/Enrich/Stats.php index 7c73d827a..ef36bee0f 100644 --- a/src/Elasticsearch/Endpoints/Enrich/Stats.php +++ b/src/Elasticsearch/Endpoints/Enrich/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name enrich.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Delete.php b/src/Elasticsearch/Endpoints/Eql/Delete.php index fc8e14ffc..b46769f7f 100644 --- a/src/Elasticsearch/Endpoints/Eql/Delete.php +++ b/src/Elasticsearch/Endpoints/Eql/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Get.php b/src/Elasticsearch/Endpoints/Eql/Get.php index f3d9306fe..2f8809a46 100644 --- a/src/Elasticsearch/Endpoints/Eql/Get.php +++ b/src/Elasticsearch/Endpoints/Eql/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/GetStatus.php b/src/Elasticsearch/Endpoints/Eql/GetStatus.php index 63ee4c319..ba073630e 100644 --- a/src/Elasticsearch/Endpoints/Eql/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Eql/GetStatus.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Search.php b/src/Elasticsearch/Endpoints/Eql/Search.php index 17a38ce9f..834aca088 100644 --- a/src/Elasticsearch/Endpoints/Eql/Search.php +++ b/src/Elasticsearch/Endpoints/Eql/Search.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Search extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Exists.php b/src/Elasticsearch/Endpoints/Exists.php index 49dd19976..52f2c3afc 100644 --- a/src/Elasticsearch/Endpoints/Exists.php +++ b/src/Elasticsearch/Endpoints/Exists.php @@ -24,7 +24,7 @@ * Elasticsearch API name exists * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Exists extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ExistsSource.php b/src/Elasticsearch/Endpoints/ExistsSource.php index 5511d4815..96d5d272b 100644 --- a/src/Elasticsearch/Endpoints/ExistsSource.php +++ b/src/Elasticsearch/Endpoints/ExistsSource.php @@ -24,7 +24,7 @@ * Elasticsearch API name exists_source * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ExistsSource extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Explain.php b/src/Elasticsearch/Endpoints/Explain.php index ac3a58f18..128503c2b 100644 --- a/src/Elasticsearch/Endpoints/Explain.php +++ b/src/Elasticsearch/Endpoints/Explain.php @@ -24,7 +24,7 @@ * Elasticsearch API name explain * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Explain extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Features/GetFeatures.php b/src/Elasticsearch/Endpoints/Features/GetFeatures.php index 1e6cab0c3..8f1c70125 100644 --- a/src/Elasticsearch/Endpoints/Features/GetFeatures.php +++ b/src/Elasticsearch/Endpoints/Features/GetFeatures.php @@ -23,7 +23,7 @@ * Elasticsearch API name features.get_features * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetFeatures extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Features/ResetFeatures.php b/src/Elasticsearch/Endpoints/Features/ResetFeatures.php index 2b30bd4b4..0d1633b56 100644 --- a/src/Elasticsearch/Endpoints/Features/ResetFeatures.php +++ b/src/Elasticsearch/Endpoints/Features/ResetFeatures.php @@ -23,7 +23,7 @@ * Elasticsearch API name features.reset_features * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ResetFeatures extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/FieldCaps.php b/src/Elasticsearch/Endpoints/FieldCaps.php index e675d9c86..49f91f5c4 100644 --- a/src/Elasticsearch/Endpoints/FieldCaps.php +++ b/src/Elasticsearch/Endpoints/FieldCaps.php @@ -23,7 +23,7 @@ * Elasticsearch API name field_caps * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class FieldCaps extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php b/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php index a42ae2ee7..b565c8ecc 100644 --- a/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php +++ b/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php @@ -24,7 +24,7 @@ * Elasticsearch API name fleet.global_checkpoints * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GlobalCheckpoints extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Get.php b/src/Elasticsearch/Endpoints/Get.php index 609a014dd..4beea66b0 100644 --- a/src/Elasticsearch/Endpoints/Get.php +++ b/src/Elasticsearch/Endpoints/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScript.php b/src/Elasticsearch/Endpoints/GetScript.php index 9299555ad..f618e3717 100644 --- a/src/Elasticsearch/Endpoints/GetScript.php +++ b/src/Elasticsearch/Endpoints/GetScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name get_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScriptContext.php b/src/Elasticsearch/Endpoints/GetScriptContext.php index 82de586d0..dca5c44ff 100644 --- a/src/Elasticsearch/Endpoints/GetScriptContext.php +++ b/src/Elasticsearch/Endpoints/GetScriptContext.php @@ -23,7 +23,7 @@ * Elasticsearch API name get_script_context * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetScriptContext extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScriptLanguages.php b/src/Elasticsearch/Endpoints/GetScriptLanguages.php index 9666a55d9..c9935187d 100644 --- a/src/Elasticsearch/Endpoints/GetScriptLanguages.php +++ b/src/Elasticsearch/Endpoints/GetScriptLanguages.php @@ -23,7 +23,7 @@ * Elasticsearch API name get_script_languages * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetScriptLanguages extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetSource.php b/src/Elasticsearch/Endpoints/GetSource.php index dfc92105c..d2e9081b2 100644 --- a/src/Elasticsearch/Endpoints/GetSource.php +++ b/src/Elasticsearch/Endpoints/GetSource.php @@ -24,7 +24,7 @@ * Elasticsearch API name get_source * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetSource extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Graph/Explore.php b/src/Elasticsearch/Endpoints/Graph/Explore.php index 869cda7f3..244091c25 100644 --- a/src/Elasticsearch/Endpoints/Graph/Explore.php +++ b/src/Elasticsearch/Endpoints/Graph/Explore.php @@ -24,7 +24,7 @@ * Elasticsearch API name graph.explore * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Explore extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php index bf9b1c0f0..e258a87ae 100644 --- a/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.delete_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php index 77417ee6a..c4613aea4 100644 --- a/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.explain_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ExplainLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php index 967cae552..d5b1f1dc1 100644 --- a/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.get_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/GetStatus.php b/src/Elasticsearch/Endpoints/Ilm/GetStatus.php index fd3491f4f..325ef6d01 100644 --- a/src/Elasticsearch/Endpoints/Ilm/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Ilm/GetStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php b/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php index f92e7f969..b8b6dcbf5 100644 --- a/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php +++ b/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.migrate_to_data_tiers * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class MigrateToDataTiers extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php b/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php index 65538ced2..f9f4027e1 100644 --- a/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php +++ b/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.move_to_step * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class MoveToStep extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php index 37282ed5c..9597fc461 100644 --- a/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.put_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php b/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php index e5d088b11..63dfccd72 100644 --- a/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php +++ b/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.remove_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class RemovePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Retry.php b/src/Elasticsearch/Endpoints/Ilm/Retry.php index ea80b91b2..9d0a46b40 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Retry.php +++ b/src/Elasticsearch/Endpoints/Ilm/Retry.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.retry * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Retry extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Start.php b/src/Elasticsearch/Endpoints/Ilm/Start.php index bf4286f1c..ed3dac03a 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Start.php +++ b/src/Elasticsearch/Endpoints/Ilm/Start.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.start * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Start extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Stop.php b/src/Elasticsearch/Endpoints/Ilm/Stop.php index 0c4053fef..3f2527e91 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Stop.php +++ b/src/Elasticsearch/Endpoints/Ilm/Stop.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.stop * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Stop extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Index.php b/src/Elasticsearch/Endpoints/Index.php index e161f71a1..9fa7e497e 100644 --- a/src/Elasticsearch/Endpoints/Index.php +++ b/src/Elasticsearch/Endpoints/Index.php @@ -24,7 +24,7 @@ * Elasticsearch API name index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Index extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/AddBlock.php b/src/Elasticsearch/Endpoints/Indices/AddBlock.php index 8612786fc..a597eaee2 100644 --- a/src/Elasticsearch/Endpoints/Indices/AddBlock.php +++ b/src/Elasticsearch/Endpoints/Indices/AddBlock.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.add_block * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class AddBlock extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Analyze.php b/src/Elasticsearch/Endpoints/Indices/Analyze.php index 2cf9df834..999f5570d 100644 --- a/src/Elasticsearch/Endpoints/Indices/Analyze.php +++ b/src/Elasticsearch/Endpoints/Indices/Analyze.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.analyze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Analyze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ClearCache.php b/src/Elasticsearch/Endpoints/Indices/ClearCache.php index ee420101e..d44648148 100644 --- a/src/Elasticsearch/Endpoints/Indices/ClearCache.php +++ b/src/Elasticsearch/Endpoints/Indices/ClearCache.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.clear_cache * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ClearCache extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/CloneIndices.php b/src/Elasticsearch/Endpoints/Indices/CloneIndices.php index 23810e3b9..f4b568d7b 100644 --- a/src/Elasticsearch/Endpoints/Indices/CloneIndices.php +++ b/src/Elasticsearch/Endpoints/Indices/CloneIndices.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.clone * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class CloneIndices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Close.php b/src/Elasticsearch/Endpoints/Indices/Close.php index 0dec85090..fa8b756b1 100644 --- a/src/Elasticsearch/Endpoints/Indices/Close.php +++ b/src/Elasticsearch/Endpoints/Indices/Close.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.close * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Close extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Create.php b/src/Elasticsearch/Endpoints/Indices/Create.php index d13b6a8d2..8df4a83a4 100644 --- a/src/Elasticsearch/Endpoints/Indices/Create.php +++ b/src/Elasticsearch/Endpoints/Indices/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php b/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php index 33726a73f..e1fb3d21a 100644 --- a/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.create_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class CreateDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php b/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php index 07423aa52..a148609fe 100644 --- a/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php +++ b/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.data_streams_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DataStreamsStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Delete.php b/src/Elasticsearch/Endpoints/Indices/Delete.php index 31f442902..ba21368c5 100644 --- a/src/Elasticsearch/Endpoints/Indices/Delete.php +++ b/src/Elasticsearch/Endpoints/Indices/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php b/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php index 2c1714f93..fa79b18ea 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php b/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php index 472b836e4..ae4566e06 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php index a1be75f9d..882c320a6 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php b/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php index d50a3e510..7df2a8cb4 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DiskUsage.php b/src/Elasticsearch/Endpoints/Indices/DiskUsage.php index 0c43ce179..c97cd22fb 100644 --- a/src/Elasticsearch/Endpoints/Indices/DiskUsage.php +++ b/src/Elasticsearch/Endpoints/Indices/DiskUsage.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.disk_usage * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DiskUsage extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Exists.php b/src/Elasticsearch/Endpoints/Indices/Exists.php index 66f0d9590..667b40817 100644 --- a/src/Elasticsearch/Endpoints/Indices/Exists.php +++ b/src/Elasticsearch/Endpoints/Indices/Exists.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Exists extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php b/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php index ec2fca5c6..bb3adeeea 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ExistsAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php index d70434e72..5bc43a5bc 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ExistsIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php b/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php index 792ea89ab..984afd972 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ExistsTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsType.php b/src/Elasticsearch/Endpoints/Indices/ExistsType.php index 9d5cd3787..66870c5ac 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsType.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsType.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_type * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ExistsType extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php b/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php index 13af8771c..6da299f99 100644 --- a/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php +++ b/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.field_usage_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class FieldUsageStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Flush.php b/src/Elasticsearch/Endpoints/Indices/Flush.php index 9353240fa..98bcb85af 100644 --- a/src/Elasticsearch/Endpoints/Indices/Flush.php +++ b/src/Elasticsearch/Endpoints/Indices/Flush.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.flush * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Flush extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/FlushSynced.php b/src/Elasticsearch/Endpoints/Indices/FlushSynced.php index f332572f5..4d614ff62 100644 --- a/src/Elasticsearch/Endpoints/Indices/FlushSynced.php +++ b/src/Elasticsearch/Endpoints/Indices/FlushSynced.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.flush_synced * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class FlushSynced extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ForceMerge.php b/src/Elasticsearch/Endpoints/Indices/ForceMerge.php index 23ca75112..c783808f1 100644 --- a/src/Elasticsearch/Endpoints/Indices/ForceMerge.php +++ b/src/Elasticsearch/Endpoints/Indices/ForceMerge.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.forcemerge * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ForceMerge extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Freeze.php b/src/Elasticsearch/Endpoints/Indices/Freeze.php index a374b20db..496598dd1 100644 --- a/src/Elasticsearch/Endpoints/Indices/Freeze.php +++ b/src/Elasticsearch/Endpoints/Indices/Freeze.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.freeze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Freeze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Get.php b/src/Elasticsearch/Endpoints/Indices/Get.php index 456a665a0..b4acabb8e 100644 --- a/src/Elasticsearch/Endpoints/Indices/Get.php +++ b/src/Elasticsearch/Endpoints/Indices/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetAlias.php b/src/Elasticsearch/Endpoints/Indices/GetAlias.php index 962009a79..1e3f05004 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/GetAlias.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetDataStream.php b/src/Elasticsearch/Endpoints/Indices/GetDataStream.php index e465869ac..12989a1dd 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/GetDataStream.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php b/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php index 06d76697c..ce998e324 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.get_field_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetFieldMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php index 36b04b398..431705ed2 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetMapping.php b/src/Elasticsearch/Endpoints/Indices/GetMapping.php index 02539a3c7..6f8b5b273 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/GetMapping.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetSettings.php b/src/Elasticsearch/Endpoints/Indices/GetSettings.php index d31a2bfc0..a29ded2f7 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetSettings.php +++ b/src/Elasticsearch/Endpoints/Indices/GetSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetTemplate.php b/src/Elasticsearch/Endpoints/Indices/GetTemplate.php index b18a04f34..7a8cfe7c1 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/GetTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php b/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php index 637284192..d52d65863 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php +++ b/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_upgrade * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetUpgrade extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php b/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php index 63fe334c8..ebfcdac29 100644 --- a/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.migrate_to_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class MigrateToDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Open.php b/src/Elasticsearch/Endpoints/Indices/Open.php index 64b922c12..1c1486cb7 100644 --- a/src/Elasticsearch/Endpoints/Indices/Open.php +++ b/src/Elasticsearch/Endpoints/Indices/Open.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.open * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Open extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php b/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php index 87be72f86..4d6ada995 100644 --- a/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.promote_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PromoteDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutAlias.php b/src/Elasticsearch/Endpoints/Indices/PutAlias.php index 5771f7d75..af5d88ff6 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/PutAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php index 9e58b9e56..6e1e6020c 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutMapping.php b/src/Elasticsearch/Endpoints/Indices/PutMapping.php index 0cf05c540..9522fd1be 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/PutMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutSettings.php b/src/Elasticsearch/Endpoints/Indices/PutSettings.php index fc03d7c35..54c5dd83f 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutSettings.php +++ b/src/Elasticsearch/Endpoints/Indices/PutSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.put_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutTemplate.php b/src/Elasticsearch/Endpoints/Indices/PutTemplate.php index 92797167c..220eab194 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/PutTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Recovery.php b/src/Elasticsearch/Endpoints/Indices/Recovery.php index b114ae80d..5514f5804 100644 --- a/src/Elasticsearch/Endpoints/Indices/Recovery.php +++ b/src/Elasticsearch/Endpoints/Indices/Recovery.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.recovery * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Recovery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Refresh.php b/src/Elasticsearch/Endpoints/Indices/Refresh.php index 9efa52ff1..d9a9909e9 100644 --- a/src/Elasticsearch/Endpoints/Indices/Refresh.php +++ b/src/Elasticsearch/Endpoints/Indices/Refresh.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.refresh * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Refresh extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php b/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php index a36c12470..516e98f76 100644 --- a/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php +++ b/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.reload_search_analyzers * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ReloadSearchAnalyzers extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php b/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php index 7f0898b09..f19c391b0 100644 --- a/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php +++ b/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.resolve_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ResolveIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Rollover.php b/src/Elasticsearch/Endpoints/Indices/Rollover.php index e3df46991..4fd4b27be 100644 --- a/src/Elasticsearch/Endpoints/Indices/Rollover.php +++ b/src/Elasticsearch/Endpoints/Indices/Rollover.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.rollover * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Rollover extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Segments.php b/src/Elasticsearch/Endpoints/Indices/Segments.php index bd5f145d9..24ab75f54 100644 --- a/src/Elasticsearch/Endpoints/Indices/Segments.php +++ b/src/Elasticsearch/Endpoints/Indices/Segments.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.segments * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Segments extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ShardStores.php b/src/Elasticsearch/Endpoints/Indices/ShardStores.php index 6459055d3..77c95fd97 100644 --- a/src/Elasticsearch/Endpoints/Indices/ShardStores.php +++ b/src/Elasticsearch/Endpoints/Indices/ShardStores.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.shard_stores * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ShardStores extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Shrink.php b/src/Elasticsearch/Endpoints/Indices/Shrink.php index 9ce414e01..414bc2ee1 100644 --- a/src/Elasticsearch/Endpoints/Indices/Shrink.php +++ b/src/Elasticsearch/Endpoints/Indices/Shrink.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.shrink * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Shrink extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php index c2d9a0230..d2d4cb4b5 100644 --- a/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.simulate_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class SimulateIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php b/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php index 767b8b4d4..475a18608 100644 --- a/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.simulate_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class SimulateTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Split.php b/src/Elasticsearch/Endpoints/Indices/Split.php index 82140838e..d56c3ba2f 100644 --- a/src/Elasticsearch/Endpoints/Indices/Split.php +++ b/src/Elasticsearch/Endpoints/Indices/Split.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.split * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Split extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Stats.php b/src/Elasticsearch/Endpoints/Indices/Stats.php index 0547e6d34..bf9cb627d 100644 --- a/src/Elasticsearch/Endpoints/Indices/Stats.php +++ b/src/Elasticsearch/Endpoints/Indices/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Unfreeze.php b/src/Elasticsearch/Endpoints/Indices/Unfreeze.php index e2eafa283..98021fca7 100644 --- a/src/Elasticsearch/Endpoints/Indices/Unfreeze.php +++ b/src/Elasticsearch/Endpoints/Indices/Unfreeze.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.unfreeze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Unfreeze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php b/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php index 9716e7452..5ace7ed96 100644 --- a/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php +++ b/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.update_aliases * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class UpdateAliases extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Upgrade.php b/src/Elasticsearch/Endpoints/Indices/Upgrade.php index 76fbcd47e..0eb155810 100644 --- a/src/Elasticsearch/Endpoints/Indices/Upgrade.php +++ b/src/Elasticsearch/Endpoints/Indices/Upgrade.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.upgrade * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Upgrade extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php b/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php index 1ee6a7e4a..e7b597b5c 100644 --- a/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php +++ b/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.validate_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ValidateQuery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Info.php b/src/Elasticsearch/Endpoints/Info.php index 9cae0a5d8..7df605651 100644 --- a/src/Elasticsearch/Endpoints/Info.php +++ b/src/Elasticsearch/Endpoints/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php b/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php index 7a2375d4c..e9a6224ba 100644 --- a/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name ingest.delete_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeletePipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php b/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php index 36b2367bd..3c767a393 100644 --- a/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php +++ b/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.geo_ip_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GeoIpStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php b/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php index c4eed6303..d371eac47 100644 --- a/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.get_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php b/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php index 6a273168b..b6241debf 100644 --- a/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php +++ b/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.processor_grok * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ProcessorGrok extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php b/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php index 289fb2d32..c6b41a191 100644 --- a/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name ingest.put_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/Simulate.php b/src/Elasticsearch/Endpoints/Ingest/Simulate.php index 12c3bddb8..ce167b337 100644 --- a/src/Elasticsearch/Endpoints/Ingest/Simulate.php +++ b/src/Elasticsearch/Endpoints/Ingest/Simulate.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.simulate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Simulate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Delete.php b/src/Elasticsearch/Endpoints/License/Delete.php index 9379b0140..80616ab94 100644 --- a/src/Elasticsearch/Endpoints/License/Delete.php +++ b/src/Elasticsearch/Endpoints/License/Delete.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Get.php b/src/Elasticsearch/Endpoints/License/Get.php index 9b20c2561..24a23ba8c 100644 --- a/src/Elasticsearch/Endpoints/License/Get.php +++ b/src/Elasticsearch/Endpoints/License/Get.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/GetBasicStatus.php b/src/Elasticsearch/Endpoints/License/GetBasicStatus.php index b7d52807b..26b6c9476 100644 --- a/src/Elasticsearch/Endpoints/License/GetBasicStatus.php +++ b/src/Elasticsearch/Endpoints/License/GetBasicStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get_basic_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetBasicStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/GetTrialStatus.php b/src/Elasticsearch/Endpoints/License/GetTrialStatus.php index d209a1388..a622e2b6b 100644 --- a/src/Elasticsearch/Endpoints/License/GetTrialStatus.php +++ b/src/Elasticsearch/Endpoints/License/GetTrialStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get_trial_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetTrialStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Post.php b/src/Elasticsearch/Endpoints/License/Post.php index 98c0b1ac7..264f2eb55 100644 --- a/src/Elasticsearch/Endpoints/License/Post.php +++ b/src/Elasticsearch/Endpoints/License/Post.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Post extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/PostStartBasic.php b/src/Elasticsearch/Endpoints/License/PostStartBasic.php index 322e1221b..61316df67 100644 --- a/src/Elasticsearch/Endpoints/License/PostStartBasic.php +++ b/src/Elasticsearch/Endpoints/License/PostStartBasic.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post_start_basic * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PostStartBasic extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/PostStartTrial.php b/src/Elasticsearch/Endpoints/License/PostStartTrial.php index 7aee7ebd2..da0323aff 100644 --- a/src/Elasticsearch/Endpoints/License/PostStartTrial.php +++ b/src/Elasticsearch/Endpoints/License/PostStartTrial.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post_start_trial * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PostStartTrial extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php b/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php index 0ed423715..b1d8ec051 100644 --- a/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.delete_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeletePipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php b/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php index 91c9d842b..b4d530d44 100644 --- a/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.get_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php b/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php index 045ca6f7b..2073d2dab 100644 --- a/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.put_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/MTermVectors.php b/src/Elasticsearch/Endpoints/MTermVectors.php index bd96354cb..7a593dc7d 100644 --- a/src/Elasticsearch/Endpoints/MTermVectors.php +++ b/src/Elasticsearch/Endpoints/MTermVectors.php @@ -23,7 +23,7 @@ * Elasticsearch API name mtermvectors * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class MTermVectors extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Mget.php b/src/Elasticsearch/Endpoints/Mget.php index a26800050..093703c07 100644 --- a/src/Elasticsearch/Endpoints/Mget.php +++ b/src/Elasticsearch/Endpoints/Mget.php @@ -23,7 +23,7 @@ * Elasticsearch API name mget * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Mget extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Migration/Deprecations.php b/src/Elasticsearch/Endpoints/Migration/Deprecations.php index 0e2cfff90..01e78e499 100644 --- a/src/Elasticsearch/Endpoints/Migration/Deprecations.php +++ b/src/Elasticsearch/Endpoints/Migration/Deprecations.php @@ -23,7 +23,7 @@ * Elasticsearch API name migration.deprecations * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Deprecations extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/CloseJob.php b/src/Elasticsearch/Endpoints/Ml/CloseJob.php index 8bad15e1f..0c474f199 100644 --- a/src/Elasticsearch/Endpoints/Ml/CloseJob.php +++ b/src/Elasticsearch/Endpoints/Ml/CloseJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.close_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class CloseJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php b/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php index ba24838f0..7eb53a551 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_calendar * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteCalendar extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php index b9bd75560..6a6f383f4 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_calendar_event * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteCalendarEvent extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php index 792ed43d7..3bd6dbc0f 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_calendar_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteCalendarJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php index 2c0b17fa5..56e6f932e 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php b/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php index 7d52f4968..4a3fa8751 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php b/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php index d65da015e..9e32d2f27 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.delete_expired_data * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteExpiredData extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php b/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php index eab26febf..8c3bc98c3 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_filter * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteFilter extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php b/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php index c27113d1c..0fac40b39 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_forecast * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteForecast extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteJob.php b/src/Elasticsearch/Endpoints/Ml/DeleteJob.php index 933985a2a..6d063ceb2 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteJob.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php b/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php index 3907d7173..ec00f3292 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_model_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteModelSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php index a7d675614..a7a5d60ad 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_trained_model * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteTrainedModel extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php index 783825bdd..5e47291d1 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_trained_model_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteTrainedModelAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php b/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php index 21ac9a9dc..cf784e105 100644 --- a/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php +++ b/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.estimate_model_memory * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class EstimateModelMemory extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php b/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php index 8f400ab75..18f8bcb4c 100644 --- a/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php +++ b/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.evaluate_data_frame * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class EvaluateDataFrame extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php index 8b033d09b..146a8ab89 100644 --- a/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.explain_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ExplainDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php b/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php index a9604eeed..a83a0f4fc 100644 --- a/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php +++ b/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php @@ -26,7 +26,7 @@ * Elasticsearch API name ml.find_file_structure * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class FindFileStructure extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/FlushJob.php b/src/Elasticsearch/Endpoints/Ml/FlushJob.php index 9a6e73155..c38f7dbbe 100644 --- a/src/Elasticsearch/Endpoints/Ml/FlushJob.php +++ b/src/Elasticsearch/Endpoints/Ml/FlushJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.flush_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class FlushJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/Forecast.php b/src/Elasticsearch/Endpoints/Ml/Forecast.php index 368f1f932..f99e1796d 100644 --- a/src/Elasticsearch/Endpoints/Ml/Forecast.php +++ b/src/Elasticsearch/Endpoints/Ml/Forecast.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.forecast * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Forecast extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetBuckets.php b/src/Elasticsearch/Endpoints/Ml/GetBuckets.php index 34c0a0a67..14a37f08a 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetBuckets.php +++ b/src/Elasticsearch/Endpoints/Ml/GetBuckets.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_buckets * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetBuckets extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php b/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php index 779354f4e..7eeb8881a 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php +++ b/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_calendar_events * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetCalendarEvents extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetCalendars.php b/src/Elasticsearch/Endpoints/Ml/GetCalendars.php index 71304066c..90bd21365 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetCalendars.php +++ b/src/Elasticsearch/Endpoints/Ml/GetCalendars.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_calendars * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetCalendars extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetCategories.php b/src/Elasticsearch/Endpoints/Ml/GetCategories.php index 0dc6f1bec..1f1fe6e82 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetCategories.php +++ b/src/Elasticsearch/Endpoints/Ml/GetCategories.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_categories * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetCategories extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php index dc5900ea6..4f97b5ffd 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php index 9673d2d23..71d20597c 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_data_frame_analytics_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetDataFrameAnalyticsStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php b/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php index 430477f04..54b875a66 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_datafeed_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetDatafeedStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php b/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php index 025c22351..e65b79cb7 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_datafeeds * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetDatafeeds extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetFilters.php b/src/Elasticsearch/Endpoints/Ml/GetFilters.php index e83bd9030..615f14315 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetFilters.php +++ b/src/Elasticsearch/Endpoints/Ml/GetFilters.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_filters * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetFilters extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php b/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php index 6bb0c1ab3..81e2880c8 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php +++ b/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_influencers * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetInfluencers extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetJobStats.php b/src/Elasticsearch/Endpoints/Ml/GetJobStats.php index d3aaf2e52..2ec48fe74 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetJobStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetJobStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_job_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetJobStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetJobs.php b/src/Elasticsearch/Endpoints/Ml/GetJobs.php index 1325f73b8..b1aafb38e 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetJobs.php +++ b/src/Elasticsearch/Endpoints/Ml/GetJobs.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_jobs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetJobs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php b/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php index f31eef1a0..5f6ccca89 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php +++ b/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_model_snapshots * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetModelSnapshots extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php b/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php index 0b1174345..725dc3df9 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php +++ b/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_overall_buckets * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetOverallBuckets extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetRecords.php b/src/Elasticsearch/Endpoints/Ml/GetRecords.php index 19179f50b..2f5099784 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetRecords.php +++ b/src/Elasticsearch/Endpoints/Ml/GetRecords.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_records * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetRecords extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php b/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php index 6499411e8..6fcdec418 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php +++ b/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_trained_models * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetTrainedModels extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php b/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php index 1bf435e28..99088b2a9 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_trained_models_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetTrainedModelsStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/Info.php b/src/Elasticsearch/Endpoints/Ml/Info.php index 45371546c..bcb277def 100644 --- a/src/Elasticsearch/Endpoints/Ml/Info.php +++ b/src/Elasticsearch/Endpoints/Ml/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/OpenJob.php b/src/Elasticsearch/Endpoints/Ml/OpenJob.php index 27a9c8d6a..4adc818ac 100644 --- a/src/Elasticsearch/Endpoints/Ml/OpenJob.php +++ b/src/Elasticsearch/Endpoints/Ml/OpenJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.open_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class OpenJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php b/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php index 2c6abffb8..4b4671263 100644 --- a/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php +++ b/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.post_calendar_events * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PostCalendarEvents extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PostData.php b/src/Elasticsearch/Endpoints/Ml/PostData.php index 8f0ff6156..357567209 100644 --- a/src/Elasticsearch/Endpoints/Ml/PostData.php +++ b/src/Elasticsearch/Endpoints/Ml/PostData.php @@ -27,7 +27,7 @@ * Elasticsearch API name ml.post_data * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PostData extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php index b70fbb265..79451373a 100644 --- a/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.preview_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PreviewDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php b/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php index 8416aaf73..304d962e4 100644 --- a/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.preview_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PreviewDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutCalendar.php b/src/Elasticsearch/Endpoints/Ml/PutCalendar.php index 0a659a1a1..f03d0f3ca 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutCalendar.php +++ b/src/Elasticsearch/Endpoints/Ml/PutCalendar.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_calendar * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutCalendar extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php b/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php index cfe4db5b1..28b691643 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php +++ b/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_calendar_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutCalendarJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php index b7a8caae6..6bffd8bb8 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php b/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php index cef395aff..2ab4bbb52 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutFilter.php b/src/Elasticsearch/Endpoints/Ml/PutFilter.php index c37331598..cf89a50d0 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutFilter.php +++ b/src/Elasticsearch/Endpoints/Ml/PutFilter.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_filter * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutFilter extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutJob.php b/src/Elasticsearch/Endpoints/Ml/PutJob.php index 354653ff3..dc5f493df 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutJob.php +++ b/src/Elasticsearch/Endpoints/Ml/PutJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php b/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php index 3cff582f2..93c890aa2 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php +++ b/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_trained_model * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutTrainedModel extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php b/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php index 897543327..3befabb43 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php +++ b/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_trained_model_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutTrainedModelAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/ResetJob.php b/src/Elasticsearch/Endpoints/Ml/ResetJob.php index 49acc0d77..d376809c1 100644 --- a/src/Elasticsearch/Endpoints/Ml/ResetJob.php +++ b/src/Elasticsearch/Endpoints/Ml/ResetJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.reset_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ResetJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php b/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php index 20fedb8b0..cddd5f0c0 100644 --- a/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.revert_model_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class RevertModelSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php b/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php index fbfa11625..426b0e93c 100644 --- a/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php +++ b/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.set_upgrade_mode * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class SetUpgradeMode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php index ad9d30c1d..c0f6b9e18 100644 --- a/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.start_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class StartDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php b/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php index 106c2ecad..de86c06fe 100644 --- a/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.start_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class StartDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php index 3dda56473..1d479404f 100644 --- a/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.stop_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class StopDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php b/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php index ccb87e0f0..61f8b5df7 100644 --- a/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.stop_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class StopDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php index 8739f43d9..68eda8302 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class UpdateDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php b/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php index 620f10723..7add4fb40 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class UpdateDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php b/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php index 564f0f253..13bdebcd2 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_filter * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class UpdateFilter extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateJob.php b/src/Elasticsearch/Endpoints/Ml/UpdateJob.php index 0140f4266..23cc270f5 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateJob.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class UpdateJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php b/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php index 211999253..62aebcbe2 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_model_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class UpdateModelSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php b/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php index 24a04ee13..b0d6c0e57 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.upgrade_job_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class UpgradeJobSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/Validate.php b/src/Elasticsearch/Endpoints/Ml/Validate.php index b1b01d152..69049ce7b 100644 --- a/src/Elasticsearch/Endpoints/Ml/Validate.php +++ b/src/Elasticsearch/Endpoints/Ml/Validate.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.validate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Validate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php b/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php index b290a0309..5cf2906f2 100644 --- a/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php +++ b/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.validate_detector * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ValidateDetector extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Monitoring/Bulk.php b/src/Elasticsearch/Endpoints/Monitoring/Bulk.php index 9abfc80de..f12908fcc 100644 --- a/src/Elasticsearch/Endpoints/Monitoring/Bulk.php +++ b/src/Elasticsearch/Endpoints/Monitoring/Bulk.php @@ -26,7 +26,7 @@ * Elasticsearch API name monitoring.bulk * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Bulk extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Msearch.php b/src/Elasticsearch/Endpoints/Msearch.php index 826baed63..ce19496d5 100644 --- a/src/Elasticsearch/Endpoints/Msearch.php +++ b/src/Elasticsearch/Endpoints/Msearch.php @@ -26,7 +26,7 @@ * Elasticsearch API name msearch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Msearch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/MsearchTemplate.php b/src/Elasticsearch/Endpoints/MsearchTemplate.php index 34bd5d067..4648492b3 100644 --- a/src/Elasticsearch/Endpoints/MsearchTemplate.php +++ b/src/Elasticsearch/Endpoints/MsearchTemplate.php @@ -26,7 +26,7 @@ * Elasticsearch API name msearch_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class MsearchTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/ClearRepositoriesMeteringArchive.php b/src/Elasticsearch/Endpoints/Nodes/ClearRepositoriesMeteringArchive.php new file mode 100644 index 000000000..12ee4704c --- /dev/null +++ b/src/Elasticsearch/Endpoints/Nodes/ClearRepositoriesMeteringArchive.php @@ -0,0 +1,77 @@ +node_id ?? null; + $max_archive_version = $this->max_archive_version ?? null; + + if (isset($node_id) && isset($max_archive_version)) { + return "/_nodes/$node_id/_repositories_metering/$max_archive_version"; + } + throw new RuntimeException('Missing parameter for the endpoint nodes.clear_repositories_metering_archive'); + } + + public function getParamWhitelist(): array + { + return []; + } + + public function getMethod(): string + { + return 'DELETE'; + } + + public function setNodeId($node_id): ClearRepositoriesMeteringArchive + { + if (isset($node_id) !== true) { + return $this; + } + if (is_array($node_id) === true) { + $node_id = implode(",", $node_id); + } + $this->node_id = $node_id; + + return $this; + } + + public function setMaxArchiveVersion($max_archive_version): ClearRepositoriesMeteringArchive + { + if (isset($max_archive_version) !== true) { + return $this; + } + $this->max_archive_version = $max_archive_version; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Nodes/GetRepositoriesMeteringInfo.php b/src/Elasticsearch/Endpoints/Nodes/GetRepositoriesMeteringInfo.php new file mode 100644 index 000000000..a92ed2088 --- /dev/null +++ b/src/Elasticsearch/Endpoints/Nodes/GetRepositoriesMeteringInfo.php @@ -0,0 +1,65 @@ +node_id ?? null; + + if (isset($node_id)) { + return "/_nodes/$node_id/_repositories_metering"; + } + throw new RuntimeException('Missing parameter for the endpoint nodes.get_repositories_metering_info'); + } + + public function getParamWhitelist(): array + { + return []; + } + + public function getMethod(): string + { + return 'GET'; + } + + public function setNodeId($node_id): GetRepositoriesMeteringInfo + { + if (isset($node_id) !== true) { + return $this; + } + if (is_array($node_id) === true) { + $node_id = implode(",", $node_id); + } + $this->node_id = $node_id; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Nodes/HotThreads.php b/src/Elasticsearch/Endpoints/Nodes/HotThreads.php index 98825dddc..6b0b88f39 100644 --- a/src/Elasticsearch/Endpoints/Nodes/HotThreads.php +++ b/src/Elasticsearch/Endpoints/Nodes/HotThreads.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.hot_threads * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class HotThreads extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/Info.php b/src/Elasticsearch/Endpoints/Nodes/Info.php index a578754aa..194e0a18a 100644 --- a/src/Elasticsearch/Endpoints/Nodes/Info.php +++ b/src/Elasticsearch/Endpoints/Nodes/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php b/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php index 95be2b017..bc43e5f49 100644 --- a/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php +++ b/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.reload_secure_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ReloadSecureSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/Stats.php b/src/Elasticsearch/Endpoints/Nodes/Stats.php index fc052bd8f..88dcbcef3 100644 --- a/src/Elasticsearch/Endpoints/Nodes/Stats.php +++ b/src/Elasticsearch/Endpoints/Nodes/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/Usage.php b/src/Elasticsearch/Endpoints/Nodes/Usage.php index 8fc9435bb..798f8b32d 100644 --- a/src/Elasticsearch/Endpoints/Nodes/Usage.php +++ b/src/Elasticsearch/Endpoints/Nodes/Usage.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.usage * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Usage extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/OpenPointInTime.php b/src/Elasticsearch/Endpoints/OpenPointInTime.php index d7eeaf814..af5e5b295 100644 --- a/src/Elasticsearch/Endpoints/OpenPointInTime.php +++ b/src/Elasticsearch/Endpoints/OpenPointInTime.php @@ -16,6 +16,7 @@ namespace Elasticsearch\Endpoints; +use Elasticsearch\Common\Exceptions\RuntimeException; use Elasticsearch\Endpoints\AbstractEndpoint; /** @@ -23,7 +24,7 @@ * Elasticsearch API name open_point_in_time * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class OpenPointInTime extends AbstractEndpoint { @@ -35,7 +36,7 @@ public function getURI(): string if (isset($index)) { return "/$index/_pit"; } - return "/_pit"; + throw new RuntimeException('Missing parameter for the endpoint open_point_in_time'); } public function getParamWhitelist(): array diff --git a/src/Elasticsearch/Endpoints/Ping.php b/src/Elasticsearch/Endpoints/Ping.php index 64f7d9ced..68c8292b4 100644 --- a/src/Elasticsearch/Endpoints/Ping.php +++ b/src/Elasticsearch/Endpoints/Ping.php @@ -23,7 +23,7 @@ * Elasticsearch API name ping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Ping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/PutScript.php b/src/Elasticsearch/Endpoints/PutScript.php index 16a395dce..7705126f4 100644 --- a/src/Elasticsearch/Endpoints/PutScript.php +++ b/src/Elasticsearch/Endpoints/PutScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name put_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/RankEval.php b/src/Elasticsearch/Endpoints/RankEval.php index 85d338009..edb8ad8e4 100644 --- a/src/Elasticsearch/Endpoints/RankEval.php +++ b/src/Elasticsearch/Endpoints/RankEval.php @@ -23,7 +23,7 @@ * Elasticsearch API name rank_eval * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class RankEval extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Reindex.php b/src/Elasticsearch/Endpoints/Reindex.php index 91d48a53d..a8692bb8b 100644 --- a/src/Elasticsearch/Endpoints/Reindex.php +++ b/src/Elasticsearch/Endpoints/Reindex.php @@ -23,7 +23,7 @@ * Elasticsearch API name reindex * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Reindex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ReindexRethrottle.php b/src/Elasticsearch/Endpoints/ReindexRethrottle.php index 03ec27392..8104672fb 100644 --- a/src/Elasticsearch/Endpoints/ReindexRethrottle.php +++ b/src/Elasticsearch/Endpoints/ReindexRethrottle.php @@ -24,7 +24,7 @@ * Elasticsearch API name reindex_rethrottle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ReindexRethrottle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/RenderSearchTemplate.php b/src/Elasticsearch/Endpoints/RenderSearchTemplate.php index de8e09fd8..467782671 100644 --- a/src/Elasticsearch/Endpoints/RenderSearchTemplate.php +++ b/src/Elasticsearch/Endpoints/RenderSearchTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name render_search_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class RenderSearchTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php b/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php index 426529f25..1ab94ef75 100644 --- a/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.delete_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/GetJobs.php b/src/Elasticsearch/Endpoints/Rollup/GetJobs.php index 219a532bd..50dd8ab4f 100644 --- a/src/Elasticsearch/Endpoints/Rollup/GetJobs.php +++ b/src/Elasticsearch/Endpoints/Rollup/GetJobs.php @@ -23,7 +23,7 @@ * Elasticsearch API name rollup.get_jobs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetJobs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php b/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php index c0b950a3c..beca5397a 100644 --- a/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php +++ b/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php @@ -23,7 +23,7 @@ * Elasticsearch API name rollup.get_rollup_caps * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetRollupCaps extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php b/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php index 49821f66b..694aeef69 100644 --- a/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php +++ b/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.get_rollup_index_caps * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetRollupIndexCaps extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/PutJob.php b/src/Elasticsearch/Endpoints/Rollup/PutJob.php index 3ee7b41bb..5c0423ad0 100644 --- a/src/Elasticsearch/Endpoints/Rollup/PutJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/PutJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.put_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/Rollup.php b/src/Elasticsearch/Endpoints/Rollup/Rollup.php index 960d82cb1..adb97ddd1 100644 --- a/src/Elasticsearch/Endpoints/Rollup/Rollup.php +++ b/src/Elasticsearch/Endpoints/Rollup/Rollup.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.rollup * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Rollup extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php b/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php index 3f7f9ac09..360949937 100644 --- a/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php +++ b/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.rollup_search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class RollupSearch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/StartJob.php b/src/Elasticsearch/Endpoints/Rollup/StartJob.php index 097cd197c..81c0c5f9c 100644 --- a/src/Elasticsearch/Endpoints/Rollup/StartJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/StartJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.start_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class StartJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/StopJob.php b/src/Elasticsearch/Endpoints/Rollup/StopJob.php index f0476e73f..c4e22cb8e 100644 --- a/src/Elasticsearch/Endpoints/Rollup/StopJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/StopJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.stop_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class StopJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php b/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php index d54e20c79..614ce74b5 100644 --- a/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php +++ b/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php @@ -23,7 +23,7 @@ * Elasticsearch API name scripts_painless_execute * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ScriptsPainlessExecute extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Scroll.php b/src/Elasticsearch/Endpoints/Scroll.php index 059d8f071..5757a5e6e 100644 --- a/src/Elasticsearch/Endpoints/Scroll.php +++ b/src/Elasticsearch/Endpoints/Scroll.php @@ -23,7 +23,7 @@ * Elasticsearch API name scroll * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Scroll extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Search.php b/src/Elasticsearch/Endpoints/Search.php index 3ad723ca4..d2c7f6b4c 100644 --- a/src/Elasticsearch/Endpoints/Search.php +++ b/src/Elasticsearch/Endpoints/Search.php @@ -23,7 +23,7 @@ * Elasticsearch API name search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Search extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchMvt.php b/src/Elasticsearch/Endpoints/SearchMvt.php new file mode 100644 index 000000000..ef5265968 --- /dev/null +++ b/src/Elasticsearch/Endpoints/SearchMvt.php @@ -0,0 +1,115 @@ +index ?? null; + $field = $this->field ?? null; + $zoom = $this->zoom ?? null; + $x = $this->x ?? null; + $y = $this->y ?? null; + + if (isset($index) && isset($field) && isset($zoom) && isset($x) && isset($y)) { + return "/$index/_mvt/$field/$zoom/$x/$y"; + } + throw new RuntimeException('Missing parameter for the endpoint search_mvt'); + } + + public function getParamWhitelist(): array + { + return [ + 'exact_bounds', + 'extent', + 'grid_precision', + 'grid_type', + 'size' + ]; + } + + public function getMethod(): string + { + return isset($this->body) ? 'POST' : 'GET'; + } + + public function setBody($body): SearchMvt + { + if (isset($body) !== true) { + return $this; + } + $this->body = $body; + + return $this; + } + + public function setField($field): SearchMvt + { + if (isset($field) !== true) { + return $this; + } + $this->field = $field; + + return $this; + } + + public function setZoom($zoom): SearchMvt + { + if (isset($zoom) !== true) { + return $this; + } + $this->zoom = $zoom; + + return $this; + } + + public function setX($x): SearchMvt + { + if (isset($x) !== true) { + return $this; + } + $this->x = $x; + + return $this; + } + + public function setY($y): SearchMvt + { + if (isset($y) !== true) { + return $this; + } + $this->y = $y; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/SearchShards.php b/src/Elasticsearch/Endpoints/SearchShards.php index adf3e714c..99e98d079 100644 --- a/src/Elasticsearch/Endpoints/SearchShards.php +++ b/src/Elasticsearch/Endpoints/SearchShards.php @@ -23,7 +23,7 @@ * Elasticsearch API name search_shards * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class SearchShards extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchTemplate.php b/src/Elasticsearch/Endpoints/SearchTemplate.php index c2b9b41df..09c7c9b2a 100644 --- a/src/Elasticsearch/Endpoints/SearchTemplate.php +++ b/src/Elasticsearch/Endpoints/SearchTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name search_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class SearchTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php index 487283232..f599b055a 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name searchable_snapshots.cache_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class CacheStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php index 15f586099..647151fd1 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php @@ -23,7 +23,7 @@ * Elasticsearch API name searchable_snapshots.clear_cache * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ClearCache extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php index 2028d76d1..a44875145 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php @@ -24,7 +24,7 @@ * Elasticsearch API name searchable_snapshots.mount * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Mount extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php index 814eaac32..416055ac2 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name searchable_snapshots.repository_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class RepositoryStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php index c72e997c6..b2643bed3 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name searchable_snapshots.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/Authenticate.php b/src/Elasticsearch/Endpoints/Security/Authenticate.php index 7d6aeff8e..2dfc5b892 100644 --- a/src/Elasticsearch/Endpoints/Security/Authenticate.php +++ b/src/Elasticsearch/Endpoints/Security/Authenticate.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.authenticate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Authenticate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ChangePassword.php b/src/Elasticsearch/Endpoints/Security/ChangePassword.php index 9c3f29ee9..a9caa5ef3 100644 --- a/src/Elasticsearch/Endpoints/Security/ChangePassword.php +++ b/src/Elasticsearch/Endpoints/Security/ChangePassword.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.change_password * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ChangePassword extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php b/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php index e4e53c79f..7385fb800 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php +++ b/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_api_key_cache * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ClearApiKeyCache extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php b/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php index e615d9e01..6730fa8ad 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ClearCachedPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php b/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php index 12d3302f2..a8c346313 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_realms * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ClearCachedRealms extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php b/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php index 4fad3a99b..1f5f40481 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_roles * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ClearCachedRoles extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php b/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php index bf9b47c3d..e8d3fee19 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_service_tokens * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ClearCachedServiceTokens extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/CreateApiKey.php b/src/Elasticsearch/Endpoints/Security/CreateApiKey.php index 0027394d2..ba9a438cc 100644 --- a/src/Elasticsearch/Endpoints/Security/CreateApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/CreateApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.create_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class CreateApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php b/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php index 49967e1fa..30236b5ad 100644 --- a/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php +++ b/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.create_service_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class CreateServiceToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php b/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php index cfc34d4c8..0460dde13 100644 --- a/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeletePrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteRole.php b/src/Elasticsearch/Endpoints/Security/DeleteRole.php index 7db1e4dee..41fea70c9 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteRole.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteRole.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_role * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteRole extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php b/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php index 2bb8dd212..8ba74078c 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_role_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteRoleMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php b/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php index 20e75afdb..13d158084 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_service_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteServiceToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteUser.php b/src/Elasticsearch/Endpoints/Security/DeleteUser.php index 69aafcfa3..007438192 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteUser.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DisableUser.php b/src/Elasticsearch/Endpoints/Security/DisableUser.php index d408f5aea..aeef962cc 100644 --- a/src/Elasticsearch/Endpoints/Security/DisableUser.php +++ b/src/Elasticsearch/Endpoints/Security/DisableUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.disable_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DisableUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/EnableUser.php b/src/Elasticsearch/Endpoints/Security/EnableUser.php index cf3b336ad..a11620a46 100644 --- a/src/Elasticsearch/Endpoints/Security/EnableUser.php +++ b/src/Elasticsearch/Endpoints/Security/EnableUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.enable_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class EnableUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetApiKey.php b/src/Elasticsearch/Endpoints/Security/GetApiKey.php index abd87fb50..dc7fa59ad 100644 --- a/src/Elasticsearch/Endpoints/Security/GetApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/GetApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php b/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php index 51eceb82c..8bdc90895 100644 --- a/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_builtin_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetBuiltinPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetPrivileges.php b/src/Elasticsearch/Endpoints/Security/GetPrivileges.php index 4981b829c..f03e554ae 100644 --- a/src/Elasticsearch/Endpoints/Security/GetPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/GetPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetRole.php b/src/Elasticsearch/Endpoints/Security/GetRole.php index c1f702f74..5901376db 100644 --- a/src/Elasticsearch/Endpoints/Security/GetRole.php +++ b/src/Elasticsearch/Endpoints/Security/GetRole.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_role * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetRole extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php b/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php index cb48225ac..bfeebea5e 100644 --- a/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php +++ b/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_role_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetRoleMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php b/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php index 955efb0a1..8d715f711 100644 --- a/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php +++ b/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_service_accounts * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetServiceAccounts extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php b/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php index e728ca72f..0ba766546 100644 --- a/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php +++ b/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.get_service_credentials * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetServiceCredentials extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetToken.php b/src/Elasticsearch/Endpoints/Security/GetToken.php index 030d1ef94..dfa923e2d 100644 --- a/src/Elasticsearch/Endpoints/Security/GetToken.php +++ b/src/Elasticsearch/Endpoints/Security/GetToken.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetUser.php b/src/Elasticsearch/Endpoints/Security/GetUser.php index 92b040806..dfca30960 100644 --- a/src/Elasticsearch/Endpoints/Security/GetUser.php +++ b/src/Elasticsearch/Endpoints/Security/GetUser.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php b/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php index 89509e80e..6c9af9a3b 100644 --- a/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_user_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetUserPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GrantApiKey.php b/src/Elasticsearch/Endpoints/Security/GrantApiKey.php index 34c122c2a..c86c6945f 100644 --- a/src/Elasticsearch/Endpoints/Security/GrantApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/GrantApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.grant_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GrantApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/HasPrivileges.php b/src/Elasticsearch/Endpoints/Security/HasPrivileges.php index 163fd5ba2..1553a7fa7 100644 --- a/src/Elasticsearch/Endpoints/Security/HasPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/HasPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.has_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class HasPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php b/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php index 1fd54e568..cb43babc3 100644 --- a/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.invalidate_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class InvalidateApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/InvalidateToken.php b/src/Elasticsearch/Endpoints/Security/InvalidateToken.php index 8b40abbf2..ae6ff3c76 100644 --- a/src/Elasticsearch/Endpoints/Security/InvalidateToken.php +++ b/src/Elasticsearch/Endpoints/Security/InvalidateToken.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.invalidate_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class InvalidateToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutPrivileges.php b/src/Elasticsearch/Endpoints/Security/PutPrivileges.php index 505c3c8e8..300104f99 100644 --- a/src/Elasticsearch/Endpoints/Security/PutPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/PutPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.put_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutRole.php b/src/Elasticsearch/Endpoints/Security/PutRole.php index fd794c5b6..797c1c7e0 100644 --- a/src/Elasticsearch/Endpoints/Security/PutRole.php +++ b/src/Elasticsearch/Endpoints/Security/PutRole.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.put_role * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutRole extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php b/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php index b660d0148..624a3c546 100644 --- a/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php +++ b/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.put_role_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutRoleMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutUser.php b/src/Elasticsearch/Endpoints/Security/PutUser.php index 14cfc1a9e..93de2c538 100644 --- a/src/Elasticsearch/Endpoints/Security/PutUser.php +++ b/src/Elasticsearch/Endpoints/Security/PutUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.put_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/QueryApiKeys.php b/src/Elasticsearch/Endpoints/Security/QueryApiKeys.php new file mode 100644 index 000000000..4d77a4d2b --- /dev/null +++ b/src/Elasticsearch/Endpoints/Security/QueryApiKeys.php @@ -0,0 +1,58 @@ +body) ? 'POST' : 'GET'; + } + + public function setBody($body): QueryApiKeys + { + if (isset($body) !== true) { + return $this; + } + $this->body = $body; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php b/src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php index 71190b8df..1c963e7c9 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php +++ b/src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_authenticate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class SamlAuthenticate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php b/src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php index 5c83475c9..bc3377b81 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php +++ b/src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_complete_logout * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class SamlCompleteLogout extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlInvalidate.php b/src/Elasticsearch/Endpoints/Security/SamlInvalidate.php index 3638b623c..f79577481 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlInvalidate.php +++ b/src/Elasticsearch/Endpoints/Security/SamlInvalidate.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_invalidate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class SamlInvalidate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlLogout.php b/src/Elasticsearch/Endpoints/Security/SamlLogout.php index 489d4611d..97fd259df 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlLogout.php +++ b/src/Elasticsearch/Endpoints/Security/SamlLogout.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_logout * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class SamlLogout extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php b/src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php index e8e54cd4d..1df22294c 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php +++ b/src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_prepare_authentication * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class SamlPrepareAuthentication extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php b/src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php index 330f32b47..f6fb954ee 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php +++ b/src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.saml_service_provider_metadata * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class SamlServiceProviderMetadata extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php b/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php index a77b3c279..fef4d6431 100644 --- a/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php +++ b/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php @@ -24,7 +24,7 @@ * Elasticsearch API name shutdown.delete_node * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteNode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Shutdown/GetNode.php b/src/Elasticsearch/Endpoints/Shutdown/GetNode.php index 27992ad35..8bce16af5 100644 --- a/src/Elasticsearch/Endpoints/Shutdown/GetNode.php +++ b/src/Elasticsearch/Endpoints/Shutdown/GetNode.php @@ -23,7 +23,7 @@ * Elasticsearch API name shutdown.get_node * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetNode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Shutdown/PutNode.php b/src/Elasticsearch/Endpoints/Shutdown/PutNode.php index 1bf526c62..e729e5c32 100644 --- a/src/Elasticsearch/Endpoints/Shutdown/PutNode.php +++ b/src/Elasticsearch/Endpoints/Shutdown/PutNode.php @@ -24,7 +24,7 @@ * Elasticsearch API name shutdown.put_node * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutNode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php b/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php index e5e132f0c..9aafe2488 100644 --- a/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name slm.delete_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php b/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php index b68d41e61..614917ea5 100644 --- a/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name slm.execute_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ExecuteLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php b/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php index 3a70deaf0..756a08896 100644 --- a/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php +++ b/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.execute_retention * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ExecuteRetention extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php b/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php index fca1747f3..1ce86da3b 100644 --- a/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.get_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/GetStats.php b/src/Elasticsearch/Endpoints/Slm/GetStats.php index 7f30d1fca..b6bf90ab9 100644 --- a/src/Elasticsearch/Endpoints/Slm/GetStats.php +++ b/src/Elasticsearch/Endpoints/Slm/GetStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.get_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/GetStatus.php b/src/Elasticsearch/Endpoints/Slm/GetStatus.php index 363396527..5a97ae1be 100644 --- a/src/Elasticsearch/Endpoints/Slm/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Slm/GetStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php b/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php index 62157a11c..13cf4c263 100644 --- a/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name slm.put_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/Start.php b/src/Elasticsearch/Endpoints/Slm/Start.php index e2b21db1a..2f2faf80f 100644 --- a/src/Elasticsearch/Endpoints/Slm/Start.php +++ b/src/Elasticsearch/Endpoints/Slm/Start.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.start * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Start extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/Stop.php b/src/Elasticsearch/Endpoints/Slm/Stop.php index fe64519e3..14f000063 100644 --- a/src/Elasticsearch/Endpoints/Slm/Stop.php +++ b/src/Elasticsearch/Endpoints/Slm/Stop.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.stop * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Stop extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php b/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php index 38ad7714f..601cf6490 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.cleanup_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class CleanupRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php b/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php index 84e8624c0..5d477c7ec 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php +++ b/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.clone * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class CloneSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Create.php b/src/Elasticsearch/Endpoints/Snapshot/Create.php index 4b2e8044b..36473cb7c 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Create.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php b/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php index a3165e475..9db186a1c 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.create_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class CreateRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Delete.php b/src/Elasticsearch/Endpoints/Snapshot/Delete.php index 70aab60ca..21fe9f2dd 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Delete.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php b/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php index 8440f5bbb..cc6dd497f 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.delete_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Get.php b/src/Elasticsearch/Endpoints/Snapshot/Get.php index 2872c65c0..42b0c7971 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Get.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php b/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php index 0828e8e7c..8e54418f7 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php @@ -23,7 +23,7 @@ * Elasticsearch API name snapshot.get_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php b/src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php index f049974f3..6609b198e 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php +++ b/src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.repository_analyze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class RepositoryAnalyze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Restore.php b/src/Elasticsearch/Endpoints/Snapshot/Restore.php index c73a2448a..ae729cad7 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Restore.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Restore.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.restore * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Restore extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Status.php b/src/Elasticsearch/Endpoints/Snapshot/Status.php index 95b0dcb0d..53d73e732 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Status.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Status.php @@ -23,7 +23,7 @@ * Elasticsearch API name snapshot.status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Status extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php b/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php index 604e71a24..542d8a6e6 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.verify_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class VerifyRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/ClearCursor.php b/src/Elasticsearch/Endpoints/Sql/ClearCursor.php index eaaf93b2a..6509d8747 100644 --- a/src/Elasticsearch/Endpoints/Sql/ClearCursor.php +++ b/src/Elasticsearch/Endpoints/Sql/ClearCursor.php @@ -23,7 +23,7 @@ * Elasticsearch API name sql.clear_cursor * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ClearCursor extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/DeleteAsync.php b/src/Elasticsearch/Endpoints/Sql/DeleteAsync.php index 676715f0b..88ba51023 100644 --- a/src/Elasticsearch/Endpoints/Sql/DeleteAsync.php +++ b/src/Elasticsearch/Endpoints/Sql/DeleteAsync.php @@ -24,7 +24,7 @@ * Elasticsearch API name sql.delete_async * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteAsync extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/GetAsync.php b/src/Elasticsearch/Endpoints/Sql/GetAsync.php index 4c33f0d66..5f5eaeec8 100644 --- a/src/Elasticsearch/Endpoints/Sql/GetAsync.php +++ b/src/Elasticsearch/Endpoints/Sql/GetAsync.php @@ -24,7 +24,7 @@ * Elasticsearch API name sql.get_async * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetAsync extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php b/src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php index ef65ce578..55458b587 100644 --- a/src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php +++ b/src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php @@ -24,7 +24,7 @@ * Elasticsearch API name sql.get_async_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetAsyncStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/Query.php b/src/Elasticsearch/Endpoints/Sql/Query.php index 0f7961802..bc9508a31 100644 --- a/src/Elasticsearch/Endpoints/Sql/Query.php +++ b/src/Elasticsearch/Endpoints/Sql/Query.php @@ -23,7 +23,7 @@ * Elasticsearch API name sql.query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Query extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/Translate.php b/src/Elasticsearch/Endpoints/Sql/Translate.php index 02979dd59..02c88dcf8 100644 --- a/src/Elasticsearch/Endpoints/Sql/Translate.php +++ b/src/Elasticsearch/Endpoints/Sql/Translate.php @@ -23,7 +23,7 @@ * Elasticsearch API name sql.translate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Translate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ssl/Certificates.php b/src/Elasticsearch/Endpoints/Ssl/Certificates.php index 37579e28a..b757f02c6 100644 --- a/src/Elasticsearch/Endpoints/Ssl/Certificates.php +++ b/src/Elasticsearch/Endpoints/Ssl/Certificates.php @@ -23,7 +23,7 @@ * Elasticsearch API name ssl.certificates * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Certificates extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Tasks/Cancel.php b/src/Elasticsearch/Endpoints/Tasks/Cancel.php index 39d9dce4a..71badae24 100644 --- a/src/Elasticsearch/Endpoints/Tasks/Cancel.php +++ b/src/Elasticsearch/Endpoints/Tasks/Cancel.php @@ -23,7 +23,7 @@ * Elasticsearch API name tasks.cancel * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Cancel extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Tasks/Get.php b/src/Elasticsearch/Endpoints/Tasks/Get.php index 4be3ff904..1ef4e4244 100644 --- a/src/Elasticsearch/Endpoints/Tasks/Get.php +++ b/src/Elasticsearch/Endpoints/Tasks/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name tasks.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Tasks/ListTasks.php b/src/Elasticsearch/Endpoints/Tasks/ListTasks.php index 7dc07a9e9..5792b7d87 100644 --- a/src/Elasticsearch/Endpoints/Tasks/ListTasks.php +++ b/src/Elasticsearch/Endpoints/Tasks/ListTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name tasks.list * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ListTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/TermVectors.php b/src/Elasticsearch/Endpoints/TermVectors.php index 67ce6ed42..6a43a0895 100644 --- a/src/Elasticsearch/Endpoints/TermVectors.php +++ b/src/Elasticsearch/Endpoints/TermVectors.php @@ -24,7 +24,7 @@ * Elasticsearch API name termvectors * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class TermVectors extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/TermsEnum.php b/src/Elasticsearch/Endpoints/TermsEnum.php index 765a31377..2cbd30fee 100644 --- a/src/Elasticsearch/Endpoints/TermsEnum.php +++ b/src/Elasticsearch/Endpoints/TermsEnum.php @@ -24,7 +24,7 @@ * Elasticsearch API name terms_enum * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class TermsEnum extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php b/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php index f1aacab2d..4cb8b4c4f 100644 --- a/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php +++ b/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php @@ -26,7 +26,7 @@ * Elasticsearch API name text_structure.find_structure * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class FindStructure extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php b/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php index 6333185e4..f952a8959 100644 --- a/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.delete_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/GetTransform.php b/src/Elasticsearch/Endpoints/Transform/GetTransform.php index 5c5b4a854..f88cf11a3 100644 --- a/src/Elasticsearch/Endpoints/Transform/GetTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/GetTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name transform.get_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php b/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php index e3c7af337..7fb5c777e 100644 --- a/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php +++ b/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.get_transform_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetTransformStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php b/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php index 882f2ab89..7542c162e 100644 --- a/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name transform.preview_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PreviewTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/PutTransform.php b/src/Elasticsearch/Endpoints/Transform/PutTransform.php index 8d5a0c2e9..e2623ef25 100644 --- a/src/Elasticsearch/Endpoints/Transform/PutTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/PutTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.put_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/StartTransform.php b/src/Elasticsearch/Endpoints/Transform/StartTransform.php index 07085c263..7d2dd672d 100644 --- a/src/Elasticsearch/Endpoints/Transform/StartTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/StartTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.start_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class StartTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/StopTransform.php b/src/Elasticsearch/Endpoints/Transform/StopTransform.php index ec6210956..e9a59a435 100644 --- a/src/Elasticsearch/Endpoints/Transform/StopTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/StopTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.stop_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class StopTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php b/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php index 489f2e671..389f461df 100644 --- a/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.update_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class UpdateTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Update.php b/src/Elasticsearch/Endpoints/Update.php index c7755d25e..0226005c4 100644 --- a/src/Elasticsearch/Endpoints/Update.php +++ b/src/Elasticsearch/Endpoints/Update.php @@ -24,7 +24,7 @@ * Elasticsearch API name update * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Update extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/UpdateByQuery.php b/src/Elasticsearch/Endpoints/UpdateByQuery.php index 1d0ae18ca..493122faf 100644 --- a/src/Elasticsearch/Endpoints/UpdateByQuery.php +++ b/src/Elasticsearch/Endpoints/UpdateByQuery.php @@ -24,7 +24,7 @@ * Elasticsearch API name update_by_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class UpdateByQuery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php b/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php index 28fb9437a..204c70c87 100644 --- a/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php +++ b/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php @@ -24,7 +24,7 @@ * Elasticsearch API name update_by_query_rethrottle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class UpdateByQueryRethrottle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/AckWatch.php b/src/Elasticsearch/Endpoints/Watcher/AckWatch.php index 88a18fb78..d90c6b01b 100644 --- a/src/Elasticsearch/Endpoints/Watcher/AckWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/AckWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.ack_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class AckWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php b/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php index 1542e71c7..c6307557d 100644 --- a/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.activate_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ActivateWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php b/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php index 9125e7b4c..7fcc11b72 100644 --- a/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.deactivate_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeactivateWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php b/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php index bb32c9136..ba9340ae8 100644 --- a/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.delete_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DeleteWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php b/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php index 321d01a0f..10522ed33 100644 --- a/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.execute_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ExecuteWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/GetWatch.php b/src/Elasticsearch/Endpoints/Watcher/GetWatch.php index 5e1ac141a..d0c8b82c0 100644 --- a/src/Elasticsearch/Endpoints/Watcher/GetWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/GetWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.get_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GetWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/PutWatch.php b/src/Elasticsearch/Endpoints/Watcher/PutWatch.php index 5cc2e8c30..168b78d45 100644 --- a/src/Elasticsearch/Endpoints/Watcher/PutWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/PutWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.put_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class PutWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php b/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php index 86bf6b463..21ffb20d8 100644 --- a/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php +++ b/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.query_watches * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class QueryWatches extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/Start.php b/src/Elasticsearch/Endpoints/Watcher/Start.php index 4e0e21d23..c9d489cfd 100644 --- a/src/Elasticsearch/Endpoints/Watcher/Start.php +++ b/src/Elasticsearch/Endpoints/Watcher/Start.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.start * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Start extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/Stats.php b/src/Elasticsearch/Endpoints/Watcher/Stats.php index 106385f30..00d2fc18f 100644 --- a/src/Elasticsearch/Endpoints/Watcher/Stats.php +++ b/src/Elasticsearch/Endpoints/Watcher/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/Stop.php b/src/Elasticsearch/Endpoints/Watcher/Stop.php index 8f3b7fea5..2d107b93e 100644 --- a/src/Elasticsearch/Endpoints/Watcher/Stop.php +++ b/src/Elasticsearch/Endpoints/Watcher/Stop.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.stop * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Stop extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Xpack/Info.php b/src/Elasticsearch/Endpoints/Xpack/Info.php index c52918d11..0a1ff4d21 100644 --- a/src/Elasticsearch/Endpoints/Xpack/Info.php +++ b/src/Elasticsearch/Endpoints/Xpack/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name xpack.info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Xpack/Usage.php b/src/Elasticsearch/Endpoints/Xpack/Usage.php index 39f124fa7..b46a89ec6 100644 --- a/src/Elasticsearch/Endpoints/Xpack/Usage.php +++ b/src/Elasticsearch/Endpoints/Xpack/Usage.php @@ -23,7 +23,7 @@ * Elasticsearch API name xpack.usage * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Usage extends AbstractEndpoint { diff --git a/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php b/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php index 0c81f87c9..293821724 100644 --- a/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php +++ b/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php @@ -22,7 +22,7 @@ * Class AsyncSearchNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class AsyncSearchNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/AutoscalingNamespace.php b/src/Elasticsearch/Namespaces/AutoscalingNamespace.php index 0eb8ba5b6..33abdd7a3 100644 --- a/src/Elasticsearch/Namespaces/AutoscalingNamespace.php +++ b/src/Elasticsearch/Namespaces/AutoscalingNamespace.php @@ -22,7 +22,7 @@ * Class AutoscalingNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class AutoscalingNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/CatNamespace.php b/src/Elasticsearch/Namespaces/CatNamespace.php index 3287e22ae..0118a1470 100644 --- a/src/Elasticsearch/Namespaces/CatNamespace.php +++ b/src/Elasticsearch/Namespaces/CatNamespace.php @@ -22,7 +22,7 @@ * Class CatNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class CatNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/CcrNamespace.php b/src/Elasticsearch/Namespaces/CcrNamespace.php index 36e6fe76d..2a8f4feb5 100644 --- a/src/Elasticsearch/Namespaces/CcrNamespace.php +++ b/src/Elasticsearch/Namespaces/CcrNamespace.php @@ -22,7 +22,7 @@ * Class CcrNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class CcrNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/ClusterNamespace.php b/src/Elasticsearch/Namespaces/ClusterNamespace.php index 8234d6af4..beeaf5587 100644 --- a/src/Elasticsearch/Namespaces/ClusterNamespace.php +++ b/src/Elasticsearch/Namespaces/ClusterNamespace.php @@ -22,7 +22,7 @@ * Class ClusterNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ClusterNamespace extends AbstractNamespace { @@ -32,7 +32,7 @@ class ClusterNamespace extends AbstractNamespace * * $params['include_yes_decisions'] = (boolean) Return 'YES' decisions in explanation (default: false) * $params['include_disk_info'] = (boolean) Return information about disk usage and shard sizes (default: false) - * $params['body'] = (array) The index, shard, and primary flag to explain. Empty means 'explain the first unassigned shard' + * $params['body'] = (array) The index, shard, and primary flag to explain. Empty means 'explain a randomly-chosen unassigned shard' * * @param array $params Associative array of parameters * @return array diff --git a/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php b/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php index b4b5b72c3..f277d9840 100644 --- a/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php +++ b/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php @@ -22,7 +22,7 @@ * Class DanglingIndicesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DanglingIndicesNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php b/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php index 1c6e21da7..a79859b6c 100644 --- a/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php +++ b/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php @@ -22,7 +22,7 @@ * Class DataFrameTransformDeprecatedNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class DataFrameTransformDeprecatedNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/EnrichNamespace.php b/src/Elasticsearch/Namespaces/EnrichNamespace.php index 92ce12730..7df6b8db4 100644 --- a/src/Elasticsearch/Namespaces/EnrichNamespace.php +++ b/src/Elasticsearch/Namespaces/EnrichNamespace.php @@ -22,7 +22,7 @@ * Class EnrichNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class EnrichNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/EqlNamespace.php b/src/Elasticsearch/Namespaces/EqlNamespace.php index c7d26ad13..0cf5aee51 100644 --- a/src/Elasticsearch/Namespaces/EqlNamespace.php +++ b/src/Elasticsearch/Namespaces/EqlNamespace.php @@ -22,7 +22,7 @@ * Class EqlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class EqlNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/FeaturesNamespace.php b/src/Elasticsearch/Namespaces/FeaturesNamespace.php index a7d0745ae..99f850513 100644 --- a/src/Elasticsearch/Namespaces/FeaturesNamespace.php +++ b/src/Elasticsearch/Namespaces/FeaturesNamespace.php @@ -22,7 +22,7 @@ * Class FeaturesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class FeaturesNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/FleetNamespace.php b/src/Elasticsearch/Namespaces/FleetNamespace.php index 81fbcc3e8..45f32bbb8 100644 --- a/src/Elasticsearch/Namespaces/FleetNamespace.php +++ b/src/Elasticsearch/Namespaces/FleetNamespace.php @@ -22,7 +22,7 @@ * Class FleetNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class FleetNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/GraphNamespace.php b/src/Elasticsearch/Namespaces/GraphNamespace.php index 4ac57425e..c1dd0ac4c 100644 --- a/src/Elasticsearch/Namespaces/GraphNamespace.php +++ b/src/Elasticsearch/Namespaces/GraphNamespace.php @@ -22,7 +22,7 @@ * Class GraphNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class GraphNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/IlmNamespace.php b/src/Elasticsearch/Namespaces/IlmNamespace.php index 77615bb9d..12b8f63fa 100644 --- a/src/Elasticsearch/Namespaces/IlmNamespace.php +++ b/src/Elasticsearch/Namespaces/IlmNamespace.php @@ -22,7 +22,7 @@ * Class IlmNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class IlmNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/IndicesNamespace.php b/src/Elasticsearch/Namespaces/IndicesNamespace.php index fbe488844..46e7a043b 100644 --- a/src/Elasticsearch/Namespaces/IndicesNamespace.php +++ b/src/Elasticsearch/Namespaces/IndicesNamespace.php @@ -22,7 +22,7 @@ * Class IndicesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class IndicesNamespace extends AbstractNamespace { @@ -235,7 +235,7 @@ public function dataStreamsStats(array $params = []) * $params['master_timeout'] = (time) Specify timeout for connection to master * $params['ignore_unavailable'] = (boolean) Ignore unavailable indexes (default: false) * $params['allow_no_indices'] = (boolean) Ignore if a wildcard expression resolves to no concrete indices (default: false) - * $params['expand_wildcards'] = (enum) Whether wildcard expressions should get expanded to open or closed indices (default: open) (Options = open,closed,hidden,none,all) (Default = open) + * $params['expand_wildcards'] = (enum) Whether wildcard expressions should get expanded to open, closed, or hidden indices (Options = open,closed,hidden,none,all) (Default = open,closed) * * @param array $params Associative array of parameters * @return array @@ -522,7 +522,7 @@ public function existsType(array $params = []): bool * * @param array $params Associative array of parameters * @return array - * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-field-usage-stats.html + * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/field-usage-stats.html * * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release * diff --git a/src/Elasticsearch/Namespaces/IngestNamespace.php b/src/Elasticsearch/Namespaces/IngestNamespace.php index 07111aebb..1f760178f 100644 --- a/src/Elasticsearch/Namespaces/IngestNamespace.php +++ b/src/Elasticsearch/Namespaces/IngestNamespace.php @@ -22,7 +22,7 @@ * Class IngestNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class IngestNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/LicenseNamespace.php b/src/Elasticsearch/Namespaces/LicenseNamespace.php index 7253e3416..8262a0600 100644 --- a/src/Elasticsearch/Namespaces/LicenseNamespace.php +++ b/src/Elasticsearch/Namespaces/LicenseNamespace.php @@ -22,7 +22,7 @@ * Class LicenseNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class LicenseNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/LogstashNamespace.php b/src/Elasticsearch/Namespaces/LogstashNamespace.php index 762cd37a7..feca5b16f 100644 --- a/src/Elasticsearch/Namespaces/LogstashNamespace.php +++ b/src/Elasticsearch/Namespaces/LogstashNamespace.php @@ -22,7 +22,7 @@ * Class LogstashNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class LogstashNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/MigrationNamespace.php b/src/Elasticsearch/Namespaces/MigrationNamespace.php index 548d38f55..8d7584da1 100644 --- a/src/Elasticsearch/Namespaces/MigrationNamespace.php +++ b/src/Elasticsearch/Namespaces/MigrationNamespace.php @@ -22,7 +22,7 @@ * Class MigrationNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class MigrationNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/MlNamespace.php b/src/Elasticsearch/Namespaces/MlNamespace.php index 5b4549df4..60c998244 100644 --- a/src/Elasticsearch/Namespaces/MlNamespace.php +++ b/src/Elasticsearch/Namespaces/MlNamespace.php @@ -22,7 +22,7 @@ * Class MlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class MlNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/MonitoringNamespace.php b/src/Elasticsearch/Namespaces/MonitoringNamespace.php index 825425d78..9ff8c0db7 100644 --- a/src/Elasticsearch/Namespaces/MonitoringNamespace.php +++ b/src/Elasticsearch/Namespaces/MonitoringNamespace.php @@ -22,7 +22,7 @@ * Class MonitoringNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class MonitoringNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/NodesNamespace.php b/src/Elasticsearch/Namespaces/NodesNamespace.php index 4f2cb88ca..3a84ce474 100644 --- a/src/Elasticsearch/Namespaces/NodesNamespace.php +++ b/src/Elasticsearch/Namespaces/NodesNamespace.php @@ -22,11 +22,60 @@ * Class NodesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class NodesNamespace extends AbstractNamespace { + /** + * Removes the archived repositories metering information present in the cluster. + * + * $params['node_id'] = (list) Comma-separated list of node IDs or names used to limit returned information. + * $params['max_archive_version'] = (long) Specifies the maximum archive_version to be cleared from the archive. + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/clear-repositories-metering-archive-api.html + * + * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release + * + */ + public function clearRepositoriesMeteringArchive(array $params = []) + { + $node_id = $this->extractArgument($params, 'node_id'); + $max_archive_version = $this->extractArgument($params, 'max_archive_version'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Nodes\ClearRepositoriesMeteringArchive'); + $endpoint->setParams($params); + $endpoint->setNodeId($node_id); + $endpoint->setMaxArchiveVersion($max_archive_version); + + return $this->performRequest($endpoint); + } + /** + * Returns cluster repositories metering information. + * + * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information. + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/get-repositories-metering-api.html + * + * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release + * + */ + public function getRepositoriesMeteringInfo(array $params = []) + { + $node_id = $this->extractArgument($params, 'node_id'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Nodes\GetRepositoriesMeteringInfo'); + $endpoint->setParams($params); + $endpoint->setNodeId($node_id); + + return $this->performRequest($endpoint); + } /** * Returns information about hot threads on each node in the cluster. * diff --git a/src/Elasticsearch/Namespaces/RollupNamespace.php b/src/Elasticsearch/Namespaces/RollupNamespace.php index d3cb782e6..3e24d4eba 100644 --- a/src/Elasticsearch/Namespaces/RollupNamespace.php +++ b/src/Elasticsearch/Namespaces/RollupNamespace.php @@ -22,7 +22,7 @@ * Class RollupNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class RollupNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php b/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php index 7d9a8e357..23eb02f61 100644 --- a/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php +++ b/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php @@ -22,7 +22,7 @@ * Class SearchableSnapshotsNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class SearchableSnapshotsNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SecurityNamespace.php b/src/Elasticsearch/Namespaces/SecurityNamespace.php index 1794212bb..3edc7e719 100644 --- a/src/Elasticsearch/Namespaces/SecurityNamespace.php +++ b/src/Elasticsearch/Namespaces/SecurityNamespace.php @@ -22,7 +22,7 @@ * Class SecurityNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class SecurityNamespace extends AbstractNamespace { @@ -776,6 +776,26 @@ public function putUser(array $params = []) return $this->performRequest($endpoint); } + /** + * Retrieves information for API keys using a subset of query DSL + * + * $params['body'] = (array) From, size, query, sort and search_after + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-query-api-key.html + */ + public function queryApiKeys(array $params = []) + { + $body = $this->extractArgument($params, 'body'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Security\QueryApiKeys'); + $endpoint->setParams($params); + $endpoint->setBody($body); + + return $this->performRequest($endpoint); + } /** * Exchanges a SAML Response message for an Elasticsearch access token and refresh token pair * diff --git a/src/Elasticsearch/Namespaces/ShutdownNamespace.php b/src/Elasticsearch/Namespaces/ShutdownNamespace.php index 94f375309..fec9cb55a 100644 --- a/src/Elasticsearch/Namespaces/ShutdownNamespace.php +++ b/src/Elasticsearch/Namespaces/ShutdownNamespace.php @@ -22,7 +22,7 @@ * Class ShutdownNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class ShutdownNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SlmNamespace.php b/src/Elasticsearch/Namespaces/SlmNamespace.php index 651781436..95c680d19 100644 --- a/src/Elasticsearch/Namespaces/SlmNamespace.php +++ b/src/Elasticsearch/Namespaces/SlmNamespace.php @@ -22,7 +22,7 @@ * Class SlmNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class SlmNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SnapshotNamespace.php b/src/Elasticsearch/Namespaces/SnapshotNamespace.php index 730e71789..9a90ddc58 100644 --- a/src/Elasticsearch/Namespaces/SnapshotNamespace.php +++ b/src/Elasticsearch/Namespaces/SnapshotNamespace.php @@ -22,7 +22,7 @@ * Class SnapshotNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class SnapshotNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SqlNamespace.php b/src/Elasticsearch/Namespaces/SqlNamespace.php index 420e717c6..575788860 100644 --- a/src/Elasticsearch/Namespaces/SqlNamespace.php +++ b/src/Elasticsearch/Namespaces/SqlNamespace.php @@ -22,7 +22,7 @@ * Class SqlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class SqlNamespace extends AbstractNamespace { @@ -34,7 +34,7 @@ class SqlNamespace extends AbstractNamespace * * @param array $params Associative array of parameters * @return array - * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/sql-pagination.html + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/clear-sql-cursor-api.html */ public function clearCursor(array $params = []) { @@ -119,7 +119,7 @@ public function getAsyncStatus(array $params = []) * * @param array $params Associative array of parameters * @return array - * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/sql-rest-overview.html + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/sql-search-api.html */ public function query(array $params = []) { @@ -139,7 +139,7 @@ public function query(array $params = []) * * @param array $params Associative array of parameters * @return array - * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/sql-translate.html + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/sql-translate-api.html */ public function translate(array $params = []) { diff --git a/src/Elasticsearch/Namespaces/SslNamespace.php b/src/Elasticsearch/Namespaces/SslNamespace.php index 4eb71f1fe..750adc49c 100644 --- a/src/Elasticsearch/Namespaces/SslNamespace.php +++ b/src/Elasticsearch/Namespaces/SslNamespace.php @@ -22,7 +22,7 @@ * Class SslNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class SslNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/TasksNamespace.php b/src/Elasticsearch/Namespaces/TasksNamespace.php index 1b7033182..3c1fb2755 100644 --- a/src/Elasticsearch/Namespaces/TasksNamespace.php +++ b/src/Elasticsearch/Namespaces/TasksNamespace.php @@ -22,7 +22,7 @@ * Class TasksNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class TasksNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/TextStructureNamespace.php b/src/Elasticsearch/Namespaces/TextStructureNamespace.php index eca880135..44879cd27 100644 --- a/src/Elasticsearch/Namespaces/TextStructureNamespace.php +++ b/src/Elasticsearch/Namespaces/TextStructureNamespace.php @@ -22,7 +22,7 @@ * Class TextStructureNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class TextStructureNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/TransformNamespace.php b/src/Elasticsearch/Namespaces/TransformNamespace.php index 237438734..dff396e0f 100644 --- a/src/Elasticsearch/Namespaces/TransformNamespace.php +++ b/src/Elasticsearch/Namespaces/TransformNamespace.php @@ -22,7 +22,7 @@ * Class TransformNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class TransformNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/WatcherNamespace.php b/src/Elasticsearch/Namespaces/WatcherNamespace.php index 4e7f9c9b7..b44b07956 100644 --- a/src/Elasticsearch/Namespaces/WatcherNamespace.php +++ b/src/Elasticsearch/Namespaces/WatcherNamespace.php @@ -22,7 +22,7 @@ * Class WatcherNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class WatcherNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/XpackNamespace.php b/src/Elasticsearch/Namespaces/XpackNamespace.php index 82c78f978..5d1ded1a8 100644 --- a/src/Elasticsearch/Namespaces/XpackNamespace.php +++ b/src/Elasticsearch/Namespaces/XpackNamespace.php @@ -22,7 +22,7 @@ * Class XpackNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (4e182b9ebb7699ef62d9c632ad58fc16f9828e11) + * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class XpackNamespace extends AbstractNamespace { From 60e4ccd5f61c650fdb8f2fe350fe6b16da0bc3e0 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Tue, 21 Sep 2021 14:51:49 +0200 Subject: [PATCH 38/81] Added integration test for search_mvt using vnd.mapbox-vector-tile --- .../Tests/ClientIntegrationTest.php | 94 ++++++++++++++++++- tests/Elasticsearch/Tests/Utility.php | 2 +- 2 files changed, 94 insertions(+), 2 deletions(-) diff --git a/tests/Elasticsearch/Tests/ClientIntegrationTest.php b/tests/Elasticsearch/Tests/ClientIntegrationTest.php index 1b66c3019..bd559e18d 100644 --- a/tests/Elasticsearch/Tests/ClientIntegrationTest.php +++ b/tests/Elasticsearch/Tests/ClientIntegrationTest.php @@ -60,7 +60,7 @@ private function getClient(): Client ->setLogger($this->logger); if (getenv('TEST_SUITE') === 'platinum') { - $client->setSSLVerification(__DIR__ . '/../../../.ci/certs/ca.crt'); + $client->setSSLVerification(false); } return $client->build(); } @@ -153,6 +153,98 @@ public function testIndexCannotBeArrayOfNullsForDelete() ); } + /** + * @see https://github.com/elastic/elasticsearch/blob/master/rest-api-spec/src/main/resources/rest-api-spec/api/search_mvt.json + */ + public function testSupportMapBoxVectorTiles() + { + $client = $this->getClient(); + + if (Utility::getVersion($client) < '7.15') { + $this->markTestSkipped(sprintf( + "The %s test requires Elasticsearch 7.15+", + __FUNCTION__ + )); + } + + // Create a museums index with a custom mappings + $client->indices()->create([ + 'index' => 'museums', + 'body' => [ + "mappings" => [ + "properties" => [ + "location" => ["type" => "geo_point"], + "name" => ["type" => "keyword"], + "price" => ["type" => "long"], + "included" => ["type" => "boolean"] + ] + ] + ] + ]); + + // Bulk some documents + $body = [ + [ "index" => [ "_id" => "1" ]], + [ "location" => "52.374081,4.912350", "name" => "NEMO Science Museum", "price" => 1750, "included" => true ], + [ "index" => [ "_id" => "2" ]], + [ "location" => "52.369219,4.901618", "name" => "Museum Het Rembrandthuis", "price" => 1500, "included" => false ], + [ "index" => [ "_id" => "3" ]], + [ "location" => "52.371667,4.914722", "name" => "Nederlands Scheepvaartmuseum", "price" => 1650, "included" => true ], + [ "index" => [ "_id" => "4" ]], + [ "location" => "52.371667,4.914722", "name" => "Amsterdam Centre for Architecture", "price" => 0, "included" => true ] + ]; + $client->bulk([ + 'index' => 'museums', + 'refresh' => true, + 'body' => $body + ]); + + $body = [ + "grid_precision" => 2, + "fields" => ["name", "price"], + "query" => [ + "term" => [ + "included" => true + ] + ], + "aggs" => [ + "min_price" => [ + "min" => [ + "field" => "price" + ] + ], + "max_price" => [ + "max" => [ + "field" => "price" + ] + ], + "avg_price" => [ + "avg" => [ + "field" => "price" + ] + ] + ] + ]; + + // Searches a vector tile for geospatial values. Returns results as a binary Mapbox vector tile. + $response = $client->searchMvt([ + 'index' => 'museums', + 'field' => 'location', + 'zoom' => 13, + 'x' => 4207, + 'y' => 2692, + 'body' => $body + ]); + + // Remove the index museums + $client->indices()->delete([ + 'index' => 'museums' + ]); + + $this->assertIsString($response); + $this->assertStringContainsString('NEMO Science Museum', $response); + } + private function getLevelOutput(string $level, array $output): string { foreach ($output as $out) { diff --git a/tests/Elasticsearch/Tests/Utility.php b/tests/Elasticsearch/Tests/Utility.php index 16119099e..7617a9484 100644 --- a/tests/Elasticsearch/Tests/Utility.php +++ b/tests/Elasticsearch/Tests/Utility.php @@ -87,7 +87,7 @@ public static function removeYamlXPackUsers(Client $client): void ]); } - private static function getVersion(Client $client): string + public static function getVersion(Client $client): string { if (!isset(self::$version)) { $result = $client->info(); From ba75702ff0b45ed9ae6399004b2b689d8173d64e Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Tue, 21 Sep 2021 19:04:53 +0200 Subject: [PATCH 39/81] Updated to 7.x-SNAPSHOT --- .ci/test-matrix.yml | 2 +- src/Elasticsearch/Client.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.ci/test-matrix.yml b/.ci/test-matrix.yml index 1bbfd6b2b..0bec1291b 100644 --- a/.ci/test-matrix.yml +++ b/.ci/test-matrix.yml @@ -1,6 +1,6 @@ --- STACK_VERSION: - - 7.15-SNAPSHOT + - 7.x-SNAPSHOT PHP_VERSION: - 8.0-cli diff --git a/src/Elasticsearch/Client.php b/src/Elasticsearch/Client.php index 754d9b2e0..9373b1363 100644 --- a/src/Elasticsearch/Client.php +++ b/src/Elasticsearch/Client.php @@ -65,11 +65,11 @@ * Class Client * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.x-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) */ class Client { - const VERSION = '7.15.0-SNAPSHOT'; + const VERSION = '7.x-SNAPSHOT'; /** * @var Transport From 165f5cd4b97659e53b1528ee0c916904da38fbce Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 22 Sep 2021 17:49:10 +0200 Subject: [PATCH 40/81] Added compatibility mode section in docs --- docs/connecting.asciidoc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/connecting.asciidoc b/docs/connecting.asciidoc index c621480c1..bfca383c9 100644 --- a/docs/connecting.asciidoc +++ b/docs/connecting.asciidoc @@ -201,6 +201,21 @@ $client = ClientBuilder::create() ---- +[discrete] +[[client-comp]] +=== Enabling the Compatibility Mode + +The Elasticsearch server version 8.0 is introducing a new compatibility mode that +allows you a smoother upgrade experience from 7 to 8. In a nutshell, you can use +the latest 7.x Elasticsearch client with an 8.x Elasticsearch server, giving more +room to coordinate the upgrade of your codebase to the next major version. + +If you want to leverage this functionality, please make sure that you are using the +latest 7.x client and set the environment variable `ELASTIC_CLIENT_APIVERSIONING` +to `true`. The client is handling the rest internally. For every 8.0 and beyond +client, you're all set! The compatibility mode is enabled by default. + + [discrete] [[client-usage]] === Usage From e1bda58aa60d5f29ab9261e90c7886529e716438 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 23 Sep 2021 09:26:51 +0200 Subject: [PATCH 41/81] Updated release notes in docs --- docs/release-notes.asciidoc | 49 +++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/docs/release-notes.asciidoc b/docs/release-notes.asciidoc index 19f4bb2f0..9cb6e3616 100644 --- a/docs/release-notes.asciidoc +++ b/docs/release-notes.asciidoc @@ -1,6 +1,10 @@ [[release-notes]] == Release notes +* <> +* <> +* <> +* <> * <> * <> * <> @@ -24,7 +28,52 @@ * <> * <> +[discrete] +[[rn-7-15-0]] +=== 7.15.0 + +* Updated endpoints for Elasticsearch 7.15.0 + https://github.com/elastic/elasticsearch-php/commit/995f6d4bde7de76004e95d7a434b1d59da7a7e75[995f6d4] + + +[discrete] +[[rn-7-14-0]] +=== 7.14.0 + +* Usage of psr/log version 2 + https://github.com/elastic/elasticsearch-php/pull/1154[#1154] +* Update search iterators to send `scroll_id` inside the request body + https://github.com/elastic/elasticsearch-php/pull/1134[#1134] +* Added the `ingest.geoip.downloader.enabled=false` setting for ES + https://github.com/elastic/elasticsearch-php/commit/586735109dc18f22bfdf3b73ab0621b37e857be1[5867351] +* Removed phpcs for autogenerated files (endpoints) + https://github.com/elastic/elasticsearch-php/commit/651c57b2e6bf98a0fd48220949966e630e5a804a[651c57b] + +[discrete] +[[rn-7-13-1]] +=== 7.13.1 + +* Added port in url for trace and logger messages + https://github.com/elastic/elasticsearch-php/pull/1126[#1126] + + +[discrete] +[[rn-7-13-0]] +=== 7.13.0 + +* (DOCS) Added the HTTP meta data section + https://github.com/elastic/elasticsearch-php/pull/1143[#1143] +* Added support for API Compatibility Header + https://github.com/elastic/elasticsearch-php/pull/1142[#1142] +* (DOCS) Added Helpers section to PHP book + https://github.com/elastic/elasticsearch-php/pull/1129[#1129] +* Added the API description in phpdoc section for each endpoint + https://github.com/elastic/elasticsearch-php/commit/9e05c8108b638b60cc676b6a4f4be97c7df9eb64[9e05c81] +* Usage of PHPUnit 9 only + migrated xml configurations + https://github.com/elastic/elasticsearch-php/commit/038b5dd043dc76b20b9f5f265ea914a38d33568d[038b5dd] + + [discrete] [[rn-7-12-0]] === 7.12.0 From d370e7d696c1600e4a514241ec2ddec49cb94059 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 23 Sep 2021 09:32:33 +0200 Subject: [PATCH 42/81] Updated endpoints to 7.16.0-SNAPSHOT --- src/Elasticsearch/Client.php | 4 ++-- .../Endpoints/AsyncSearch/Delete.php | 2 +- .../Endpoints/AsyncSearch/Get.php | 2 +- .../Endpoints/AsyncSearch/Status.php | 2 +- .../Endpoints/AsyncSearch/Submit.php | 2 +- .../Autoscaling/DeleteAutoscalingPolicy.php | 2 +- .../Autoscaling/GetAutoscalingCapacity.php | 2 +- .../Autoscaling/GetAutoscalingPolicy.php | 2 +- .../Autoscaling/PutAutoscalingPolicy.php | 2 +- src/Elasticsearch/Endpoints/Bulk.php | 2 +- src/Elasticsearch/Endpoints/Cat/Aliases.php | 2 +- .../Endpoints/Cat/Allocation.php | 2 +- src/Elasticsearch/Endpoints/Cat/Count.php | 2 +- src/Elasticsearch/Endpoints/Cat/Fielddata.php | 2 +- src/Elasticsearch/Endpoints/Cat/Health.php | 2 +- src/Elasticsearch/Endpoints/Cat/Help.php | 2 +- src/Elasticsearch/Endpoints/Cat/Indices.php | 2 +- src/Elasticsearch/Endpoints/Cat/Master.php | 2 +- .../Endpoints/Cat/MlDataFrameAnalytics.php | 2 +- .../Endpoints/Cat/MlDatafeeds.php | 2 +- src/Elasticsearch/Endpoints/Cat/MlJobs.php | 2 +- .../Endpoints/Cat/MlTrainedModels.php | 2 +- src/Elasticsearch/Endpoints/Cat/NodeAttrs.php | 2 +- src/Elasticsearch/Endpoints/Cat/Nodes.php | 2 +- .../Endpoints/Cat/PendingTasks.php | 2 +- src/Elasticsearch/Endpoints/Cat/Plugins.php | 2 +- src/Elasticsearch/Endpoints/Cat/Recovery.php | 2 +- .../Endpoints/Cat/Repositories.php | 2 +- src/Elasticsearch/Endpoints/Cat/Segments.php | 2 +- src/Elasticsearch/Endpoints/Cat/Shards.php | 2 +- src/Elasticsearch/Endpoints/Cat/Snapshots.php | 2 +- src/Elasticsearch/Endpoints/Cat/Tasks.php | 2 +- src/Elasticsearch/Endpoints/Cat/Templates.php | 2 +- .../Endpoints/Cat/ThreadPool.php | 2 +- .../Endpoints/Cat/Transforms.php | 2 +- .../Endpoints/Ccr/DeleteAutoFollowPattern.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Follow.php | 2 +- .../Endpoints/Ccr/FollowInfo.php | 2 +- .../Endpoints/Ccr/FollowStats.php | 2 +- .../Endpoints/Ccr/ForgetFollower.php | 2 +- .../Endpoints/Ccr/GetAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/PauseAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/PauseFollow.php | 2 +- .../Endpoints/Ccr/PutAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/ResumeAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/ResumeFollow.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Stats.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Unfollow.php | 2 +- src/Elasticsearch/Endpoints/ClearScroll.php | 2 +- .../Endpoints/ClosePointInTime.php | 2 +- .../Endpoints/Cluster/AllocationExplain.php | 2 +- .../Cluster/DeleteComponentTemplate.php | 2 +- .../Cluster/DeleteVotingConfigExclusions.php | 2 +- .../Cluster/ExistsComponentTemplate.php | 2 +- .../Cluster/GetComponentTemplate.php | 2 +- .../Endpoints/Cluster/GetSettings.php | 2 +- .../Endpoints/Cluster/Health.php | 2 +- .../Endpoints/Cluster/PendingTasks.php | 2 +- .../Cluster/PostVotingConfigExclusions.php | 2 +- .../Cluster/PutComponentTemplate.php | 2 +- .../Endpoints/Cluster/PutSettings.php | 2 +- .../Endpoints/Cluster/RemoteInfo.php | 2 +- .../Endpoints/Cluster/Reroute.php | 2 +- src/Elasticsearch/Endpoints/Cluster/State.php | 2 +- src/Elasticsearch/Endpoints/Cluster/Stats.php | 2 +- src/Elasticsearch/Endpoints/Count.php | 2 +- src/Elasticsearch/Endpoints/Create.php | 2 +- .../DanglingIndices/DeleteDanglingIndex.php | 2 +- .../DanglingIndices/ImportDanglingIndex.php | 2 +- .../DanglingIndices/ListDanglingIndices.php | 2 +- .../DeleteTransform.php | 2 +- .../GetTransform.php | 2 +- .../GetTransformStats.php | 2 +- .../PreviewTransform.php | 2 +- .../PutTransform.php | 2 +- .../StartTransform.php | 2 +- .../StopTransform.php | 2 +- .../UpdateTransform.php | 2 +- src/Elasticsearch/Endpoints/Delete.php | 2 +- src/Elasticsearch/Endpoints/DeleteByQuery.php | 2 +- .../Endpoints/DeleteByQueryRethrottle.php | 2 +- src/Elasticsearch/Endpoints/DeleteScript.php | 2 +- .../Endpoints/Enrich/DeletePolicy.php | 2 +- .../Endpoints/Enrich/ExecutePolicy.php | 2 +- .../Endpoints/Enrich/GetPolicy.php | 2 +- .../Endpoints/Enrich/PutPolicy.php | 2 +- src/Elasticsearch/Endpoints/Enrich/Stats.php | 2 +- src/Elasticsearch/Endpoints/Eql/Delete.php | 2 +- src/Elasticsearch/Endpoints/Eql/Get.php | 2 +- src/Elasticsearch/Endpoints/Eql/GetStatus.php | 2 +- src/Elasticsearch/Endpoints/Eql/Search.php | 2 +- src/Elasticsearch/Endpoints/Exists.php | 2 +- src/Elasticsearch/Endpoints/ExistsSource.php | 2 +- src/Elasticsearch/Endpoints/Explain.php | 2 +- .../Endpoints/Features/GetFeatures.php | 2 +- .../Endpoints/Features/ResetFeatures.php | 2 +- src/Elasticsearch/Endpoints/FieldCaps.php | 2 +- .../Endpoints/Fleet/GlobalCheckpoints.php | 2 +- src/Elasticsearch/Endpoints/Get.php | 2 +- src/Elasticsearch/Endpoints/GetScript.php | 2 +- .../Endpoints/GetScriptContext.php | 2 +- .../Endpoints/GetScriptLanguages.php | 2 +- src/Elasticsearch/Endpoints/GetSource.php | 2 +- src/Elasticsearch/Endpoints/Graph/Explore.php | 2 +- .../Endpoints/Ilm/DeleteLifecycle.php | 2 +- .../Endpoints/Ilm/ExplainLifecycle.php | 2 +- .../Endpoints/Ilm/GetLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Ilm/GetStatus.php | 2 +- .../Endpoints/Ilm/MigrateToDataTiers.php | 2 +- .../Endpoints/Ilm/MoveToStep.php | 2 +- .../Endpoints/Ilm/PutLifecycle.php | 2 +- .../Endpoints/Ilm/RemovePolicy.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Retry.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Start.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Stop.php | 2 +- src/Elasticsearch/Endpoints/Index.php | 2 +- .../Endpoints/Indices/AddBlock.php | 2 +- .../Endpoints/Indices/Analyze.php | 2 +- .../Endpoints/Indices/ClearCache.php | 2 +- .../Endpoints/Indices/CloneIndices.php | 2 +- src/Elasticsearch/Endpoints/Indices/Close.php | 2 +- .../Endpoints/Indices/Create.php | 2 +- .../Endpoints/Indices/CreateDataStream.php | 2 +- .../Endpoints/Indices/DataStreamsStats.php | 2 +- .../Endpoints/Indices/Delete.php | 2 +- .../Endpoints/Indices/DeleteAlias.php | 2 +- .../Endpoints/Indices/DeleteDataStream.php | 2 +- .../Endpoints/Indices/DeleteIndexTemplate.php | 2 +- .../Endpoints/Indices/DeleteTemplate.php | 2 +- .../Endpoints/Indices/DiskUsage.php | 2 +- .../Endpoints/Indices/Exists.php | 2 +- .../Endpoints/Indices/ExistsAlias.php | 2 +- .../Endpoints/Indices/ExistsIndexTemplate.php | 2 +- .../Endpoints/Indices/ExistsTemplate.php | 2 +- .../Endpoints/Indices/ExistsType.php | 2 +- .../Endpoints/Indices/FieldUsageStats.php | 2 +- src/Elasticsearch/Endpoints/Indices/Flush.php | 2 +- .../Endpoints/Indices/FlushSynced.php | 2 +- .../Endpoints/Indices/ForceMerge.php | 2 +- .../Endpoints/Indices/Freeze.php | 2 +- src/Elasticsearch/Endpoints/Indices/Get.php | 2 +- .../Endpoints/Indices/GetAlias.php | 2 +- .../Endpoints/Indices/GetDataStream.php | 2 +- .../Endpoints/Indices/GetFieldMapping.php | 2 +- .../Endpoints/Indices/GetIndexTemplate.php | 2 +- .../Endpoints/Indices/GetMapping.php | 2 +- .../Endpoints/Indices/GetSettings.php | 2 +- .../Endpoints/Indices/GetTemplate.php | 2 +- .../Endpoints/Indices/GetUpgrade.php | 2 +- .../Endpoints/Indices/MigrateToDataStream.php | 2 +- src/Elasticsearch/Endpoints/Indices/Open.php | 2 +- .../Endpoints/Indices/PromoteDataStream.php | 2 +- .../Endpoints/Indices/PutAlias.php | 2 +- .../Endpoints/Indices/PutIndexTemplate.php | 2 +- .../Endpoints/Indices/PutMapping.php | 2 +- .../Endpoints/Indices/PutSettings.php | 2 +- .../Endpoints/Indices/PutTemplate.php | 2 +- .../Endpoints/Indices/Recovery.php | 2 +- .../Endpoints/Indices/Refresh.php | 2 +- .../Indices/ReloadSearchAnalyzers.php | 2 +- .../Endpoints/Indices/ResolveIndex.php | 2 +- .../Endpoints/Indices/Rollover.php | 2 +- .../Endpoints/Indices/Segments.php | 2 +- .../Endpoints/Indices/ShardStores.php | 2 +- .../Endpoints/Indices/Shrink.php | 2 +- .../Indices/SimulateIndexTemplate.php | 2 +- .../Endpoints/Indices/SimulateTemplate.php | 2 +- src/Elasticsearch/Endpoints/Indices/Split.php | 2 +- src/Elasticsearch/Endpoints/Indices/Stats.php | 2 +- .../Endpoints/Indices/Unfreeze.php | 2 +- .../Endpoints/Indices/UpdateAliases.php | 2 +- .../Endpoints/Indices/Upgrade.php | 2 +- .../Endpoints/Indices/ValidateQuery.php | 2 +- src/Elasticsearch/Endpoints/Info.php | 2 +- .../Endpoints/Ingest/DeletePipeline.php | 2 +- .../Endpoints/Ingest/GeoIpStats.php | 2 +- .../Endpoints/Ingest/GetPipeline.php | 2 +- .../Endpoints/Ingest/ProcessorGrok.php | 2 +- .../Endpoints/Ingest/PutPipeline.php | 2 +- .../Endpoints/Ingest/Simulate.php | 2 +- .../Endpoints/License/Delete.php | 2 +- src/Elasticsearch/Endpoints/License/Get.php | 2 +- .../Endpoints/License/GetBasicStatus.php | 2 +- .../Endpoints/License/GetTrialStatus.php | 2 +- src/Elasticsearch/Endpoints/License/Post.php | 2 +- .../Endpoints/License/PostStartBasic.php | 2 +- .../Endpoints/License/PostStartTrial.php | 2 +- .../Endpoints/Logstash/DeletePipeline.php | 2 +- .../Endpoints/Logstash/GetPipeline.php | 2 +- .../Endpoints/Logstash/PutPipeline.php | 2 +- src/Elasticsearch/Endpoints/MTermVectors.php | 2 +- src/Elasticsearch/Endpoints/Mget.php | 2 +- .../Endpoints/Migration/Deprecations.php | 2 +- src/Elasticsearch/Endpoints/Ml/CloseJob.php | 2 +- .../Endpoints/Ml/DeleteCalendar.php | 2 +- .../Endpoints/Ml/DeleteCalendarEvent.php | 2 +- .../Endpoints/Ml/DeleteCalendarJob.php | 2 +- .../Endpoints/Ml/DeleteDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/DeleteDatafeed.php | 2 +- .../Endpoints/Ml/DeleteExpiredData.php | 2 +- .../Endpoints/Ml/DeleteFilter.php | 2 +- .../Endpoints/Ml/DeleteForecast.php | 2 +- src/Elasticsearch/Endpoints/Ml/DeleteJob.php | 2 +- .../Endpoints/Ml/DeleteModelSnapshot.php | 2 +- .../Endpoints/Ml/DeleteTrainedModel.php | 2 +- .../Endpoints/Ml/DeleteTrainedModelAlias.php | 2 +- .../Endpoints/Ml/EstimateModelMemory.php | 2 +- .../Endpoints/Ml/EvaluateDataFrame.php | 2 +- .../Ml/ExplainDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/FindFileStructure.php | 2 +- src/Elasticsearch/Endpoints/Ml/FlushJob.php | 2 +- src/Elasticsearch/Endpoints/Ml/Forecast.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetBuckets.php | 2 +- .../Endpoints/Ml/GetCalendarEvents.php | 2 +- .../Endpoints/Ml/GetCalendars.php | 2 +- .../Endpoints/Ml/GetCategories.php | 2 +- .../Endpoints/Ml/GetDataFrameAnalytics.php | 2 +- .../Ml/GetDataFrameAnalyticsStats.php | 2 +- .../Endpoints/Ml/GetDatafeedStats.php | 2 +- .../Endpoints/Ml/GetDatafeeds.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetFilters.php | 2 +- .../Endpoints/Ml/GetInfluencers.php | 2 +- .../Endpoints/Ml/GetJobStats.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetJobs.php | 2 +- .../Endpoints/Ml/GetModelSnapshots.php | 2 +- .../Endpoints/Ml/GetOverallBuckets.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetRecords.php | 2 +- .../Endpoints/Ml/GetTrainedModels.php | 2 +- .../Endpoints/Ml/GetTrainedModelsStats.php | 2 +- src/Elasticsearch/Endpoints/Ml/Info.php | 2 +- src/Elasticsearch/Endpoints/Ml/OpenJob.php | 2 +- .../Endpoints/Ml/PostCalendarEvents.php | 2 +- src/Elasticsearch/Endpoints/Ml/PostData.php | 2 +- .../Ml/PreviewDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/PreviewDatafeed.php | 2 +- .../Endpoints/Ml/PutCalendar.php | 2 +- .../Endpoints/Ml/PutCalendarJob.php | 2 +- .../Endpoints/Ml/PutDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/PutDatafeed.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutFilter.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutJob.php | 2 +- .../Endpoints/Ml/PutTrainedModel.php | 6 ++++-- .../Endpoints/Ml/PutTrainedModelAlias.php | 2 +- src/Elasticsearch/Endpoints/Ml/ResetJob.php | 2 +- .../Endpoints/Ml/RevertModelSnapshot.php | 2 +- .../Endpoints/Ml/SetUpgradeMode.php | 2 +- .../Endpoints/Ml/StartDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/StartDatafeed.php | 2 +- .../Endpoints/Ml/StopDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/StopDatafeed.php | 2 +- .../Endpoints/Ml/UpdateDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/UpdateDatafeed.php | 2 +- .../Endpoints/Ml/UpdateFilter.php | 2 +- src/Elasticsearch/Endpoints/Ml/UpdateJob.php | 2 +- .../Endpoints/Ml/UpdateModelSnapshot.php | 2 +- .../Endpoints/Ml/UpgradeJobSnapshot.php | 2 +- src/Elasticsearch/Endpoints/Ml/Validate.php | 2 +- .../Endpoints/Ml/ValidateDetector.php | 2 +- .../Endpoints/Monitoring/Bulk.php | 2 +- src/Elasticsearch/Endpoints/Msearch.php | 2 +- .../Endpoints/MsearchTemplate.php | 2 +- .../ClearRepositoriesMeteringArchive.php | 2 +- .../Nodes/GetRepositoriesMeteringInfo.php | 2 +- .../Endpoints/Nodes/HotThreads.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Info.php | 2 +- .../Endpoints/Nodes/ReloadSecureSettings.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Stats.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Usage.php | 2 +- .../Endpoints/OpenPointInTime.php | 2 +- src/Elasticsearch/Endpoints/Ping.php | 2 +- src/Elasticsearch/Endpoints/PutScript.php | 2 +- src/Elasticsearch/Endpoints/RankEval.php | 2 +- src/Elasticsearch/Endpoints/Reindex.php | 2 +- .../Endpoints/ReindexRethrottle.php | 2 +- .../Endpoints/RenderSearchTemplate.php | 2 +- .../Endpoints/Rollup/DeleteJob.php | 2 +- .../Endpoints/Rollup/GetJobs.php | 2 +- .../Endpoints/Rollup/GetRollupCaps.php | 2 +- .../Endpoints/Rollup/GetRollupIndexCaps.php | 2 +- src/Elasticsearch/Endpoints/Rollup/PutJob.php | 2 +- src/Elasticsearch/Endpoints/Rollup/Rollup.php | 2 +- .../Endpoints/Rollup/RollupSearch.php | 2 +- .../Endpoints/Rollup/StartJob.php | 2 +- .../Endpoints/Rollup/StopJob.php | 2 +- .../Endpoints/ScriptsPainlessExecute.php | 2 +- src/Elasticsearch/Endpoints/Scroll.php | 2 +- src/Elasticsearch/Endpoints/Search.php | 2 +- src/Elasticsearch/Endpoints/SearchMvt.php | 2 +- src/Elasticsearch/Endpoints/SearchShards.php | 2 +- .../Endpoints/SearchTemplate.php | 2 +- .../SearchableSnapshots/CacheStats.php | 2 +- .../SearchableSnapshots/ClearCache.php | 2 +- .../Endpoints/SearchableSnapshots/Mount.php | 2 +- .../SearchableSnapshots/RepositoryStats.php | 2 +- .../Endpoints/SearchableSnapshots/Stats.php | 2 +- .../Endpoints/Security/Authenticate.php | 2 +- .../Endpoints/Security/ChangePassword.php | 2 +- .../Endpoints/Security/ClearApiKeyCache.php | 2 +- .../Security/ClearCachedPrivileges.php | 2 +- .../Endpoints/Security/ClearCachedRealms.php | 2 +- .../Endpoints/Security/ClearCachedRoles.php | 2 +- .../Security/ClearCachedServiceTokens.php | 2 +- .../Endpoints/Security/CreateApiKey.php | 2 +- .../Endpoints/Security/CreateServiceToken.php | 2 +- .../Endpoints/Security/DeletePrivileges.php | 2 +- .../Endpoints/Security/DeleteRole.php | 2 +- .../Endpoints/Security/DeleteRoleMapping.php | 2 +- .../Endpoints/Security/DeleteServiceToken.php | 2 +- .../Endpoints/Security/DeleteUser.php | 2 +- .../Endpoints/Security/DisableUser.php | 2 +- .../Endpoints/Security/EnableUser.php | 2 +- .../Endpoints/Security/GetApiKey.php | 2 +- .../Security/GetBuiltinPrivileges.php | 2 +- .../Endpoints/Security/GetPrivileges.php | 2 +- .../Endpoints/Security/GetRole.php | 2 +- .../Endpoints/Security/GetRoleMapping.php | 2 +- .../Endpoints/Security/GetServiceAccounts.php | 2 +- .../Security/GetServiceCredentials.php | 2 +- .../Endpoints/Security/GetToken.php | 2 +- .../Endpoints/Security/GetUser.php | 2 +- .../Endpoints/Security/GetUserPrivileges.php | 2 +- .../Endpoints/Security/GrantApiKey.php | 2 +- .../Endpoints/Security/HasPrivileges.php | 2 +- .../Endpoints/Security/InvalidateApiKey.php | 2 +- .../Endpoints/Security/InvalidateToken.php | 2 +- .../Endpoints/Security/PutPrivileges.php | 2 +- .../Endpoints/Security/PutRole.php | 2 +- .../Endpoints/Security/PutRoleMapping.php | 2 +- .../Endpoints/Security/PutUser.php | 2 +- .../Endpoints/Security/QueryApiKeys.php | 2 +- .../Endpoints/Security/SamlAuthenticate.php | 2 +- .../Endpoints/Security/SamlCompleteLogout.php | 2 +- .../Endpoints/Security/SamlInvalidate.php | 2 +- .../Endpoints/Security/SamlLogout.php | 2 +- .../Security/SamlPrepareAuthentication.php | 2 +- .../Security/SamlServiceProviderMetadata.php | 2 +- .../Endpoints/Shutdown/DeleteNode.php | 2 +- .../Endpoints/Shutdown/GetNode.php | 2 +- .../Endpoints/Shutdown/PutNode.php | 2 +- .../Endpoints/Slm/DeleteLifecycle.php | 2 +- .../Endpoints/Slm/ExecuteLifecycle.php | 2 +- .../Endpoints/Slm/ExecuteRetention.php | 2 +- .../Endpoints/Slm/GetLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Slm/GetStats.php | 2 +- src/Elasticsearch/Endpoints/Slm/GetStatus.php | 2 +- .../Endpoints/Slm/PutLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Slm/Start.php | 2 +- src/Elasticsearch/Endpoints/Slm/Stop.php | 2 +- .../Endpoints/Snapshot/CleanupRepository.php | 2 +- .../Endpoints/Snapshot/CloneSnapshot.php | 2 +- .../Endpoints/Snapshot/Create.php | 2 +- .../Endpoints/Snapshot/CreateRepository.php | 2 +- .../Endpoints/Snapshot/Delete.php | 2 +- .../Endpoints/Snapshot/DeleteRepository.php | 2 +- src/Elasticsearch/Endpoints/Snapshot/Get.php | 2 +- .../Endpoints/Snapshot/GetRepository.php | 2 +- .../Endpoints/Snapshot/RepositoryAnalyze.php | 2 +- .../Endpoints/Snapshot/Restore.php | 2 +- .../Endpoints/Snapshot/Status.php | 2 +- .../Endpoints/Snapshot/VerifyRepository.php | 2 +- .../Endpoints/Sql/ClearCursor.php | 2 +- .../Endpoints/Sql/DeleteAsync.php | 2 +- src/Elasticsearch/Endpoints/Sql/GetAsync.php | 2 +- .../Endpoints/Sql/GetAsyncStatus.php | 2 +- src/Elasticsearch/Endpoints/Sql/Query.php | 2 +- src/Elasticsearch/Endpoints/Sql/Translate.php | 2 +- .../Endpoints/Ssl/Certificates.php | 2 +- src/Elasticsearch/Endpoints/Tasks/Cancel.php | 2 +- src/Elasticsearch/Endpoints/Tasks/Get.php | 2 +- .../Endpoints/Tasks/ListTasks.php | 2 +- src/Elasticsearch/Endpoints/TermVectors.php | 2 +- src/Elasticsearch/Endpoints/TermsEnum.php | 2 +- .../Endpoints/TextStructure/FindStructure.php | 2 +- .../Endpoints/Transform/DeleteTransform.php | 2 +- .../Endpoints/Transform/GetTransform.php | 2 +- .../Endpoints/Transform/GetTransformStats.php | 2 +- .../Endpoints/Transform/PreviewTransform.php | 19 +++++++++++++++++-- .../Endpoints/Transform/PutTransform.php | 2 +- .../Endpoints/Transform/StartTransform.php | 2 +- .../Endpoints/Transform/StopTransform.php | 2 +- .../Endpoints/Transform/UpdateTransform.php | 2 +- src/Elasticsearch/Endpoints/Update.php | 2 +- src/Elasticsearch/Endpoints/UpdateByQuery.php | 2 +- .../Endpoints/UpdateByQueryRethrottle.php | 2 +- .../Endpoints/Watcher/AckWatch.php | 2 +- .../Endpoints/Watcher/ActivateWatch.php | 2 +- .../Endpoints/Watcher/DeactivateWatch.php | 2 +- .../Endpoints/Watcher/DeleteWatch.php | 2 +- .../Endpoints/Watcher/ExecuteWatch.php | 2 +- .../Endpoints/Watcher/GetWatch.php | 2 +- .../Endpoints/Watcher/PutWatch.php | 2 +- .../Endpoints/Watcher/QueryWatches.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Start.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Stats.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Stop.php | 2 +- src/Elasticsearch/Endpoints/Xpack/Info.php | 2 +- src/Elasticsearch/Endpoints/Xpack/Usage.php | 2 +- .../Namespaces/AsyncSearchNamespace.php | 2 +- .../Namespaces/AutoscalingNamespace.php | 2 +- src/Elasticsearch/Namespaces/CatNamespace.php | 2 +- src/Elasticsearch/Namespaces/CcrNamespace.php | 2 +- .../Namespaces/ClusterNamespace.php | 2 +- .../Namespaces/DanglingIndicesNamespace.php | 2 +- .../DataFrameTransformDeprecatedNamespace.php | 2 +- .../Namespaces/EnrichNamespace.php | 2 +- src/Elasticsearch/Namespaces/EqlNamespace.php | 2 +- .../Namespaces/FeaturesNamespace.php | 2 +- .../Namespaces/FleetNamespace.php | 2 +- .../Namespaces/GraphNamespace.php | 2 +- src/Elasticsearch/Namespaces/IlmNamespace.php | 2 +- .../Namespaces/IndicesNamespace.php | 2 +- .../Namespaces/IngestNamespace.php | 2 +- .../Namespaces/LicenseNamespace.php | 2 +- .../Namespaces/LogstashNamespace.php | 2 +- .../Namespaces/MigrationNamespace.php | 2 +- src/Elasticsearch/Namespaces/MlNamespace.php | 7 ++++--- .../Namespaces/MonitoringNamespace.php | 2 +- .../Namespaces/NodesNamespace.php | 2 +- .../Namespaces/RollupNamespace.php | 2 +- .../SearchableSnapshotsNamespace.php | 2 +- .../Namespaces/SecurityNamespace.php | 2 +- .../Namespaces/ShutdownNamespace.php | 2 +- src/Elasticsearch/Namespaces/SlmNamespace.php | 2 +- .../Namespaces/SnapshotNamespace.php | 2 +- src/Elasticsearch/Namespaces/SqlNamespace.php | 2 +- src/Elasticsearch/Namespaces/SslNamespace.php | 2 +- .../Namespaces/TasksNamespace.php | 2 +- .../Namespaces/TextStructureNamespace.php | 2 +- .../Namespaces/TransformNamespace.php | 7 +++++-- .../Namespaces/WatcherNamespace.php | 2 +- .../Namespaces/XpackNamespace.php | 2 +- 431 files changed, 458 insertions(+), 437 deletions(-) diff --git a/src/Elasticsearch/Client.php b/src/Elasticsearch/Client.php index 9373b1363..9e597ae61 100644 --- a/src/Elasticsearch/Client.php +++ b/src/Elasticsearch/Client.php @@ -65,11 +65,11 @@ * Class Client * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.x-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Client { - const VERSION = '7.x-SNAPSHOT'; + const VERSION = '7.16.0-SNAPSHOT'; /** * @var Transport diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php b/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php index d038ecfd5..32ea1937e 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Get.php b/src/Elasticsearch/Endpoints/AsyncSearch/Get.php index a543f4728..9ef8f6ca9 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Get.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Status.php b/src/Elasticsearch/Endpoints/AsyncSearch/Status.php index 5e77474e4..694227540 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Status.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Status.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Status extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php b/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php index 773832af2..457ea95bb 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php @@ -23,7 +23,7 @@ * Elasticsearch API name async_search.submit * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Submit extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php index a4f1041e1..038d052ae 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.delete_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php index cc83f0044..eb77864fb 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php @@ -23,7 +23,7 @@ * Elasticsearch API name autoscaling.get_autoscaling_capacity * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetAutoscalingCapacity extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php index 44b83e76b..d909868f4 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.get_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php index ff56880e3..ba00dad0d 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.put_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Bulk.php b/src/Elasticsearch/Endpoints/Bulk.php index 9ad83f019..d2eb32207 100644 --- a/src/Elasticsearch/Endpoints/Bulk.php +++ b/src/Elasticsearch/Endpoints/Bulk.php @@ -26,7 +26,7 @@ * Elasticsearch API name bulk * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Bulk extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Aliases.php b/src/Elasticsearch/Endpoints/Cat/Aliases.php index 91ccd16cd..7be520ae7 100644 --- a/src/Elasticsearch/Endpoints/Cat/Aliases.php +++ b/src/Elasticsearch/Endpoints/Cat/Aliases.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.aliases * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Aliases extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Allocation.php b/src/Elasticsearch/Endpoints/Cat/Allocation.php index 5b9a63193..0e7a2fd2b 100644 --- a/src/Elasticsearch/Endpoints/Cat/Allocation.php +++ b/src/Elasticsearch/Endpoints/Cat/Allocation.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.allocation * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Allocation extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Count.php b/src/Elasticsearch/Endpoints/Cat/Count.php index bc30c580f..246badd99 100644 --- a/src/Elasticsearch/Endpoints/Cat/Count.php +++ b/src/Elasticsearch/Endpoints/Cat/Count.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.count * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Count extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Fielddata.php b/src/Elasticsearch/Endpoints/Cat/Fielddata.php index 0bab08169..e2a6b2646 100644 --- a/src/Elasticsearch/Endpoints/Cat/Fielddata.php +++ b/src/Elasticsearch/Endpoints/Cat/Fielddata.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.fielddata * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Fielddata extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Health.php b/src/Elasticsearch/Endpoints/Cat/Health.php index f6b9bb1f1..0e6020d1c 100644 --- a/src/Elasticsearch/Endpoints/Cat/Health.php +++ b/src/Elasticsearch/Endpoints/Cat/Health.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.health * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Health extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Help.php b/src/Elasticsearch/Endpoints/Cat/Help.php index e64220b5f..5e5220799 100644 --- a/src/Elasticsearch/Endpoints/Cat/Help.php +++ b/src/Elasticsearch/Endpoints/Cat/Help.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.help * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Help extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Indices.php b/src/Elasticsearch/Endpoints/Cat/Indices.php index b8b282a66..db03f3839 100644 --- a/src/Elasticsearch/Endpoints/Cat/Indices.php +++ b/src/Elasticsearch/Endpoints/Cat/Indices.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.indices * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Indices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Master.php b/src/Elasticsearch/Endpoints/Cat/Master.php index 15a449eb6..e0e0fac6d 100644 --- a/src/Elasticsearch/Endpoints/Cat/Master.php +++ b/src/Elasticsearch/Endpoints/Cat/Master.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.master * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Master extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php index a8c5ecc8d..709851180 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class MlDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php b/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php index cf52a3aab..83b89e21c 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php +++ b/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_datafeeds * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class MlDatafeeds extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlJobs.php b/src/Elasticsearch/Endpoints/Cat/MlJobs.php index 6de7fbee5..393c7b867 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlJobs.php +++ b/src/Elasticsearch/Endpoints/Cat/MlJobs.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_jobs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class MlJobs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php b/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php index 4c49de11c..8a66c1078 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php +++ b/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_trained_models * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class MlTrainedModels extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php b/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php index fa952254a..2d37d4a88 100644 --- a/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php +++ b/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.nodeattrs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class NodeAttrs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Nodes.php b/src/Elasticsearch/Endpoints/Cat/Nodes.php index f4cbb74cc..df3696890 100644 --- a/src/Elasticsearch/Endpoints/Cat/Nodes.php +++ b/src/Elasticsearch/Endpoints/Cat/Nodes.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.nodes * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Nodes extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/PendingTasks.php b/src/Elasticsearch/Endpoints/Cat/PendingTasks.php index 6a14dad6a..450c672ef 100644 --- a/src/Elasticsearch/Endpoints/Cat/PendingTasks.php +++ b/src/Elasticsearch/Endpoints/Cat/PendingTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.pending_tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PendingTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Plugins.php b/src/Elasticsearch/Endpoints/Cat/Plugins.php index 148d6c6f6..bbc96eba8 100644 --- a/src/Elasticsearch/Endpoints/Cat/Plugins.php +++ b/src/Elasticsearch/Endpoints/Cat/Plugins.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.plugins * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Plugins extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Recovery.php b/src/Elasticsearch/Endpoints/Cat/Recovery.php index 0653eb427..e82140a33 100644 --- a/src/Elasticsearch/Endpoints/Cat/Recovery.php +++ b/src/Elasticsearch/Endpoints/Cat/Recovery.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.recovery * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Recovery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Repositories.php b/src/Elasticsearch/Endpoints/Cat/Repositories.php index 97e679245..1b8171c45 100644 --- a/src/Elasticsearch/Endpoints/Cat/Repositories.php +++ b/src/Elasticsearch/Endpoints/Cat/Repositories.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.repositories * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Repositories extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Segments.php b/src/Elasticsearch/Endpoints/Cat/Segments.php index 1117decba..60bbc02a3 100644 --- a/src/Elasticsearch/Endpoints/Cat/Segments.php +++ b/src/Elasticsearch/Endpoints/Cat/Segments.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.segments * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Segments extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Shards.php b/src/Elasticsearch/Endpoints/Cat/Shards.php index 5e9495cdd..60f61727a 100644 --- a/src/Elasticsearch/Endpoints/Cat/Shards.php +++ b/src/Elasticsearch/Endpoints/Cat/Shards.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.shards * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Shards extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Snapshots.php b/src/Elasticsearch/Endpoints/Cat/Snapshots.php index d4e4ebf79..951eab6a3 100644 --- a/src/Elasticsearch/Endpoints/Cat/Snapshots.php +++ b/src/Elasticsearch/Endpoints/Cat/Snapshots.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.snapshots * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Snapshots extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Tasks.php b/src/Elasticsearch/Endpoints/Cat/Tasks.php index 6e519f2b1..fa18c1ffb 100644 --- a/src/Elasticsearch/Endpoints/Cat/Tasks.php +++ b/src/Elasticsearch/Endpoints/Cat/Tasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Tasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Templates.php b/src/Elasticsearch/Endpoints/Cat/Templates.php index e1eee797d..d291e475a 100644 --- a/src/Elasticsearch/Endpoints/Cat/Templates.php +++ b/src/Elasticsearch/Endpoints/Cat/Templates.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.templates * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Templates extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/ThreadPool.php b/src/Elasticsearch/Endpoints/Cat/ThreadPool.php index 7ca821405..69454b334 100644 --- a/src/Elasticsearch/Endpoints/Cat/ThreadPool.php +++ b/src/Elasticsearch/Endpoints/Cat/ThreadPool.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.thread_pool * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ThreadPool extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Transforms.php b/src/Elasticsearch/Endpoints/Cat/Transforms.php index ba216b53a..a18512375 100644 --- a/src/Elasticsearch/Endpoints/Cat/Transforms.php +++ b/src/Elasticsearch/Endpoints/Cat/Transforms.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.transforms * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Transforms extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php index 9b712180a..cfe6f4b44 100644 --- a/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.delete_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Follow.php b/src/Elasticsearch/Endpoints/Ccr/Follow.php index d02c84c70..3d8f1df07 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Follow.php +++ b/src/Elasticsearch/Endpoints/Ccr/Follow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Follow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php b/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php index 2b050cb95..04c72b7de 100644 --- a/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php +++ b/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow_info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class FollowInfo extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/FollowStats.php b/src/Elasticsearch/Endpoints/Ccr/FollowStats.php index b665d3eb0..b83bad938 100644 --- a/src/Elasticsearch/Endpoints/Ccr/FollowStats.php +++ b/src/Elasticsearch/Endpoints/Ccr/FollowStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class FollowStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php b/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php index 6cd09b2a5..a1d43e96f 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php +++ b/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.forget_follower * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ForgetFollower extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php index 6a8bf9993..fca729de2 100644 --- a/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php @@ -23,7 +23,7 @@ * Elasticsearch API name ccr.get_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php index df9de7e2e..969e19daa 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.pause_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PauseAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php b/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php index 43b704ca1..0092992ee 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.pause_follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PauseFollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php index 5e6bd5a48..b950986e0 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.put_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php index 4d8da27b6..790eb86bf 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.resume_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ResumeAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php b/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php index a2cfbad98..6ca61bd4d 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.resume_follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ResumeFollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Stats.php b/src/Elasticsearch/Endpoints/Ccr/Stats.php index a23857aae..63dda1b34 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Stats.php +++ b/src/Elasticsearch/Endpoints/Ccr/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ccr.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Unfollow.php b/src/Elasticsearch/Endpoints/Ccr/Unfollow.php index 137f7a8b2..eb8c0fb4a 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Unfollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/Unfollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.unfollow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Unfollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ClearScroll.php b/src/Elasticsearch/Endpoints/ClearScroll.php index 87c00d6df..151b672dc 100644 --- a/src/Elasticsearch/Endpoints/ClearScroll.php +++ b/src/Elasticsearch/Endpoints/ClearScroll.php @@ -23,7 +23,7 @@ * Elasticsearch API name clear_scroll * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ClearScroll extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ClosePointInTime.php b/src/Elasticsearch/Endpoints/ClosePointInTime.php index 74aa1da2a..07db3824b 100644 --- a/src/Elasticsearch/Endpoints/ClosePointInTime.php +++ b/src/Elasticsearch/Endpoints/ClosePointInTime.php @@ -23,7 +23,7 @@ * Elasticsearch API name close_point_in_time * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ClosePointInTime extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php b/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php index 441e48d5e..ad81ef07a 100644 --- a/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php +++ b/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.allocation_explain * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class AllocationExplain extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php index e2b3ce4e1..7cb57a18b 100644 --- a/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.delete_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php b/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php index 6ab9c5ad8..cdf79d167 100644 --- a/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php +++ b/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.delete_voting_config_exclusions * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteVotingConfigExclusions extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php index a95bc01a2..17f96eeeb 100644 --- a/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.exists_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ExistsComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php index d463cbe59..251405e00 100644 --- a/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.get_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/GetSettings.php b/src/Elasticsearch/Endpoints/Cluster/GetSettings.php index 61b781d31..032d46c06 100644 --- a/src/Elasticsearch/Endpoints/Cluster/GetSettings.php +++ b/src/Elasticsearch/Endpoints/Cluster/GetSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.get_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Health.php b/src/Elasticsearch/Endpoints/Cluster/Health.php index 1d6d1f809..1f59cf86d 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Health.php +++ b/src/Elasticsearch/Endpoints/Cluster/Health.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.health * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Health extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php b/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php index 0192ba7e2..f4566a209 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php +++ b/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.pending_tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PendingTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php b/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php index 15767af8b..f6b61add8 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php +++ b/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.post_voting_config_exclusions * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PostVotingConfigExclusions extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php index 1dc3d2f12..5afa56fb2 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.put_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PutSettings.php b/src/Elasticsearch/Endpoints/Cluster/PutSettings.php index 324de45d9..ee2d54992 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PutSettings.php +++ b/src/Elasticsearch/Endpoints/Cluster/PutSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.put_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php b/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php index 68cee3eda..78394e280 100644 --- a/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php +++ b/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.remote_info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class RemoteInfo extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Reroute.php b/src/Elasticsearch/Endpoints/Cluster/Reroute.php index ea2bbf242..87c04505c 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Reroute.php +++ b/src/Elasticsearch/Endpoints/Cluster/Reroute.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.reroute * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Reroute extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/State.php b/src/Elasticsearch/Endpoints/Cluster/State.php index 3cf00eeb1..48d6d5cf3 100644 --- a/src/Elasticsearch/Endpoints/Cluster/State.php +++ b/src/Elasticsearch/Endpoints/Cluster/State.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.state * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class State extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Stats.php b/src/Elasticsearch/Endpoints/Cluster/Stats.php index 5b25d8d09..6c0e02402 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Stats.php +++ b/src/Elasticsearch/Endpoints/Cluster/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Count.php b/src/Elasticsearch/Endpoints/Count.php index 0fb6ad6bc..f387ab8bb 100644 --- a/src/Elasticsearch/Endpoints/Count.php +++ b/src/Elasticsearch/Endpoints/Count.php @@ -23,7 +23,7 @@ * Elasticsearch API name count * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Count extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Create.php b/src/Elasticsearch/Endpoints/Create.php index a167b7b48..42646308a 100644 --- a/src/Elasticsearch/Endpoints/Create.php +++ b/src/Elasticsearch/Endpoints/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php b/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php index 365069b1e..4be020c82 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name dangling_indices.delete_dangling_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteDanglingIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php b/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php index 283ac8e34..42f034232 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name dangling_indices.import_dangling_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ImportDanglingIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php b/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php index 4e46401ce..efb191b60 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php @@ -23,7 +23,7 @@ * Elasticsearch API name dangling_indices.list_dangling_indices * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ListDanglingIndices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php index bd0e26da5..eee92c3d9 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.delete_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php index 458183d68..8dd047137 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name data_frame_transform_deprecated.get_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php index 83eb237c8..2ab7d3db4 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.get_transform_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetTransformStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php index 6b6858b99..d70f877ab 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name data_frame_transform_deprecated.preview_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PreviewTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php index 70bdfb380..92625943f 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.put_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php index f62e3b89c..b05533318 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.start_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class StartTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php index 00550ca78..b9c6bc0f3 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.stop_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class StopTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php index ba61b6133..625142305 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.update_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class UpdateTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Delete.php b/src/Elasticsearch/Endpoints/Delete.php index 74e4980a7..cce426a4f 100644 --- a/src/Elasticsearch/Endpoints/Delete.php +++ b/src/Elasticsearch/Endpoints/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteByQuery.php b/src/Elasticsearch/Endpoints/DeleteByQuery.php index 63580fb25..2cc845871 100644 --- a/src/Elasticsearch/Endpoints/DeleteByQuery.php +++ b/src/Elasticsearch/Endpoints/DeleteByQuery.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_by_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteByQuery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php b/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php index 8884c09d4..a7fc6a904 100644 --- a/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php +++ b/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_by_query_rethrottle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteByQueryRethrottle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteScript.php b/src/Elasticsearch/Endpoints/DeleteScript.php index 0cd1f2317..eeed576ed 100644 --- a/src/Elasticsearch/Endpoints/DeleteScript.php +++ b/src/Elasticsearch/Endpoints/DeleteScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php b/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php index d5653db95..b6c1e26dc 100644 --- a/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.delete_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeletePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php b/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php index cfeac770c..88bbf5b63 100644 --- a/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.execute_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ExecutePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php b/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php index 33f0171ec..21a199f62 100644 --- a/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php @@ -23,7 +23,7 @@ * Elasticsearch API name enrich.get_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php b/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php index b1f64a4c2..cd6a795e5 100644 --- a/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.put_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/Stats.php b/src/Elasticsearch/Endpoints/Enrich/Stats.php index ef36bee0f..2b4c00df8 100644 --- a/src/Elasticsearch/Endpoints/Enrich/Stats.php +++ b/src/Elasticsearch/Endpoints/Enrich/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name enrich.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Delete.php b/src/Elasticsearch/Endpoints/Eql/Delete.php index b46769f7f..877b0fec1 100644 --- a/src/Elasticsearch/Endpoints/Eql/Delete.php +++ b/src/Elasticsearch/Endpoints/Eql/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Get.php b/src/Elasticsearch/Endpoints/Eql/Get.php index 2f8809a46..0860d86e1 100644 --- a/src/Elasticsearch/Endpoints/Eql/Get.php +++ b/src/Elasticsearch/Endpoints/Eql/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/GetStatus.php b/src/Elasticsearch/Endpoints/Eql/GetStatus.php index ba073630e..9c2987cf4 100644 --- a/src/Elasticsearch/Endpoints/Eql/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Eql/GetStatus.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Search.php b/src/Elasticsearch/Endpoints/Eql/Search.php index 834aca088..585678341 100644 --- a/src/Elasticsearch/Endpoints/Eql/Search.php +++ b/src/Elasticsearch/Endpoints/Eql/Search.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Search extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Exists.php b/src/Elasticsearch/Endpoints/Exists.php index 52f2c3afc..d136f0717 100644 --- a/src/Elasticsearch/Endpoints/Exists.php +++ b/src/Elasticsearch/Endpoints/Exists.php @@ -24,7 +24,7 @@ * Elasticsearch API name exists * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Exists extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ExistsSource.php b/src/Elasticsearch/Endpoints/ExistsSource.php index 96d5d272b..2c069aafa 100644 --- a/src/Elasticsearch/Endpoints/ExistsSource.php +++ b/src/Elasticsearch/Endpoints/ExistsSource.php @@ -24,7 +24,7 @@ * Elasticsearch API name exists_source * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ExistsSource extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Explain.php b/src/Elasticsearch/Endpoints/Explain.php index 128503c2b..f94132e17 100644 --- a/src/Elasticsearch/Endpoints/Explain.php +++ b/src/Elasticsearch/Endpoints/Explain.php @@ -24,7 +24,7 @@ * Elasticsearch API name explain * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Explain extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Features/GetFeatures.php b/src/Elasticsearch/Endpoints/Features/GetFeatures.php index 8f1c70125..081609fe8 100644 --- a/src/Elasticsearch/Endpoints/Features/GetFeatures.php +++ b/src/Elasticsearch/Endpoints/Features/GetFeatures.php @@ -23,7 +23,7 @@ * Elasticsearch API name features.get_features * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetFeatures extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Features/ResetFeatures.php b/src/Elasticsearch/Endpoints/Features/ResetFeatures.php index 0d1633b56..ee9682401 100644 --- a/src/Elasticsearch/Endpoints/Features/ResetFeatures.php +++ b/src/Elasticsearch/Endpoints/Features/ResetFeatures.php @@ -23,7 +23,7 @@ * Elasticsearch API name features.reset_features * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ResetFeatures extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/FieldCaps.php b/src/Elasticsearch/Endpoints/FieldCaps.php index 49f91f5c4..a05341503 100644 --- a/src/Elasticsearch/Endpoints/FieldCaps.php +++ b/src/Elasticsearch/Endpoints/FieldCaps.php @@ -23,7 +23,7 @@ * Elasticsearch API name field_caps * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class FieldCaps extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php b/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php index b565c8ecc..0c4021f2d 100644 --- a/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php +++ b/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php @@ -24,7 +24,7 @@ * Elasticsearch API name fleet.global_checkpoints * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GlobalCheckpoints extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Get.php b/src/Elasticsearch/Endpoints/Get.php index 4beea66b0..5a25492c9 100644 --- a/src/Elasticsearch/Endpoints/Get.php +++ b/src/Elasticsearch/Endpoints/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScript.php b/src/Elasticsearch/Endpoints/GetScript.php index f618e3717..5d0399d76 100644 --- a/src/Elasticsearch/Endpoints/GetScript.php +++ b/src/Elasticsearch/Endpoints/GetScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name get_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScriptContext.php b/src/Elasticsearch/Endpoints/GetScriptContext.php index dca5c44ff..f037aa749 100644 --- a/src/Elasticsearch/Endpoints/GetScriptContext.php +++ b/src/Elasticsearch/Endpoints/GetScriptContext.php @@ -23,7 +23,7 @@ * Elasticsearch API name get_script_context * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetScriptContext extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScriptLanguages.php b/src/Elasticsearch/Endpoints/GetScriptLanguages.php index c9935187d..cba72ea33 100644 --- a/src/Elasticsearch/Endpoints/GetScriptLanguages.php +++ b/src/Elasticsearch/Endpoints/GetScriptLanguages.php @@ -23,7 +23,7 @@ * Elasticsearch API name get_script_languages * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetScriptLanguages extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetSource.php b/src/Elasticsearch/Endpoints/GetSource.php index d2e9081b2..816556d5f 100644 --- a/src/Elasticsearch/Endpoints/GetSource.php +++ b/src/Elasticsearch/Endpoints/GetSource.php @@ -24,7 +24,7 @@ * Elasticsearch API name get_source * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetSource extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Graph/Explore.php b/src/Elasticsearch/Endpoints/Graph/Explore.php index 244091c25..00d039e33 100644 --- a/src/Elasticsearch/Endpoints/Graph/Explore.php +++ b/src/Elasticsearch/Endpoints/Graph/Explore.php @@ -24,7 +24,7 @@ * Elasticsearch API name graph.explore * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Explore extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php index e258a87ae..c671dc607 100644 --- a/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.delete_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php index c4613aea4..5cdba848c 100644 --- a/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.explain_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ExplainLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php index d5b1f1dc1..8644bd8a9 100644 --- a/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.get_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/GetStatus.php b/src/Elasticsearch/Endpoints/Ilm/GetStatus.php index 325ef6d01..12a93f694 100644 --- a/src/Elasticsearch/Endpoints/Ilm/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Ilm/GetStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php b/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php index b8b6dcbf5..3b6326c67 100644 --- a/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php +++ b/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.migrate_to_data_tiers * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class MigrateToDataTiers extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php b/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php index f9f4027e1..1f761070b 100644 --- a/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php +++ b/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.move_to_step * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class MoveToStep extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php index 9597fc461..bb854ab0b 100644 --- a/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.put_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php b/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php index 63dfccd72..0df17fd82 100644 --- a/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php +++ b/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.remove_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class RemovePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Retry.php b/src/Elasticsearch/Endpoints/Ilm/Retry.php index 9d0a46b40..22788f69d 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Retry.php +++ b/src/Elasticsearch/Endpoints/Ilm/Retry.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.retry * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Retry extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Start.php b/src/Elasticsearch/Endpoints/Ilm/Start.php index ed3dac03a..a37cae849 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Start.php +++ b/src/Elasticsearch/Endpoints/Ilm/Start.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.start * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Start extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Stop.php b/src/Elasticsearch/Endpoints/Ilm/Stop.php index 3f2527e91..bd6981dfd 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Stop.php +++ b/src/Elasticsearch/Endpoints/Ilm/Stop.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.stop * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Stop extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Index.php b/src/Elasticsearch/Endpoints/Index.php index 9fa7e497e..775322f4f 100644 --- a/src/Elasticsearch/Endpoints/Index.php +++ b/src/Elasticsearch/Endpoints/Index.php @@ -24,7 +24,7 @@ * Elasticsearch API name index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Index extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/AddBlock.php b/src/Elasticsearch/Endpoints/Indices/AddBlock.php index a597eaee2..c1a4d867c 100644 --- a/src/Elasticsearch/Endpoints/Indices/AddBlock.php +++ b/src/Elasticsearch/Endpoints/Indices/AddBlock.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.add_block * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class AddBlock extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Analyze.php b/src/Elasticsearch/Endpoints/Indices/Analyze.php index 999f5570d..33863a365 100644 --- a/src/Elasticsearch/Endpoints/Indices/Analyze.php +++ b/src/Elasticsearch/Endpoints/Indices/Analyze.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.analyze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Analyze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ClearCache.php b/src/Elasticsearch/Endpoints/Indices/ClearCache.php index d44648148..f9ac17144 100644 --- a/src/Elasticsearch/Endpoints/Indices/ClearCache.php +++ b/src/Elasticsearch/Endpoints/Indices/ClearCache.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.clear_cache * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ClearCache extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/CloneIndices.php b/src/Elasticsearch/Endpoints/Indices/CloneIndices.php index f4b568d7b..43f32e203 100644 --- a/src/Elasticsearch/Endpoints/Indices/CloneIndices.php +++ b/src/Elasticsearch/Endpoints/Indices/CloneIndices.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.clone * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class CloneIndices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Close.php b/src/Elasticsearch/Endpoints/Indices/Close.php index fa8b756b1..e738251a7 100644 --- a/src/Elasticsearch/Endpoints/Indices/Close.php +++ b/src/Elasticsearch/Endpoints/Indices/Close.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.close * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Close extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Create.php b/src/Elasticsearch/Endpoints/Indices/Create.php index 8df4a83a4..d7d73d3d6 100644 --- a/src/Elasticsearch/Endpoints/Indices/Create.php +++ b/src/Elasticsearch/Endpoints/Indices/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php b/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php index e1fb3d21a..b3718f7f2 100644 --- a/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.create_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class CreateDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php b/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php index a148609fe..e3bc82a2d 100644 --- a/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php +++ b/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.data_streams_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DataStreamsStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Delete.php b/src/Elasticsearch/Endpoints/Indices/Delete.php index ba21368c5..5fa06ca40 100644 --- a/src/Elasticsearch/Endpoints/Indices/Delete.php +++ b/src/Elasticsearch/Endpoints/Indices/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php b/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php index fa79b18ea..ae2225bfd 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php b/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php index ae4566e06..a01778d96 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php index 882c320a6..43153d43c 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php b/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php index 7df2a8cb4..e4f46699c 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DiskUsage.php b/src/Elasticsearch/Endpoints/Indices/DiskUsage.php index c97cd22fb..bebe62d5d 100644 --- a/src/Elasticsearch/Endpoints/Indices/DiskUsage.php +++ b/src/Elasticsearch/Endpoints/Indices/DiskUsage.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.disk_usage * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DiskUsage extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Exists.php b/src/Elasticsearch/Endpoints/Indices/Exists.php index 667b40817..43610277a 100644 --- a/src/Elasticsearch/Endpoints/Indices/Exists.php +++ b/src/Elasticsearch/Endpoints/Indices/Exists.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Exists extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php b/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php index bb3adeeea..167e32b43 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ExistsAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php index 5bc43a5bc..1686fc726 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ExistsIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php b/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php index 984afd972..b74938e6d 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ExistsTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsType.php b/src/Elasticsearch/Endpoints/Indices/ExistsType.php index 66870c5ac..28ece325d 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsType.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsType.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_type * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ExistsType extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php b/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php index 6da299f99..24a0542d7 100644 --- a/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php +++ b/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.field_usage_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class FieldUsageStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Flush.php b/src/Elasticsearch/Endpoints/Indices/Flush.php index 98bcb85af..ea6d3cfd9 100644 --- a/src/Elasticsearch/Endpoints/Indices/Flush.php +++ b/src/Elasticsearch/Endpoints/Indices/Flush.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.flush * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Flush extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/FlushSynced.php b/src/Elasticsearch/Endpoints/Indices/FlushSynced.php index 4d614ff62..d1a7af4dd 100644 --- a/src/Elasticsearch/Endpoints/Indices/FlushSynced.php +++ b/src/Elasticsearch/Endpoints/Indices/FlushSynced.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.flush_synced * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class FlushSynced extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ForceMerge.php b/src/Elasticsearch/Endpoints/Indices/ForceMerge.php index c783808f1..c1a8e82a4 100644 --- a/src/Elasticsearch/Endpoints/Indices/ForceMerge.php +++ b/src/Elasticsearch/Endpoints/Indices/ForceMerge.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.forcemerge * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ForceMerge extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Freeze.php b/src/Elasticsearch/Endpoints/Indices/Freeze.php index 496598dd1..57b244217 100644 --- a/src/Elasticsearch/Endpoints/Indices/Freeze.php +++ b/src/Elasticsearch/Endpoints/Indices/Freeze.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.freeze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Freeze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Get.php b/src/Elasticsearch/Endpoints/Indices/Get.php index b4acabb8e..2fde882dc 100644 --- a/src/Elasticsearch/Endpoints/Indices/Get.php +++ b/src/Elasticsearch/Endpoints/Indices/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetAlias.php b/src/Elasticsearch/Endpoints/Indices/GetAlias.php index 1e3f05004..6108a339a 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/GetAlias.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetDataStream.php b/src/Elasticsearch/Endpoints/Indices/GetDataStream.php index 12989a1dd..277d35ed6 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/GetDataStream.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php b/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php index ce998e324..4e37481da 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.get_field_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetFieldMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php index 431705ed2..6a0605a1b 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetMapping.php b/src/Elasticsearch/Endpoints/Indices/GetMapping.php index 6f8b5b273..c1084158f 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/GetMapping.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetSettings.php b/src/Elasticsearch/Endpoints/Indices/GetSettings.php index a29ded2f7..e5648af94 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetSettings.php +++ b/src/Elasticsearch/Endpoints/Indices/GetSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetTemplate.php b/src/Elasticsearch/Endpoints/Indices/GetTemplate.php index 7a8cfe7c1..02d4b8216 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/GetTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php b/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php index d52d65863..324bf26ce 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php +++ b/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_upgrade * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetUpgrade extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php b/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php index ebfcdac29..da7284687 100644 --- a/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.migrate_to_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class MigrateToDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Open.php b/src/Elasticsearch/Endpoints/Indices/Open.php index 1c1486cb7..e76198944 100644 --- a/src/Elasticsearch/Endpoints/Indices/Open.php +++ b/src/Elasticsearch/Endpoints/Indices/Open.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.open * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Open extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php b/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php index 4d6ada995..adc53578b 100644 --- a/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.promote_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PromoteDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutAlias.php b/src/Elasticsearch/Endpoints/Indices/PutAlias.php index af5d88ff6..9e777e3cc 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/PutAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php index 6e1e6020c..26842eb94 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutMapping.php b/src/Elasticsearch/Endpoints/Indices/PutMapping.php index 9522fd1be..935f80759 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/PutMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutSettings.php b/src/Elasticsearch/Endpoints/Indices/PutSettings.php index 54c5dd83f..6afa1bff7 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutSettings.php +++ b/src/Elasticsearch/Endpoints/Indices/PutSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.put_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutTemplate.php b/src/Elasticsearch/Endpoints/Indices/PutTemplate.php index 220eab194..4319cf1d2 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/PutTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Recovery.php b/src/Elasticsearch/Endpoints/Indices/Recovery.php index 5514f5804..3f7eefbb5 100644 --- a/src/Elasticsearch/Endpoints/Indices/Recovery.php +++ b/src/Elasticsearch/Endpoints/Indices/Recovery.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.recovery * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Recovery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Refresh.php b/src/Elasticsearch/Endpoints/Indices/Refresh.php index d9a9909e9..3133e05e2 100644 --- a/src/Elasticsearch/Endpoints/Indices/Refresh.php +++ b/src/Elasticsearch/Endpoints/Indices/Refresh.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.refresh * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Refresh extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php b/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php index 516e98f76..ef936c683 100644 --- a/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php +++ b/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.reload_search_analyzers * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ReloadSearchAnalyzers extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php b/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php index f19c391b0..8dde9d094 100644 --- a/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php +++ b/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.resolve_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ResolveIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Rollover.php b/src/Elasticsearch/Endpoints/Indices/Rollover.php index 4fd4b27be..9d3c079bf 100644 --- a/src/Elasticsearch/Endpoints/Indices/Rollover.php +++ b/src/Elasticsearch/Endpoints/Indices/Rollover.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.rollover * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Rollover extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Segments.php b/src/Elasticsearch/Endpoints/Indices/Segments.php index 24ab75f54..caa2864ef 100644 --- a/src/Elasticsearch/Endpoints/Indices/Segments.php +++ b/src/Elasticsearch/Endpoints/Indices/Segments.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.segments * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Segments extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ShardStores.php b/src/Elasticsearch/Endpoints/Indices/ShardStores.php index 77c95fd97..9fa88a891 100644 --- a/src/Elasticsearch/Endpoints/Indices/ShardStores.php +++ b/src/Elasticsearch/Endpoints/Indices/ShardStores.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.shard_stores * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ShardStores extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Shrink.php b/src/Elasticsearch/Endpoints/Indices/Shrink.php index 414bc2ee1..b31ecc274 100644 --- a/src/Elasticsearch/Endpoints/Indices/Shrink.php +++ b/src/Elasticsearch/Endpoints/Indices/Shrink.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.shrink * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Shrink extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php index d2d4cb4b5..135dc7907 100644 --- a/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.simulate_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class SimulateIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php b/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php index 475a18608..b2ed71827 100644 --- a/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.simulate_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class SimulateTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Split.php b/src/Elasticsearch/Endpoints/Indices/Split.php index d56c3ba2f..d9734551c 100644 --- a/src/Elasticsearch/Endpoints/Indices/Split.php +++ b/src/Elasticsearch/Endpoints/Indices/Split.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.split * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Split extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Stats.php b/src/Elasticsearch/Endpoints/Indices/Stats.php index bf9cb627d..e04563fc7 100644 --- a/src/Elasticsearch/Endpoints/Indices/Stats.php +++ b/src/Elasticsearch/Endpoints/Indices/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Unfreeze.php b/src/Elasticsearch/Endpoints/Indices/Unfreeze.php index 98021fca7..3e9a6f077 100644 --- a/src/Elasticsearch/Endpoints/Indices/Unfreeze.php +++ b/src/Elasticsearch/Endpoints/Indices/Unfreeze.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.unfreeze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Unfreeze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php b/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php index 5ace7ed96..0176b5d60 100644 --- a/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php +++ b/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.update_aliases * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class UpdateAliases extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Upgrade.php b/src/Elasticsearch/Endpoints/Indices/Upgrade.php index 0eb155810..acd400930 100644 --- a/src/Elasticsearch/Endpoints/Indices/Upgrade.php +++ b/src/Elasticsearch/Endpoints/Indices/Upgrade.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.upgrade * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Upgrade extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php b/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php index e7b597b5c..8bd128c5e 100644 --- a/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php +++ b/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.validate_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ValidateQuery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Info.php b/src/Elasticsearch/Endpoints/Info.php index 7df605651..3fcf1595c 100644 --- a/src/Elasticsearch/Endpoints/Info.php +++ b/src/Elasticsearch/Endpoints/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php b/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php index e9a6224ba..9f4f7bfd4 100644 --- a/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name ingest.delete_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeletePipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php b/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php index 3c767a393..2e5c1ede0 100644 --- a/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php +++ b/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.geo_ip_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GeoIpStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php b/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php index d371eac47..fad561f1d 100644 --- a/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.get_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php b/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php index b6241debf..e54258bc3 100644 --- a/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php +++ b/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.processor_grok * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ProcessorGrok extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php b/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php index c6b41a191..f93f92beb 100644 --- a/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name ingest.put_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/Simulate.php b/src/Elasticsearch/Endpoints/Ingest/Simulate.php index ce167b337..539730370 100644 --- a/src/Elasticsearch/Endpoints/Ingest/Simulate.php +++ b/src/Elasticsearch/Endpoints/Ingest/Simulate.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.simulate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Simulate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Delete.php b/src/Elasticsearch/Endpoints/License/Delete.php index 80616ab94..dbe018414 100644 --- a/src/Elasticsearch/Endpoints/License/Delete.php +++ b/src/Elasticsearch/Endpoints/License/Delete.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Get.php b/src/Elasticsearch/Endpoints/License/Get.php index 24a23ba8c..0d377c0a3 100644 --- a/src/Elasticsearch/Endpoints/License/Get.php +++ b/src/Elasticsearch/Endpoints/License/Get.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/GetBasicStatus.php b/src/Elasticsearch/Endpoints/License/GetBasicStatus.php index 26b6c9476..37ab35501 100644 --- a/src/Elasticsearch/Endpoints/License/GetBasicStatus.php +++ b/src/Elasticsearch/Endpoints/License/GetBasicStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get_basic_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetBasicStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/GetTrialStatus.php b/src/Elasticsearch/Endpoints/License/GetTrialStatus.php index a622e2b6b..4e4534718 100644 --- a/src/Elasticsearch/Endpoints/License/GetTrialStatus.php +++ b/src/Elasticsearch/Endpoints/License/GetTrialStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get_trial_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetTrialStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Post.php b/src/Elasticsearch/Endpoints/License/Post.php index 264f2eb55..6ef6f5865 100644 --- a/src/Elasticsearch/Endpoints/License/Post.php +++ b/src/Elasticsearch/Endpoints/License/Post.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Post extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/PostStartBasic.php b/src/Elasticsearch/Endpoints/License/PostStartBasic.php index 61316df67..ae5e28bc0 100644 --- a/src/Elasticsearch/Endpoints/License/PostStartBasic.php +++ b/src/Elasticsearch/Endpoints/License/PostStartBasic.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post_start_basic * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PostStartBasic extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/PostStartTrial.php b/src/Elasticsearch/Endpoints/License/PostStartTrial.php index da0323aff..5bc0f41ea 100644 --- a/src/Elasticsearch/Endpoints/License/PostStartTrial.php +++ b/src/Elasticsearch/Endpoints/License/PostStartTrial.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post_start_trial * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PostStartTrial extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php b/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php index b1d8ec051..35b612a36 100644 --- a/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.delete_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeletePipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php b/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php index b4d530d44..c3153009d 100644 --- a/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.get_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php b/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php index 2073d2dab..a0e066130 100644 --- a/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.put_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/MTermVectors.php b/src/Elasticsearch/Endpoints/MTermVectors.php index 7a593dc7d..780b82463 100644 --- a/src/Elasticsearch/Endpoints/MTermVectors.php +++ b/src/Elasticsearch/Endpoints/MTermVectors.php @@ -23,7 +23,7 @@ * Elasticsearch API name mtermvectors * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class MTermVectors extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Mget.php b/src/Elasticsearch/Endpoints/Mget.php index 093703c07..fe0bf92dd 100644 --- a/src/Elasticsearch/Endpoints/Mget.php +++ b/src/Elasticsearch/Endpoints/Mget.php @@ -23,7 +23,7 @@ * Elasticsearch API name mget * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Mget extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Migration/Deprecations.php b/src/Elasticsearch/Endpoints/Migration/Deprecations.php index 01e78e499..a5c57e61f 100644 --- a/src/Elasticsearch/Endpoints/Migration/Deprecations.php +++ b/src/Elasticsearch/Endpoints/Migration/Deprecations.php @@ -23,7 +23,7 @@ * Elasticsearch API name migration.deprecations * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Deprecations extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/CloseJob.php b/src/Elasticsearch/Endpoints/Ml/CloseJob.php index 0c474f199..c7fbf6027 100644 --- a/src/Elasticsearch/Endpoints/Ml/CloseJob.php +++ b/src/Elasticsearch/Endpoints/Ml/CloseJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.close_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class CloseJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php b/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php index 7eb53a551..b0a70cfbb 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_calendar * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteCalendar extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php index 6a6f383f4..bd7e51ab3 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_calendar_event * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteCalendarEvent extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php index 3bd6dbc0f..916b36dd1 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_calendar_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteCalendarJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php index 56e6f932e..398a66687 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php b/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php index 4a3fa8751..8597551b1 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php b/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php index 9e32d2f27..9795f9cbf 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.delete_expired_data * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteExpiredData extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php b/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php index 8c3bc98c3..198265015 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_filter * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteFilter extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php b/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php index 0fac40b39..e8052993d 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_forecast * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteForecast extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteJob.php b/src/Elasticsearch/Endpoints/Ml/DeleteJob.php index 6d063ceb2..2559eff68 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteJob.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php b/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php index ec00f3292..00708bfd6 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_model_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteModelSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php index a7a5d60ad..e1e3c2a05 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_trained_model * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteTrainedModel extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php index 5e47291d1..da6dedeb0 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_trained_model_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteTrainedModelAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php b/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php index cf784e105..169c9c962 100644 --- a/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php +++ b/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.estimate_model_memory * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class EstimateModelMemory extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php b/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php index 18f8bcb4c..e51fc4c85 100644 --- a/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php +++ b/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.evaluate_data_frame * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class EvaluateDataFrame extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php index 146a8ab89..8d1017386 100644 --- a/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.explain_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ExplainDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php b/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php index a83a0f4fc..14379fa8c 100644 --- a/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php +++ b/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php @@ -26,7 +26,7 @@ * Elasticsearch API name ml.find_file_structure * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class FindFileStructure extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/FlushJob.php b/src/Elasticsearch/Endpoints/Ml/FlushJob.php index c38f7dbbe..3232e95e3 100644 --- a/src/Elasticsearch/Endpoints/Ml/FlushJob.php +++ b/src/Elasticsearch/Endpoints/Ml/FlushJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.flush_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class FlushJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/Forecast.php b/src/Elasticsearch/Endpoints/Ml/Forecast.php index f99e1796d..d96db7b7d 100644 --- a/src/Elasticsearch/Endpoints/Ml/Forecast.php +++ b/src/Elasticsearch/Endpoints/Ml/Forecast.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.forecast * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Forecast extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetBuckets.php b/src/Elasticsearch/Endpoints/Ml/GetBuckets.php index 14a37f08a..f5072fba4 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetBuckets.php +++ b/src/Elasticsearch/Endpoints/Ml/GetBuckets.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_buckets * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetBuckets extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php b/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php index 7eeb8881a..4046f1b20 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php +++ b/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_calendar_events * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetCalendarEvents extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetCalendars.php b/src/Elasticsearch/Endpoints/Ml/GetCalendars.php index 90bd21365..ab57d7746 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetCalendars.php +++ b/src/Elasticsearch/Endpoints/Ml/GetCalendars.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_calendars * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetCalendars extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetCategories.php b/src/Elasticsearch/Endpoints/Ml/GetCategories.php index 1f1fe6e82..289187f56 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetCategories.php +++ b/src/Elasticsearch/Endpoints/Ml/GetCategories.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_categories * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetCategories extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php index 4f97b5ffd..af2e544d6 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php index 71d20597c..a2241bc65 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_data_frame_analytics_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetDataFrameAnalyticsStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php b/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php index 54b875a66..15c1acd50 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_datafeed_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetDatafeedStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php b/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php index e65b79cb7..fe44f8d42 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_datafeeds * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetDatafeeds extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetFilters.php b/src/Elasticsearch/Endpoints/Ml/GetFilters.php index 615f14315..7de7f1b87 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetFilters.php +++ b/src/Elasticsearch/Endpoints/Ml/GetFilters.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_filters * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetFilters extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php b/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php index 81e2880c8..463799a54 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php +++ b/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_influencers * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetInfluencers extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetJobStats.php b/src/Elasticsearch/Endpoints/Ml/GetJobStats.php index 2ec48fe74..f0333de01 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetJobStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetJobStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_job_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetJobStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetJobs.php b/src/Elasticsearch/Endpoints/Ml/GetJobs.php index b1aafb38e..6f969b717 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetJobs.php +++ b/src/Elasticsearch/Endpoints/Ml/GetJobs.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_jobs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetJobs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php b/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php index 5f6ccca89..ec5bf7cab 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php +++ b/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_model_snapshots * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetModelSnapshots extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php b/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php index 725dc3df9..a2e0702bc 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php +++ b/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_overall_buckets * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetOverallBuckets extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetRecords.php b/src/Elasticsearch/Endpoints/Ml/GetRecords.php index 2f5099784..2ecdfe8bf 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetRecords.php +++ b/src/Elasticsearch/Endpoints/Ml/GetRecords.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_records * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetRecords extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php b/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php index 6fcdec418..37e006c94 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php +++ b/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_trained_models * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetTrainedModels extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php b/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php index 99088b2a9..73667d96b 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_trained_models_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetTrainedModelsStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/Info.php b/src/Elasticsearch/Endpoints/Ml/Info.php index bcb277def..1935e2b73 100644 --- a/src/Elasticsearch/Endpoints/Ml/Info.php +++ b/src/Elasticsearch/Endpoints/Ml/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/OpenJob.php b/src/Elasticsearch/Endpoints/Ml/OpenJob.php index 4adc818ac..6744ea24b 100644 --- a/src/Elasticsearch/Endpoints/Ml/OpenJob.php +++ b/src/Elasticsearch/Endpoints/Ml/OpenJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.open_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class OpenJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php b/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php index 4b4671263..e31e9c30c 100644 --- a/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php +++ b/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.post_calendar_events * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PostCalendarEvents extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PostData.php b/src/Elasticsearch/Endpoints/Ml/PostData.php index 357567209..c11599377 100644 --- a/src/Elasticsearch/Endpoints/Ml/PostData.php +++ b/src/Elasticsearch/Endpoints/Ml/PostData.php @@ -27,7 +27,7 @@ * Elasticsearch API name ml.post_data * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PostData extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php index 79451373a..988a97348 100644 --- a/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.preview_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PreviewDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php b/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php index 304d962e4..4d9678d34 100644 --- a/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.preview_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PreviewDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutCalendar.php b/src/Elasticsearch/Endpoints/Ml/PutCalendar.php index f03d0f3ca..fe2856b50 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutCalendar.php +++ b/src/Elasticsearch/Endpoints/Ml/PutCalendar.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_calendar * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutCalendar extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php b/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php index 28b691643..e29e08e35 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php +++ b/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_calendar_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutCalendarJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php index 6bffd8bb8..9f5eecc46 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php b/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php index 2ab4bbb52..24ee8650a 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutFilter.php b/src/Elasticsearch/Endpoints/Ml/PutFilter.php index cf89a50d0..d9ed6c800 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutFilter.php +++ b/src/Elasticsearch/Endpoints/Ml/PutFilter.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_filter * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutFilter extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutJob.php b/src/Elasticsearch/Endpoints/Ml/PutJob.php index dc5f493df..d15dacfce 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutJob.php +++ b/src/Elasticsearch/Endpoints/Ml/PutJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php b/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php index 93c890aa2..1e9b9f392 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php +++ b/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_trained_model * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutTrainedModel extends AbstractEndpoint { @@ -42,7 +42,9 @@ public function getURI(): string public function getParamWhitelist(): array { - return []; + return [ + 'defer_definition_decompression' + ]; } public function getMethod(): string diff --git a/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php b/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php index 3befabb43..6558e00df 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php +++ b/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_trained_model_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutTrainedModelAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/ResetJob.php b/src/Elasticsearch/Endpoints/Ml/ResetJob.php index d376809c1..09f98abfd 100644 --- a/src/Elasticsearch/Endpoints/Ml/ResetJob.php +++ b/src/Elasticsearch/Endpoints/Ml/ResetJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.reset_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ResetJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php b/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php index cddd5f0c0..d4c5e3599 100644 --- a/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.revert_model_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class RevertModelSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php b/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php index 426b0e93c..b3fc89182 100644 --- a/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php +++ b/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.set_upgrade_mode * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class SetUpgradeMode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php index c0f6b9e18..2f489819a 100644 --- a/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.start_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class StartDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php b/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php index de86c06fe..12ec6bb9c 100644 --- a/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.start_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class StartDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php index 1d479404f..da901387a 100644 --- a/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.stop_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class StopDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php b/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php index 61f8b5df7..9af664ba3 100644 --- a/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.stop_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class StopDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php index 68eda8302..d0861a9ef 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class UpdateDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php b/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php index 7add4fb40..f27172850 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class UpdateDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php b/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php index 13bdebcd2..4ff28393d 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_filter * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class UpdateFilter extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateJob.php b/src/Elasticsearch/Endpoints/Ml/UpdateJob.php index 23cc270f5..17b7ff0f2 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateJob.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class UpdateJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php b/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php index 62aebcbe2..0e203ffa9 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_model_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class UpdateModelSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php b/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php index b0d6c0e57..4b5fe0659 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.upgrade_job_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class UpgradeJobSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/Validate.php b/src/Elasticsearch/Endpoints/Ml/Validate.php index 69049ce7b..38a8c2cc4 100644 --- a/src/Elasticsearch/Endpoints/Ml/Validate.php +++ b/src/Elasticsearch/Endpoints/Ml/Validate.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.validate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Validate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php b/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php index 5cf2906f2..78ef2425a 100644 --- a/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php +++ b/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.validate_detector * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ValidateDetector extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Monitoring/Bulk.php b/src/Elasticsearch/Endpoints/Monitoring/Bulk.php index f12908fcc..b159779a1 100644 --- a/src/Elasticsearch/Endpoints/Monitoring/Bulk.php +++ b/src/Elasticsearch/Endpoints/Monitoring/Bulk.php @@ -26,7 +26,7 @@ * Elasticsearch API name monitoring.bulk * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Bulk extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Msearch.php b/src/Elasticsearch/Endpoints/Msearch.php index ce19496d5..9c88a22aa 100644 --- a/src/Elasticsearch/Endpoints/Msearch.php +++ b/src/Elasticsearch/Endpoints/Msearch.php @@ -26,7 +26,7 @@ * Elasticsearch API name msearch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Msearch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/MsearchTemplate.php b/src/Elasticsearch/Endpoints/MsearchTemplate.php index 4648492b3..1112bdc49 100644 --- a/src/Elasticsearch/Endpoints/MsearchTemplate.php +++ b/src/Elasticsearch/Endpoints/MsearchTemplate.php @@ -26,7 +26,7 @@ * Elasticsearch API name msearch_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class MsearchTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/ClearRepositoriesMeteringArchive.php b/src/Elasticsearch/Endpoints/Nodes/ClearRepositoriesMeteringArchive.php index 12ee4704c..b290da18d 100644 --- a/src/Elasticsearch/Endpoints/Nodes/ClearRepositoriesMeteringArchive.php +++ b/src/Elasticsearch/Endpoints/Nodes/ClearRepositoriesMeteringArchive.php @@ -24,7 +24,7 @@ * Elasticsearch API name nodes.clear_repositories_metering_archive * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ClearRepositoriesMeteringArchive extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/GetRepositoriesMeteringInfo.php b/src/Elasticsearch/Endpoints/Nodes/GetRepositoriesMeteringInfo.php index a92ed2088..311d4dc64 100644 --- a/src/Elasticsearch/Endpoints/Nodes/GetRepositoriesMeteringInfo.php +++ b/src/Elasticsearch/Endpoints/Nodes/GetRepositoriesMeteringInfo.php @@ -24,7 +24,7 @@ * Elasticsearch API name nodes.get_repositories_metering_info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetRepositoriesMeteringInfo extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/HotThreads.php b/src/Elasticsearch/Endpoints/Nodes/HotThreads.php index 6b0b88f39..845439848 100644 --- a/src/Elasticsearch/Endpoints/Nodes/HotThreads.php +++ b/src/Elasticsearch/Endpoints/Nodes/HotThreads.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.hot_threads * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class HotThreads extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/Info.php b/src/Elasticsearch/Endpoints/Nodes/Info.php index 194e0a18a..a57af18ba 100644 --- a/src/Elasticsearch/Endpoints/Nodes/Info.php +++ b/src/Elasticsearch/Endpoints/Nodes/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php b/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php index bc43e5f49..52db7fbf0 100644 --- a/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php +++ b/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.reload_secure_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ReloadSecureSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/Stats.php b/src/Elasticsearch/Endpoints/Nodes/Stats.php index 88dcbcef3..167781c0e 100644 --- a/src/Elasticsearch/Endpoints/Nodes/Stats.php +++ b/src/Elasticsearch/Endpoints/Nodes/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/Usage.php b/src/Elasticsearch/Endpoints/Nodes/Usage.php index 798f8b32d..5406dc8a6 100644 --- a/src/Elasticsearch/Endpoints/Nodes/Usage.php +++ b/src/Elasticsearch/Endpoints/Nodes/Usage.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.usage * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Usage extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/OpenPointInTime.php b/src/Elasticsearch/Endpoints/OpenPointInTime.php index af5e5b295..65abb0802 100644 --- a/src/Elasticsearch/Endpoints/OpenPointInTime.php +++ b/src/Elasticsearch/Endpoints/OpenPointInTime.php @@ -24,7 +24,7 @@ * Elasticsearch API name open_point_in_time * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class OpenPointInTime extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ping.php b/src/Elasticsearch/Endpoints/Ping.php index 68c8292b4..e57653af0 100644 --- a/src/Elasticsearch/Endpoints/Ping.php +++ b/src/Elasticsearch/Endpoints/Ping.php @@ -23,7 +23,7 @@ * Elasticsearch API name ping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Ping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/PutScript.php b/src/Elasticsearch/Endpoints/PutScript.php index 7705126f4..57d6d6a77 100644 --- a/src/Elasticsearch/Endpoints/PutScript.php +++ b/src/Elasticsearch/Endpoints/PutScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name put_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/RankEval.php b/src/Elasticsearch/Endpoints/RankEval.php index edb8ad8e4..cf8e04f54 100644 --- a/src/Elasticsearch/Endpoints/RankEval.php +++ b/src/Elasticsearch/Endpoints/RankEval.php @@ -23,7 +23,7 @@ * Elasticsearch API name rank_eval * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class RankEval extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Reindex.php b/src/Elasticsearch/Endpoints/Reindex.php index a8692bb8b..274b6392f 100644 --- a/src/Elasticsearch/Endpoints/Reindex.php +++ b/src/Elasticsearch/Endpoints/Reindex.php @@ -23,7 +23,7 @@ * Elasticsearch API name reindex * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Reindex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ReindexRethrottle.php b/src/Elasticsearch/Endpoints/ReindexRethrottle.php index 8104672fb..0a7ead7e0 100644 --- a/src/Elasticsearch/Endpoints/ReindexRethrottle.php +++ b/src/Elasticsearch/Endpoints/ReindexRethrottle.php @@ -24,7 +24,7 @@ * Elasticsearch API name reindex_rethrottle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ReindexRethrottle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/RenderSearchTemplate.php b/src/Elasticsearch/Endpoints/RenderSearchTemplate.php index 467782671..8b0399786 100644 --- a/src/Elasticsearch/Endpoints/RenderSearchTemplate.php +++ b/src/Elasticsearch/Endpoints/RenderSearchTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name render_search_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class RenderSearchTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php b/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php index 1ab94ef75..a826b51e9 100644 --- a/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.delete_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/GetJobs.php b/src/Elasticsearch/Endpoints/Rollup/GetJobs.php index 50dd8ab4f..7df7d5f79 100644 --- a/src/Elasticsearch/Endpoints/Rollup/GetJobs.php +++ b/src/Elasticsearch/Endpoints/Rollup/GetJobs.php @@ -23,7 +23,7 @@ * Elasticsearch API name rollup.get_jobs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetJobs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php b/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php index beca5397a..d35fc098d 100644 --- a/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php +++ b/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php @@ -23,7 +23,7 @@ * Elasticsearch API name rollup.get_rollup_caps * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetRollupCaps extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php b/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php index 694aeef69..380b76f1d 100644 --- a/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php +++ b/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.get_rollup_index_caps * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetRollupIndexCaps extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/PutJob.php b/src/Elasticsearch/Endpoints/Rollup/PutJob.php index 5c0423ad0..bcfd9c4a5 100644 --- a/src/Elasticsearch/Endpoints/Rollup/PutJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/PutJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.put_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/Rollup.php b/src/Elasticsearch/Endpoints/Rollup/Rollup.php index adb97ddd1..59e3b2577 100644 --- a/src/Elasticsearch/Endpoints/Rollup/Rollup.php +++ b/src/Elasticsearch/Endpoints/Rollup/Rollup.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.rollup * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Rollup extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php b/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php index 360949937..55fd8000f 100644 --- a/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php +++ b/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.rollup_search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class RollupSearch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/StartJob.php b/src/Elasticsearch/Endpoints/Rollup/StartJob.php index 81c0c5f9c..a16f01754 100644 --- a/src/Elasticsearch/Endpoints/Rollup/StartJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/StartJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.start_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class StartJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/StopJob.php b/src/Elasticsearch/Endpoints/Rollup/StopJob.php index c4e22cb8e..78a39b467 100644 --- a/src/Elasticsearch/Endpoints/Rollup/StopJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/StopJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.stop_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class StopJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php b/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php index 614ce74b5..3c65d3f90 100644 --- a/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php +++ b/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php @@ -23,7 +23,7 @@ * Elasticsearch API name scripts_painless_execute * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ScriptsPainlessExecute extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Scroll.php b/src/Elasticsearch/Endpoints/Scroll.php index 5757a5e6e..7d01cc13f 100644 --- a/src/Elasticsearch/Endpoints/Scroll.php +++ b/src/Elasticsearch/Endpoints/Scroll.php @@ -23,7 +23,7 @@ * Elasticsearch API name scroll * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Scroll extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Search.php b/src/Elasticsearch/Endpoints/Search.php index d2c7f6b4c..fc42067ac 100644 --- a/src/Elasticsearch/Endpoints/Search.php +++ b/src/Elasticsearch/Endpoints/Search.php @@ -23,7 +23,7 @@ * Elasticsearch API name search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Search extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchMvt.php b/src/Elasticsearch/Endpoints/SearchMvt.php index ef5265968..0661a249e 100644 --- a/src/Elasticsearch/Endpoints/SearchMvt.php +++ b/src/Elasticsearch/Endpoints/SearchMvt.php @@ -24,7 +24,7 @@ * Elasticsearch API name search_mvt * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class SearchMvt extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchShards.php b/src/Elasticsearch/Endpoints/SearchShards.php index 99e98d079..e15709aca 100644 --- a/src/Elasticsearch/Endpoints/SearchShards.php +++ b/src/Elasticsearch/Endpoints/SearchShards.php @@ -23,7 +23,7 @@ * Elasticsearch API name search_shards * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class SearchShards extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchTemplate.php b/src/Elasticsearch/Endpoints/SearchTemplate.php index 09c7c9b2a..5777e5a54 100644 --- a/src/Elasticsearch/Endpoints/SearchTemplate.php +++ b/src/Elasticsearch/Endpoints/SearchTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name search_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class SearchTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php index f599b055a..d1bcd4db4 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name searchable_snapshots.cache_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class CacheStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php index 647151fd1..56cdd4f98 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php @@ -23,7 +23,7 @@ * Elasticsearch API name searchable_snapshots.clear_cache * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ClearCache extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php index a44875145..a1f718f3f 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php @@ -24,7 +24,7 @@ * Elasticsearch API name searchable_snapshots.mount * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Mount extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php index 416055ac2..4f452b34c 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name searchable_snapshots.repository_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class RepositoryStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php index b2643bed3..54e86258c 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name searchable_snapshots.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/Authenticate.php b/src/Elasticsearch/Endpoints/Security/Authenticate.php index 2dfc5b892..c3b87bb05 100644 --- a/src/Elasticsearch/Endpoints/Security/Authenticate.php +++ b/src/Elasticsearch/Endpoints/Security/Authenticate.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.authenticate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Authenticate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ChangePassword.php b/src/Elasticsearch/Endpoints/Security/ChangePassword.php index a9caa5ef3..adedc89cc 100644 --- a/src/Elasticsearch/Endpoints/Security/ChangePassword.php +++ b/src/Elasticsearch/Endpoints/Security/ChangePassword.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.change_password * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ChangePassword extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php b/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php index 7385fb800..8e4f686d9 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php +++ b/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_api_key_cache * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ClearApiKeyCache extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php b/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php index 6730fa8ad..c28ff136d 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ClearCachedPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php b/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php index a8c346313..cee3200b6 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_realms * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ClearCachedRealms extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php b/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php index 1f5f40481..04c524bfa 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_roles * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ClearCachedRoles extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php b/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php index e8d3fee19..f5d4b5b34 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_service_tokens * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ClearCachedServiceTokens extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/CreateApiKey.php b/src/Elasticsearch/Endpoints/Security/CreateApiKey.php index ba9a438cc..9a7484146 100644 --- a/src/Elasticsearch/Endpoints/Security/CreateApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/CreateApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.create_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class CreateApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php b/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php index 30236b5ad..d0db65fa1 100644 --- a/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php +++ b/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.create_service_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class CreateServiceToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php b/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php index 0460dde13..4d58bf5ce 100644 --- a/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeletePrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteRole.php b/src/Elasticsearch/Endpoints/Security/DeleteRole.php index 41fea70c9..748d54551 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteRole.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteRole.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_role * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteRole extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php b/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php index 8ba74078c..8c4cbcd00 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_role_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteRoleMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php b/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php index 13d158084..228be55dc 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_service_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteServiceToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteUser.php b/src/Elasticsearch/Endpoints/Security/DeleteUser.php index 007438192..e847aad37 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteUser.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DisableUser.php b/src/Elasticsearch/Endpoints/Security/DisableUser.php index aeef962cc..28353aa82 100644 --- a/src/Elasticsearch/Endpoints/Security/DisableUser.php +++ b/src/Elasticsearch/Endpoints/Security/DisableUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.disable_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DisableUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/EnableUser.php b/src/Elasticsearch/Endpoints/Security/EnableUser.php index a11620a46..ad0467f40 100644 --- a/src/Elasticsearch/Endpoints/Security/EnableUser.php +++ b/src/Elasticsearch/Endpoints/Security/EnableUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.enable_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class EnableUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetApiKey.php b/src/Elasticsearch/Endpoints/Security/GetApiKey.php index dc7fa59ad..801a96353 100644 --- a/src/Elasticsearch/Endpoints/Security/GetApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/GetApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php b/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php index 8bdc90895..222243866 100644 --- a/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_builtin_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetBuiltinPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetPrivileges.php b/src/Elasticsearch/Endpoints/Security/GetPrivileges.php index f03e554ae..22b289471 100644 --- a/src/Elasticsearch/Endpoints/Security/GetPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/GetPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetRole.php b/src/Elasticsearch/Endpoints/Security/GetRole.php index 5901376db..748a807d1 100644 --- a/src/Elasticsearch/Endpoints/Security/GetRole.php +++ b/src/Elasticsearch/Endpoints/Security/GetRole.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_role * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetRole extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php b/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php index bfeebea5e..bf73da430 100644 --- a/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php +++ b/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_role_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetRoleMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php b/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php index 8d715f711..9005aa7e9 100644 --- a/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php +++ b/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_service_accounts * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetServiceAccounts extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php b/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php index 0ba766546..7bd37b28f 100644 --- a/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php +++ b/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.get_service_credentials * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetServiceCredentials extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetToken.php b/src/Elasticsearch/Endpoints/Security/GetToken.php index dfa923e2d..52547f98e 100644 --- a/src/Elasticsearch/Endpoints/Security/GetToken.php +++ b/src/Elasticsearch/Endpoints/Security/GetToken.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetUser.php b/src/Elasticsearch/Endpoints/Security/GetUser.php index dfca30960..5ccf24906 100644 --- a/src/Elasticsearch/Endpoints/Security/GetUser.php +++ b/src/Elasticsearch/Endpoints/Security/GetUser.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php b/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php index 6c9af9a3b..89d7e1a6b 100644 --- a/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_user_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetUserPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GrantApiKey.php b/src/Elasticsearch/Endpoints/Security/GrantApiKey.php index c86c6945f..a62a41b6e 100644 --- a/src/Elasticsearch/Endpoints/Security/GrantApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/GrantApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.grant_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GrantApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/HasPrivileges.php b/src/Elasticsearch/Endpoints/Security/HasPrivileges.php index 1553a7fa7..60d3e7933 100644 --- a/src/Elasticsearch/Endpoints/Security/HasPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/HasPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.has_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class HasPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php b/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php index cb43babc3..d499979e7 100644 --- a/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.invalidate_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class InvalidateApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/InvalidateToken.php b/src/Elasticsearch/Endpoints/Security/InvalidateToken.php index ae6ff3c76..c9d864a55 100644 --- a/src/Elasticsearch/Endpoints/Security/InvalidateToken.php +++ b/src/Elasticsearch/Endpoints/Security/InvalidateToken.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.invalidate_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class InvalidateToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutPrivileges.php b/src/Elasticsearch/Endpoints/Security/PutPrivileges.php index 300104f99..438bfc1b6 100644 --- a/src/Elasticsearch/Endpoints/Security/PutPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/PutPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.put_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutRole.php b/src/Elasticsearch/Endpoints/Security/PutRole.php index 797c1c7e0..224c7ec19 100644 --- a/src/Elasticsearch/Endpoints/Security/PutRole.php +++ b/src/Elasticsearch/Endpoints/Security/PutRole.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.put_role * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutRole extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php b/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php index 624a3c546..6e7c2bda5 100644 --- a/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php +++ b/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.put_role_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutRoleMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutUser.php b/src/Elasticsearch/Endpoints/Security/PutUser.php index 93de2c538..f5248e647 100644 --- a/src/Elasticsearch/Endpoints/Security/PutUser.php +++ b/src/Elasticsearch/Endpoints/Security/PutUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.put_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/QueryApiKeys.php b/src/Elasticsearch/Endpoints/Security/QueryApiKeys.php index 4d77a4d2b..bba79f748 100644 --- a/src/Elasticsearch/Endpoints/Security/QueryApiKeys.php +++ b/src/Elasticsearch/Endpoints/Security/QueryApiKeys.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.query_api_keys * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class QueryApiKeys extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php b/src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php index 1c963e7c9..a80ea8b28 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php +++ b/src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_authenticate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class SamlAuthenticate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php b/src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php index bc3377b81..a39c0bc53 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php +++ b/src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_complete_logout * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class SamlCompleteLogout extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlInvalidate.php b/src/Elasticsearch/Endpoints/Security/SamlInvalidate.php index f79577481..589ddca64 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlInvalidate.php +++ b/src/Elasticsearch/Endpoints/Security/SamlInvalidate.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_invalidate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class SamlInvalidate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlLogout.php b/src/Elasticsearch/Endpoints/Security/SamlLogout.php index 97fd259df..1ef4aba4d 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlLogout.php +++ b/src/Elasticsearch/Endpoints/Security/SamlLogout.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_logout * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class SamlLogout extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php b/src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php index 1df22294c..78a8bef53 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php +++ b/src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_prepare_authentication * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class SamlPrepareAuthentication extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php b/src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php index f6fb954ee..505d6dea3 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php +++ b/src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.saml_service_provider_metadata * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class SamlServiceProviderMetadata extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php b/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php index fef4d6431..f0f16f17f 100644 --- a/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php +++ b/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php @@ -24,7 +24,7 @@ * Elasticsearch API name shutdown.delete_node * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteNode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Shutdown/GetNode.php b/src/Elasticsearch/Endpoints/Shutdown/GetNode.php index 8bce16af5..630f52ebf 100644 --- a/src/Elasticsearch/Endpoints/Shutdown/GetNode.php +++ b/src/Elasticsearch/Endpoints/Shutdown/GetNode.php @@ -23,7 +23,7 @@ * Elasticsearch API name shutdown.get_node * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetNode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Shutdown/PutNode.php b/src/Elasticsearch/Endpoints/Shutdown/PutNode.php index e729e5c32..07af39129 100644 --- a/src/Elasticsearch/Endpoints/Shutdown/PutNode.php +++ b/src/Elasticsearch/Endpoints/Shutdown/PutNode.php @@ -24,7 +24,7 @@ * Elasticsearch API name shutdown.put_node * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutNode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php b/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php index 9aafe2488..cf4e8afee 100644 --- a/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name slm.delete_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php b/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php index 614917ea5..280f56a1b 100644 --- a/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name slm.execute_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ExecuteLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php b/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php index 756a08896..53b9fb79e 100644 --- a/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php +++ b/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.execute_retention * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ExecuteRetention extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php b/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php index 1ce86da3b..f15e3c11a 100644 --- a/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.get_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/GetStats.php b/src/Elasticsearch/Endpoints/Slm/GetStats.php index b6bf90ab9..3a57bc952 100644 --- a/src/Elasticsearch/Endpoints/Slm/GetStats.php +++ b/src/Elasticsearch/Endpoints/Slm/GetStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.get_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/GetStatus.php b/src/Elasticsearch/Endpoints/Slm/GetStatus.php index 5a97ae1be..4f7a4c2fc 100644 --- a/src/Elasticsearch/Endpoints/Slm/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Slm/GetStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php b/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php index 13cf4c263..3b906749a 100644 --- a/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name slm.put_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/Start.php b/src/Elasticsearch/Endpoints/Slm/Start.php index 2f2faf80f..cdff62a61 100644 --- a/src/Elasticsearch/Endpoints/Slm/Start.php +++ b/src/Elasticsearch/Endpoints/Slm/Start.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.start * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Start extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/Stop.php b/src/Elasticsearch/Endpoints/Slm/Stop.php index 14f000063..9d02c6dd8 100644 --- a/src/Elasticsearch/Endpoints/Slm/Stop.php +++ b/src/Elasticsearch/Endpoints/Slm/Stop.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.stop * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Stop extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php b/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php index 601cf6490..e8fe68ab4 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.cleanup_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class CleanupRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php b/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php index 5d477c7ec..dd48ec9a6 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php +++ b/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.clone * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class CloneSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Create.php b/src/Elasticsearch/Endpoints/Snapshot/Create.php index 36473cb7c..e41224e25 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Create.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php b/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php index 9db186a1c..a867c405a 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.create_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class CreateRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Delete.php b/src/Elasticsearch/Endpoints/Snapshot/Delete.php index 21fe9f2dd..26cb74a5f 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Delete.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php b/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php index cc6dd497f..1a30623b4 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.delete_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Get.php b/src/Elasticsearch/Endpoints/Snapshot/Get.php index 42b0c7971..c143565c5 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Get.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php b/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php index 8e54418f7..4f1c50734 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php @@ -23,7 +23,7 @@ * Elasticsearch API name snapshot.get_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php b/src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php index 6609b198e..8990dd46d 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php +++ b/src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.repository_analyze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class RepositoryAnalyze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Restore.php b/src/Elasticsearch/Endpoints/Snapshot/Restore.php index ae729cad7..8b2a1c0ad 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Restore.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Restore.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.restore * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Restore extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Status.php b/src/Elasticsearch/Endpoints/Snapshot/Status.php index 53d73e732..2e7c8fc08 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Status.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Status.php @@ -23,7 +23,7 @@ * Elasticsearch API name snapshot.status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Status extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php b/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php index 542d8a6e6..dc7ed692d 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.verify_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class VerifyRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/ClearCursor.php b/src/Elasticsearch/Endpoints/Sql/ClearCursor.php index 6509d8747..3553e24cd 100644 --- a/src/Elasticsearch/Endpoints/Sql/ClearCursor.php +++ b/src/Elasticsearch/Endpoints/Sql/ClearCursor.php @@ -23,7 +23,7 @@ * Elasticsearch API name sql.clear_cursor * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ClearCursor extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/DeleteAsync.php b/src/Elasticsearch/Endpoints/Sql/DeleteAsync.php index 88ba51023..0fbccaccf 100644 --- a/src/Elasticsearch/Endpoints/Sql/DeleteAsync.php +++ b/src/Elasticsearch/Endpoints/Sql/DeleteAsync.php @@ -24,7 +24,7 @@ * Elasticsearch API name sql.delete_async * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteAsync extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/GetAsync.php b/src/Elasticsearch/Endpoints/Sql/GetAsync.php index 5f5eaeec8..30b0b08b6 100644 --- a/src/Elasticsearch/Endpoints/Sql/GetAsync.php +++ b/src/Elasticsearch/Endpoints/Sql/GetAsync.php @@ -24,7 +24,7 @@ * Elasticsearch API name sql.get_async * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetAsync extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php b/src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php index 55458b587..f94a17b65 100644 --- a/src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php +++ b/src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php @@ -24,7 +24,7 @@ * Elasticsearch API name sql.get_async_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetAsyncStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/Query.php b/src/Elasticsearch/Endpoints/Sql/Query.php index bc9508a31..26de3cb63 100644 --- a/src/Elasticsearch/Endpoints/Sql/Query.php +++ b/src/Elasticsearch/Endpoints/Sql/Query.php @@ -23,7 +23,7 @@ * Elasticsearch API name sql.query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Query extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/Translate.php b/src/Elasticsearch/Endpoints/Sql/Translate.php index 02c88dcf8..4821a4e43 100644 --- a/src/Elasticsearch/Endpoints/Sql/Translate.php +++ b/src/Elasticsearch/Endpoints/Sql/Translate.php @@ -23,7 +23,7 @@ * Elasticsearch API name sql.translate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Translate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ssl/Certificates.php b/src/Elasticsearch/Endpoints/Ssl/Certificates.php index b757f02c6..fc0b74428 100644 --- a/src/Elasticsearch/Endpoints/Ssl/Certificates.php +++ b/src/Elasticsearch/Endpoints/Ssl/Certificates.php @@ -23,7 +23,7 @@ * Elasticsearch API name ssl.certificates * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Certificates extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Tasks/Cancel.php b/src/Elasticsearch/Endpoints/Tasks/Cancel.php index 71badae24..fbfbd4bb8 100644 --- a/src/Elasticsearch/Endpoints/Tasks/Cancel.php +++ b/src/Elasticsearch/Endpoints/Tasks/Cancel.php @@ -23,7 +23,7 @@ * Elasticsearch API name tasks.cancel * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Cancel extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Tasks/Get.php b/src/Elasticsearch/Endpoints/Tasks/Get.php index 1ef4e4244..5eb6488f4 100644 --- a/src/Elasticsearch/Endpoints/Tasks/Get.php +++ b/src/Elasticsearch/Endpoints/Tasks/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name tasks.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Tasks/ListTasks.php b/src/Elasticsearch/Endpoints/Tasks/ListTasks.php index 5792b7d87..9b55ff0ab 100644 --- a/src/Elasticsearch/Endpoints/Tasks/ListTasks.php +++ b/src/Elasticsearch/Endpoints/Tasks/ListTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name tasks.list * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ListTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/TermVectors.php b/src/Elasticsearch/Endpoints/TermVectors.php index 6a43a0895..aa583fe5a 100644 --- a/src/Elasticsearch/Endpoints/TermVectors.php +++ b/src/Elasticsearch/Endpoints/TermVectors.php @@ -24,7 +24,7 @@ * Elasticsearch API name termvectors * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class TermVectors extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/TermsEnum.php b/src/Elasticsearch/Endpoints/TermsEnum.php index 2cbd30fee..88f32176d 100644 --- a/src/Elasticsearch/Endpoints/TermsEnum.php +++ b/src/Elasticsearch/Endpoints/TermsEnum.php @@ -24,7 +24,7 @@ * Elasticsearch API name terms_enum * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class TermsEnum extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php b/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php index 4cb8b4c4f..4ac58019a 100644 --- a/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php +++ b/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php @@ -26,7 +26,7 @@ * Elasticsearch API name text_structure.find_structure * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class FindStructure extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php b/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php index f952a8959..2cb55a273 100644 --- a/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.delete_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/GetTransform.php b/src/Elasticsearch/Endpoints/Transform/GetTransform.php index f88cf11a3..0c375e5fb 100644 --- a/src/Elasticsearch/Endpoints/Transform/GetTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/GetTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name transform.get_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php b/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php index 7fb5c777e..b7e6ce187 100644 --- a/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php +++ b/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.get_transform_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetTransformStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php b/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php index 7542c162e..7a73dcdb7 100644 --- a/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php @@ -23,14 +23,19 @@ * Elasticsearch API name transform.preview_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PreviewTransform extends AbstractEndpoint { + protected $transform_id; public function getURI(): string { + $transform_id = $this->transform_id ?? null; + if (isset($transform_id)) { + return "/_transform/$transform_id/_preview"; + } return "/_transform/_preview"; } @@ -41,7 +46,7 @@ public function getParamWhitelist(): array public function getMethod(): string { - return 'POST'; + return isset($this->body) ? 'POST' : 'GET'; } public function setBody($body): PreviewTransform @@ -53,4 +58,14 @@ public function setBody($body): PreviewTransform return $this; } + + public function setTransformId($transform_id): PreviewTransform + { + if (isset($transform_id) !== true) { + return $this; + } + $this->transform_id = $transform_id; + + return $this; + } } diff --git a/src/Elasticsearch/Endpoints/Transform/PutTransform.php b/src/Elasticsearch/Endpoints/Transform/PutTransform.php index e2623ef25..fbd759f8e 100644 --- a/src/Elasticsearch/Endpoints/Transform/PutTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/PutTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.put_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/StartTransform.php b/src/Elasticsearch/Endpoints/Transform/StartTransform.php index 7d2dd672d..8b8f81120 100644 --- a/src/Elasticsearch/Endpoints/Transform/StartTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/StartTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.start_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class StartTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/StopTransform.php b/src/Elasticsearch/Endpoints/Transform/StopTransform.php index e9a59a435..817e737a5 100644 --- a/src/Elasticsearch/Endpoints/Transform/StopTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/StopTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.stop_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class StopTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php b/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php index 389f461df..1f9070106 100644 --- a/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.update_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class UpdateTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Update.php b/src/Elasticsearch/Endpoints/Update.php index 0226005c4..3b3c8cfb1 100644 --- a/src/Elasticsearch/Endpoints/Update.php +++ b/src/Elasticsearch/Endpoints/Update.php @@ -24,7 +24,7 @@ * Elasticsearch API name update * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Update extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/UpdateByQuery.php b/src/Elasticsearch/Endpoints/UpdateByQuery.php index 493122faf..969ec5726 100644 --- a/src/Elasticsearch/Endpoints/UpdateByQuery.php +++ b/src/Elasticsearch/Endpoints/UpdateByQuery.php @@ -24,7 +24,7 @@ * Elasticsearch API name update_by_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class UpdateByQuery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php b/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php index 204c70c87..e061af603 100644 --- a/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php +++ b/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php @@ -24,7 +24,7 @@ * Elasticsearch API name update_by_query_rethrottle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class UpdateByQueryRethrottle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/AckWatch.php b/src/Elasticsearch/Endpoints/Watcher/AckWatch.php index d90c6b01b..44d05620c 100644 --- a/src/Elasticsearch/Endpoints/Watcher/AckWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/AckWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.ack_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class AckWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php b/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php index c6307557d..d6a8dcd5e 100644 --- a/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.activate_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ActivateWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php b/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php index 7fcc11b72..c7d11d958 100644 --- a/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.deactivate_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeactivateWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php b/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php index ba9340ae8..8a7371ed5 100644 --- a/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.delete_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DeleteWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php b/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php index 10522ed33..c50b729db 100644 --- a/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.execute_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ExecuteWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/GetWatch.php b/src/Elasticsearch/Endpoints/Watcher/GetWatch.php index d0c8b82c0..6cba8012e 100644 --- a/src/Elasticsearch/Endpoints/Watcher/GetWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/GetWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.get_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GetWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/PutWatch.php b/src/Elasticsearch/Endpoints/Watcher/PutWatch.php index 168b78d45..40401355c 100644 --- a/src/Elasticsearch/Endpoints/Watcher/PutWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/PutWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.put_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class PutWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php b/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php index 21ffb20d8..e84561d80 100644 --- a/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php +++ b/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.query_watches * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class QueryWatches extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/Start.php b/src/Elasticsearch/Endpoints/Watcher/Start.php index c9d489cfd..60ba4f534 100644 --- a/src/Elasticsearch/Endpoints/Watcher/Start.php +++ b/src/Elasticsearch/Endpoints/Watcher/Start.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.start * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Start extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/Stats.php b/src/Elasticsearch/Endpoints/Watcher/Stats.php index 00d2fc18f..48f3ce422 100644 --- a/src/Elasticsearch/Endpoints/Watcher/Stats.php +++ b/src/Elasticsearch/Endpoints/Watcher/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/Stop.php b/src/Elasticsearch/Endpoints/Watcher/Stop.php index 2d107b93e..39fbf66da 100644 --- a/src/Elasticsearch/Endpoints/Watcher/Stop.php +++ b/src/Elasticsearch/Endpoints/Watcher/Stop.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.stop * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Stop extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Xpack/Info.php b/src/Elasticsearch/Endpoints/Xpack/Info.php index 0a1ff4d21..f598b76d9 100644 --- a/src/Elasticsearch/Endpoints/Xpack/Info.php +++ b/src/Elasticsearch/Endpoints/Xpack/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name xpack.info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Xpack/Usage.php b/src/Elasticsearch/Endpoints/Xpack/Usage.php index b46a89ec6..a52f6cc07 100644 --- a/src/Elasticsearch/Endpoints/Xpack/Usage.php +++ b/src/Elasticsearch/Endpoints/Xpack/Usage.php @@ -23,7 +23,7 @@ * Elasticsearch API name xpack.usage * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class Usage extends AbstractEndpoint { diff --git a/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php b/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php index 293821724..82dd3fba4 100644 --- a/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php +++ b/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php @@ -22,7 +22,7 @@ * Class AsyncSearchNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class AsyncSearchNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/AutoscalingNamespace.php b/src/Elasticsearch/Namespaces/AutoscalingNamespace.php index 33abdd7a3..590e60f0d 100644 --- a/src/Elasticsearch/Namespaces/AutoscalingNamespace.php +++ b/src/Elasticsearch/Namespaces/AutoscalingNamespace.php @@ -22,7 +22,7 @@ * Class AutoscalingNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class AutoscalingNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/CatNamespace.php b/src/Elasticsearch/Namespaces/CatNamespace.php index 0118a1470..4c1708669 100644 --- a/src/Elasticsearch/Namespaces/CatNamespace.php +++ b/src/Elasticsearch/Namespaces/CatNamespace.php @@ -22,7 +22,7 @@ * Class CatNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class CatNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/CcrNamespace.php b/src/Elasticsearch/Namespaces/CcrNamespace.php index 2a8f4feb5..cb3129672 100644 --- a/src/Elasticsearch/Namespaces/CcrNamespace.php +++ b/src/Elasticsearch/Namespaces/CcrNamespace.php @@ -22,7 +22,7 @@ * Class CcrNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class CcrNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/ClusterNamespace.php b/src/Elasticsearch/Namespaces/ClusterNamespace.php index beeaf5587..8b8070a85 100644 --- a/src/Elasticsearch/Namespaces/ClusterNamespace.php +++ b/src/Elasticsearch/Namespaces/ClusterNamespace.php @@ -22,7 +22,7 @@ * Class ClusterNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ClusterNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php b/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php index f277d9840..b83d8bf7e 100644 --- a/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php +++ b/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php @@ -22,7 +22,7 @@ * Class DanglingIndicesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DanglingIndicesNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php b/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php index a79859b6c..1d9cc1906 100644 --- a/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php +++ b/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php @@ -22,7 +22,7 @@ * Class DataFrameTransformDeprecatedNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class DataFrameTransformDeprecatedNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/EnrichNamespace.php b/src/Elasticsearch/Namespaces/EnrichNamespace.php index 7df6b8db4..850879ee8 100644 --- a/src/Elasticsearch/Namespaces/EnrichNamespace.php +++ b/src/Elasticsearch/Namespaces/EnrichNamespace.php @@ -22,7 +22,7 @@ * Class EnrichNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class EnrichNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/EqlNamespace.php b/src/Elasticsearch/Namespaces/EqlNamespace.php index 0cf5aee51..83569a23d 100644 --- a/src/Elasticsearch/Namespaces/EqlNamespace.php +++ b/src/Elasticsearch/Namespaces/EqlNamespace.php @@ -22,7 +22,7 @@ * Class EqlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class EqlNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/FeaturesNamespace.php b/src/Elasticsearch/Namespaces/FeaturesNamespace.php index 99f850513..7363867e9 100644 --- a/src/Elasticsearch/Namespaces/FeaturesNamespace.php +++ b/src/Elasticsearch/Namespaces/FeaturesNamespace.php @@ -22,7 +22,7 @@ * Class FeaturesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class FeaturesNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/FleetNamespace.php b/src/Elasticsearch/Namespaces/FleetNamespace.php index 45f32bbb8..83a9cebc4 100644 --- a/src/Elasticsearch/Namespaces/FleetNamespace.php +++ b/src/Elasticsearch/Namespaces/FleetNamespace.php @@ -22,7 +22,7 @@ * Class FleetNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class FleetNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/GraphNamespace.php b/src/Elasticsearch/Namespaces/GraphNamespace.php index c1dd0ac4c..e8a8b082d 100644 --- a/src/Elasticsearch/Namespaces/GraphNamespace.php +++ b/src/Elasticsearch/Namespaces/GraphNamespace.php @@ -22,7 +22,7 @@ * Class GraphNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class GraphNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/IlmNamespace.php b/src/Elasticsearch/Namespaces/IlmNamespace.php index 12b8f63fa..4c5248a61 100644 --- a/src/Elasticsearch/Namespaces/IlmNamespace.php +++ b/src/Elasticsearch/Namespaces/IlmNamespace.php @@ -22,7 +22,7 @@ * Class IlmNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class IlmNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/IndicesNamespace.php b/src/Elasticsearch/Namespaces/IndicesNamespace.php index 46e7a043b..99ff3acb2 100644 --- a/src/Elasticsearch/Namespaces/IndicesNamespace.php +++ b/src/Elasticsearch/Namespaces/IndicesNamespace.php @@ -22,7 +22,7 @@ * Class IndicesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class IndicesNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/IngestNamespace.php b/src/Elasticsearch/Namespaces/IngestNamespace.php index 1f760178f..0efccccac 100644 --- a/src/Elasticsearch/Namespaces/IngestNamespace.php +++ b/src/Elasticsearch/Namespaces/IngestNamespace.php @@ -22,7 +22,7 @@ * Class IngestNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class IngestNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/LicenseNamespace.php b/src/Elasticsearch/Namespaces/LicenseNamespace.php index 8262a0600..14248cd87 100644 --- a/src/Elasticsearch/Namespaces/LicenseNamespace.php +++ b/src/Elasticsearch/Namespaces/LicenseNamespace.php @@ -22,7 +22,7 @@ * Class LicenseNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class LicenseNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/LogstashNamespace.php b/src/Elasticsearch/Namespaces/LogstashNamespace.php index feca5b16f..5c59d4397 100644 --- a/src/Elasticsearch/Namespaces/LogstashNamespace.php +++ b/src/Elasticsearch/Namespaces/LogstashNamespace.php @@ -22,7 +22,7 @@ * Class LogstashNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class LogstashNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/MigrationNamespace.php b/src/Elasticsearch/Namespaces/MigrationNamespace.php index 8d7584da1..a39b49839 100644 --- a/src/Elasticsearch/Namespaces/MigrationNamespace.php +++ b/src/Elasticsearch/Namespaces/MigrationNamespace.php @@ -22,7 +22,7 @@ * Class MigrationNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class MigrationNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/MlNamespace.php b/src/Elasticsearch/Namespaces/MlNamespace.php index 60c998244..65e1997c8 100644 --- a/src/Elasticsearch/Namespaces/MlNamespace.php +++ b/src/Elasticsearch/Namespaces/MlNamespace.php @@ -22,7 +22,7 @@ * Class MlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class MlNamespace extends AbstractNamespace { @@ -1202,8 +1202,9 @@ public function putJob(array $params = []) /** * Creates an inference trained model. * - * $params['model_id'] = (string) The ID of the trained models to store - * $params['body'] = (array) The trained model configuration (Required) + * $params['model_id'] = (string) The ID of the trained models to store + * $params['defer_definition_decompression'] = (boolean) If set to `true` and a `compressed_definition` is provided, the request defers definition decompression and skips relevant validations. (Default = false) + * $params['body'] = (array) The trained model configuration (Required) * * @param array $params Associative array of parameters * @return array diff --git a/src/Elasticsearch/Namespaces/MonitoringNamespace.php b/src/Elasticsearch/Namespaces/MonitoringNamespace.php index 9ff8c0db7..9900dcd35 100644 --- a/src/Elasticsearch/Namespaces/MonitoringNamespace.php +++ b/src/Elasticsearch/Namespaces/MonitoringNamespace.php @@ -22,7 +22,7 @@ * Class MonitoringNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class MonitoringNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/NodesNamespace.php b/src/Elasticsearch/Namespaces/NodesNamespace.php index 3a84ce474..9e21dd77a 100644 --- a/src/Elasticsearch/Namespaces/NodesNamespace.php +++ b/src/Elasticsearch/Namespaces/NodesNamespace.php @@ -22,7 +22,7 @@ * Class NodesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class NodesNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/RollupNamespace.php b/src/Elasticsearch/Namespaces/RollupNamespace.php index 3e24d4eba..457173010 100644 --- a/src/Elasticsearch/Namespaces/RollupNamespace.php +++ b/src/Elasticsearch/Namespaces/RollupNamespace.php @@ -22,7 +22,7 @@ * Class RollupNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class RollupNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php b/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php index 23eb02f61..080ccf648 100644 --- a/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php +++ b/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php @@ -22,7 +22,7 @@ * Class SearchableSnapshotsNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class SearchableSnapshotsNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SecurityNamespace.php b/src/Elasticsearch/Namespaces/SecurityNamespace.php index 3edc7e719..a61487ed6 100644 --- a/src/Elasticsearch/Namespaces/SecurityNamespace.php +++ b/src/Elasticsearch/Namespaces/SecurityNamespace.php @@ -22,7 +22,7 @@ * Class SecurityNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class SecurityNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/ShutdownNamespace.php b/src/Elasticsearch/Namespaces/ShutdownNamespace.php index fec9cb55a..c51d6e2ad 100644 --- a/src/Elasticsearch/Namespaces/ShutdownNamespace.php +++ b/src/Elasticsearch/Namespaces/ShutdownNamespace.php @@ -22,7 +22,7 @@ * Class ShutdownNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class ShutdownNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SlmNamespace.php b/src/Elasticsearch/Namespaces/SlmNamespace.php index 95c680d19..29f7a599e 100644 --- a/src/Elasticsearch/Namespaces/SlmNamespace.php +++ b/src/Elasticsearch/Namespaces/SlmNamespace.php @@ -22,7 +22,7 @@ * Class SlmNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class SlmNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SnapshotNamespace.php b/src/Elasticsearch/Namespaces/SnapshotNamespace.php index 9a90ddc58..879a3b38b 100644 --- a/src/Elasticsearch/Namespaces/SnapshotNamespace.php +++ b/src/Elasticsearch/Namespaces/SnapshotNamespace.php @@ -22,7 +22,7 @@ * Class SnapshotNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class SnapshotNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SqlNamespace.php b/src/Elasticsearch/Namespaces/SqlNamespace.php index 575788860..0e54335aa 100644 --- a/src/Elasticsearch/Namespaces/SqlNamespace.php +++ b/src/Elasticsearch/Namespaces/SqlNamespace.php @@ -22,7 +22,7 @@ * Class SqlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class SqlNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SslNamespace.php b/src/Elasticsearch/Namespaces/SslNamespace.php index 750adc49c..a073a5bdb 100644 --- a/src/Elasticsearch/Namespaces/SslNamespace.php +++ b/src/Elasticsearch/Namespaces/SslNamespace.php @@ -22,7 +22,7 @@ * Class SslNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class SslNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/TasksNamespace.php b/src/Elasticsearch/Namespaces/TasksNamespace.php index 3c1fb2755..d9a13b4bf 100644 --- a/src/Elasticsearch/Namespaces/TasksNamespace.php +++ b/src/Elasticsearch/Namespaces/TasksNamespace.php @@ -22,7 +22,7 @@ * Class TasksNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class TasksNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/TextStructureNamespace.php b/src/Elasticsearch/Namespaces/TextStructureNamespace.php index 44879cd27..f578382af 100644 --- a/src/Elasticsearch/Namespaces/TextStructureNamespace.php +++ b/src/Elasticsearch/Namespaces/TextStructureNamespace.php @@ -22,7 +22,7 @@ * Class TextStructureNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class TextStructureNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/TransformNamespace.php b/src/Elasticsearch/Namespaces/TransformNamespace.php index dff396e0f..e951556df 100644 --- a/src/Elasticsearch/Namespaces/TransformNamespace.php +++ b/src/Elasticsearch/Namespaces/TransformNamespace.php @@ -22,7 +22,7 @@ * Class TransformNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class TransformNamespace extends AbstractNamespace { @@ -98,7 +98,8 @@ public function getTransformStats(array $params = []) /** * Previews a transform. * - * $params['body'] = (array) The definition for the transform to preview (Required) + * $params['transform_id'] = (string) The id of the transform to preview. + * $params['body'] = (array) The definition for the transform to preview * * @param array $params Associative array of parameters * @return array @@ -106,11 +107,13 @@ public function getTransformStats(array $params = []) */ public function previewTransform(array $params = []) { + $transform_id = $this->extractArgument($params, 'transform_id'); $body = $this->extractArgument($params, 'body'); $endpointBuilder = $this->endpoints; $endpoint = $endpointBuilder('Transform\PreviewTransform'); $endpoint->setParams($params); + $endpoint->setTransformId($transform_id); $endpoint->setBody($body); return $this->performRequest($endpoint); diff --git a/src/Elasticsearch/Namespaces/WatcherNamespace.php b/src/Elasticsearch/Namespaces/WatcherNamespace.php index b44b07956..3947c4182 100644 --- a/src/Elasticsearch/Namespaces/WatcherNamespace.php +++ b/src/Elasticsearch/Namespaces/WatcherNamespace.php @@ -22,7 +22,7 @@ * Class WatcherNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class WatcherNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/XpackNamespace.php b/src/Elasticsearch/Namespaces/XpackNamespace.php index 5d1ded1a8..6848f66f3 100644 --- a/src/Elasticsearch/Namespaces/XpackNamespace.php +++ b/src/Elasticsearch/Namespaces/XpackNamespace.php @@ -22,7 +22,7 @@ * Class XpackNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.15.0-SNAPSHOT (9fb2eb1c5228090f825b0a28287b80a0e446b2a8) + * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) */ class XpackNamespace extends AbstractNamespace { From 769d9cfb6e66f51562dbf235dabd2b9c2279eb1a Mon Sep 17 00:00:00 2001 From: James Rodewig <40268737+jrodewig@users.noreply.github.com> Date: Tue, 12 Oct 2021 19:33:48 -0400 Subject: [PATCH 43/81] [DOCS] Retitle Elasticsearch PHP Client doc book --- docs/index.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.asciidoc b/docs/index.asciidoc index 9c19b7146..5d91df689 100644 --- a/docs/index.asciidoc +++ b/docs/index.asciidoc @@ -1,5 +1,5 @@ -= Elasticsearch-PHP += Elasticsearch PHP Client include::{asciidoc-dir}/../../shared/attributes.asciidoc[] From 30fc198ba38ade9ee3420e907ea97a527e26e32b Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Mon, 18 Oct 2021 16:31:21 +0200 Subject: [PATCH 44/81] Updated YAML Clean Up --- tests/Elasticsearch/Tests/Utility.php | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/tests/Elasticsearch/Tests/Utility.php b/tests/Elasticsearch/Tests/Utility.php index 7617a9484..f6dd8df8b 100644 --- a/tests/Elasticsearch/Tests/Utility.php +++ b/tests/Elasticsearch/Tests/Utility.php @@ -304,9 +304,11 @@ private static function wipeDataStreams(Client $client): void } catch (ElasticsearchException $e) { // We hit a version of ES that doesn't understand expand_wildcards, try again without it try { - $client->indices()->deleteDataStream([ - 'name' => '*' - ]); + if (getenv('TEST_SUITE') === 'platinum') { + $client->indices()->deleteDataStream([ + 'name' => '*' + ]); + } } catch (ElasticsearchException $e) { // We hit a version of ES that doesn't serialize DeleteDataStreamAction.Request#wildcardExpressionsOriginallySpecified // field or that doesn't support data streams so it's safe to ignore @@ -476,6 +478,9 @@ private static function isXPackTemplate(string $name): bool if (strpos($name, '.transform-') !== false) { return true; } + if (strpos($name, '.deprecation-') !== false) { + return true; + } switch ($name) { case ".watches": case "logstash-index-template": @@ -577,13 +582,11 @@ private static function deleteAllTasks(Client $client): void */ private static function deleteAllNodeShutdownMetadata(Client $client) { - $nodes = $client->shutdown()->getNode(); - if (isset($nodes['_nodes']) && isset($nodes['cluster_name'])) { - // If the response contains these two keys, the feature flag isn't enabled on this cluster, so skip out now. - // We can't check the system property directly because it only gets set for the cluster under test's JVM, not for the test - // runner's JVM. + if (getenv('TEST_SUITE') !== 'platinum' || version_compare(self::getVersion($client), '7.15.0') < 0) { + // Node shutdown APIs are only present in xpack from 7.15+ return; } + $nodes = $client->shutdown()->getNode(); foreach ($nodes['nodes'] as $node) { $client->shutdown()->deleteNode($node['node_id']); } From c8023b3718469fa764457868c3a67fda477fbc38 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Tue, 23 Nov 2021 21:28:02 +0100 Subject: [PATCH 45/81] Fix for #1171 utf-16 issue in smartserializer --- src/Elasticsearch/Serializers/SmartSerializer.php | 10 +++++++--- .../Tests/Serializers/SmartSerializerTest.php | 14 ++++++++++++++ 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/src/Elasticsearch/Serializers/SmartSerializer.php b/src/Elasticsearch/Serializers/SmartSerializer.php index dac88dee3..4b0165f22 100644 --- a/src/Elasticsearch/Serializers/SmartSerializer.php +++ b/src/Elasticsearch/Serializers/SmartSerializer.php @@ -20,6 +20,7 @@ use Elasticsearch\Common\Exceptions; use Elasticsearch\Common\Exceptions\Serializer\JsonErrorException; +use JsonException; if (!defined('JSON_INVALID_UTF8_SUBSTITUTE')) { //PHP < 7.2 Define it as 0 so it does nothing @@ -84,9 +85,12 @@ private function decode(?string $data): array try { $result = json_decode($data, true, 512, JSON_THROW_ON_ERROR); return $result; - } catch (\JsonException $e) { - $result = $result ?? []; - throw new JsonErrorException($e->getCode(), $data, $result); + } catch (JsonException $e) { + switch ($e->getCode()) { + case JSON_ERROR_UTF16: + return $this->decode(str_replace('\\', '\\\\', $data)); + } + throw new JsonErrorException($e->getCode(), $data, $result ?? []); } } diff --git a/tests/Elasticsearch/Tests/Serializers/SmartSerializerTest.php b/tests/Elasticsearch/Tests/Serializers/SmartSerializerTest.php index 7ad77e794..96ad30c56 100644 --- a/tests/Elasticsearch/Tests/Serializers/SmartSerializerTest.php +++ b/tests/Elasticsearch/Tests/Serializers/SmartSerializerTest.php @@ -45,4 +45,18 @@ public function testThrowJsonErrorException() $result = $this->serializer->deserialize('{ "foo" : bar" }', []); } + + /** + * Single unpaired UTF-16 surrogate in unicode escape + * + * @requires PHP 7.3 + * @see https://github.com/elastic/elasticsearch-php/issues/1171 + */ + public function testSingleUnpairedUTF16SurrogateInUnicodeEscape() + { + $json = '{ "data": "ud83d\ude4f" }'; + + $result = $this->serializer->deserialize($json, []); + $this->assertEquals($result['data'], 'ud83d\ude4f'); + } } From 3fff30d27e23fed6afc6bed05df8fec798efa96c Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Tue, 30 Nov 2021 17:40:15 +0100 Subject: [PATCH 46/81] Added PHP 8.1 job --- .ci/test-matrix.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.ci/test-matrix.yml b/.ci/test-matrix.yml index 0bec1291b..0970fef2f 100644 --- a/.ci/test-matrix.yml +++ b/.ci/test-matrix.yml @@ -3,6 +3,7 @@ STACK_VERSION: - 7.x-SNAPSHOT PHP_VERSION: + - 8.1-cli - 8.0-cli - 7.4-cli - 7.3-cli From fd634a640ff113bfe84778253b257b93dc8a9273 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Mon, 6 Dec 2021 14:47:21 +0100 Subject: [PATCH 47/81] Fix for #1171 utf-16 issue in SmartSerializer (#1179) * Fix for #1171 utf-16 issue in smartserializer * Removed recursive call in SmartSerializer::decode --- src/Elasticsearch/Serializers/SmartSerializer.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Elasticsearch/Serializers/SmartSerializer.php b/src/Elasticsearch/Serializers/SmartSerializer.php index 4b0165f22..3a79ff188 100644 --- a/src/Elasticsearch/Serializers/SmartSerializer.php +++ b/src/Elasticsearch/Serializers/SmartSerializer.php @@ -88,7 +88,13 @@ private function decode(?string $data): array } catch (JsonException $e) { switch ($e->getCode()) { case JSON_ERROR_UTF16: - return $this->decode(str_replace('\\', '\\\\', $data)); + try { + $data = str_replace('\\', '\\\\', $data); + $result = json_decode($data, true, 512, JSON_THROW_ON_ERROR); + return $result; + } catch (JsonException $e) { + throw new JsonErrorException($e->getCode(), $data, $result ?? []); + } } throw new JsonErrorException($e->getCode(), $data, $result ?? []); } From e0bc5fdb790c429bb7fa51e89a87a3522cf3a2cf Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Mon, 6 Dec 2021 14:53:10 +0100 Subject: [PATCH 48/81] Updated STACK_VERSION to 7.16-SNAPSHOT --- .ci/test-matrix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/test-matrix.yml b/.ci/test-matrix.yml index 0970fef2f..c380ba43d 100644 --- a/.ci/test-matrix.yml +++ b/.ci/test-matrix.yml @@ -1,6 +1,6 @@ --- STACK_VERSION: - - 7.x-SNAPSHOT + - 7.16-SNAPSHOT PHP_VERSION: - 8.1-cli From 02b24c7f9ce144551e6bab8801b86d7bfdbed18e Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Tue, 7 Dec 2021 12:10:08 +0100 Subject: [PATCH 49/81] Fix #1176 adding includePortInHostHeader in fromConfig (#1181) * Fix #1176 adding includePortInHostHeader in fromConfig * Added EXTRA_METHODS_FROM_CONFIG const --- src/Elasticsearch/ClientBuilder.php | 4 ++- .../Elasticsearch/Tests/ClientBuilderTest.php | 32 +++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/src/Elasticsearch/ClientBuilder.php b/src/Elasticsearch/ClientBuilder.php index 0be2affee..e643b878e 100644 --- a/src/Elasticsearch/ClientBuilder.php +++ b/src/Elasticsearch/ClientBuilder.php @@ -42,6 +42,8 @@ class ClientBuilder { + const ALLOWED_METHODS_FROM_CONFIG = ['includePortInHostHeader']; + /** * @var Transport */ @@ -197,7 +199,7 @@ public static function fromConfig(array $config, bool $quiet = false): Client { $builder = new static; foreach ($config as $key => $value) { - $method = "set$key"; + $method = in_array($key, self::ALLOWED_METHODS_FROM_CONFIG) ? $key : "set$key"; $reflection = new ReflectionClass($builder); if ($reflection->hasMethod($method)) { $func = $reflection->getMethod($method); diff --git a/tests/Elasticsearch/Tests/ClientBuilderTest.php b/tests/Elasticsearch/Tests/ClientBuilderTest.php index 330e48aaf..7f754ad38 100644 --- a/tests/Elasticsearch/Tests/ClientBuilderTest.php +++ b/tests/Elasticsearch/Tests/ClientBuilderTest.php @@ -216,6 +216,9 @@ public function testFromConfig(array $params) $this->assertInstanceOf(Client::class, $client); } + /** + * @doesNotPerformAssertions + */ public function testFromConfigQuiteTrueWithUnknownKey() { $client = ClientBuilder::fromConfig( @@ -344,4 +347,33 @@ public function testCompatibilityHeaderDefaultIsOff() $this->assertNotContains('application/vnd.elasticsearch+json;compatible-with=7', $request['request']['headers']['Accept']); } } + + /** + * @see https://github.com/elastic/elasticsearch-php/issues/1176 + */ + public function testFromConfigWithIncludePortInHostHeader() + { + $url = 'localhost:1234'; + $config = [ + 'hosts' => [$url], + 'includePortInHostHeader' => true, + 'connectionParams' => [ + 'client' => [ + 'verbose' => true + ] + ], + ]; + + $client = ClientBuilder::fromConfig($config); + + $this->assertInstanceOf(Client::class, $client); + + try { + $result = $client->info(); + } catch (ElasticsearchException $e) { + $request = $client->transport->getLastConnection()->getLastRequestInfo(); + $this->assertTrue(isset($request['request']['headers']['Host'][0])); + $this->assertEquals($url, $request['request']['headers']['Host'][0]); + } + } } From c3164a04c03fc84156b81d1bac154e9ecba996b0 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Tue, 7 Dec 2021 12:27:01 +0100 Subject: [PATCH 50/81] Updated endpoints with ES 7.16 --- src/Elasticsearch/Client.php | 45 ++++------- .../Endpoints/AsyncSearch/Delete.php | 2 +- .../Endpoints/AsyncSearch/Get.php | 2 +- .../Endpoints/AsyncSearch/Status.php | 2 +- .../Endpoints/AsyncSearch/Submit.php | 2 +- .../Autoscaling/DeleteAutoscalingPolicy.php | 2 +- .../Autoscaling/GetAutoscalingCapacity.php | 2 +- .../Autoscaling/GetAutoscalingPolicy.php | 2 +- .../Autoscaling/PutAutoscalingPolicy.php | 2 +- src/Elasticsearch/Endpoints/Bulk.php | 2 +- src/Elasticsearch/Endpoints/Cat/Aliases.php | 2 +- .../Endpoints/Cat/Allocation.php | 2 +- src/Elasticsearch/Endpoints/Cat/Count.php | 2 +- src/Elasticsearch/Endpoints/Cat/Fielddata.php | 2 +- src/Elasticsearch/Endpoints/Cat/Health.php | 2 +- src/Elasticsearch/Endpoints/Cat/Help.php | 2 +- src/Elasticsearch/Endpoints/Cat/Indices.php | 2 +- src/Elasticsearch/Endpoints/Cat/Master.php | 2 +- .../Endpoints/Cat/MlDataFrameAnalytics.php | 2 +- .../Endpoints/Cat/MlDatafeeds.php | 2 +- src/Elasticsearch/Endpoints/Cat/MlJobs.php | 2 +- .../Endpoints/Cat/MlTrainedModels.php | 2 +- src/Elasticsearch/Endpoints/Cat/NodeAttrs.php | 2 +- src/Elasticsearch/Endpoints/Cat/Nodes.php | 2 +- .../Endpoints/Cat/PendingTasks.php | 2 +- src/Elasticsearch/Endpoints/Cat/Plugins.php | 2 +- src/Elasticsearch/Endpoints/Cat/Recovery.php | 2 +- .../Endpoints/Cat/Repositories.php | 2 +- src/Elasticsearch/Endpoints/Cat/Segments.php | 2 +- src/Elasticsearch/Endpoints/Cat/Shards.php | 2 +- src/Elasticsearch/Endpoints/Cat/Snapshots.php | 2 +- src/Elasticsearch/Endpoints/Cat/Tasks.php | 2 +- src/Elasticsearch/Endpoints/Cat/Templates.php | 2 +- .../Endpoints/Cat/ThreadPool.php | 2 +- .../Endpoints/Cat/Transforms.php | 2 +- .../Endpoints/Ccr/DeleteAutoFollowPattern.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Follow.php | 2 +- .../Endpoints/Ccr/FollowInfo.php | 2 +- .../Endpoints/Ccr/FollowStats.php | 2 +- .../Endpoints/Ccr/ForgetFollower.php | 2 +- .../Endpoints/Ccr/GetAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/PauseAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/PauseFollow.php | 2 +- .../Endpoints/Ccr/PutAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/ResumeAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/ResumeFollow.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Stats.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Unfollow.php | 2 +- src/Elasticsearch/Endpoints/ClearScroll.php | 2 +- .../Endpoints/ClosePointInTime.php | 2 +- .../Endpoints/Cluster/AllocationExplain.php | 2 +- .../Cluster/DeleteComponentTemplate.php | 2 +- .../Cluster/DeleteVotingConfigExclusions.php | 2 +- .../Cluster/ExistsComponentTemplate.php | 2 +- .../Cluster/GetComponentTemplate.php | 2 +- .../Endpoints/Cluster/GetSettings.php | 2 +- .../Endpoints/Cluster/Health.php | 2 +- .../Endpoints/Cluster/PendingTasks.php | 2 +- .../Cluster/PostVotingConfigExclusions.php | 2 +- .../Cluster/PutComponentTemplate.php | 2 +- .../Endpoints/Cluster/PutSettings.php | 2 +- .../Endpoints/Cluster/RemoteInfo.php | 2 +- .../Endpoints/Cluster/Reroute.php | 2 +- src/Elasticsearch/Endpoints/Cluster/State.php | 2 +- src/Elasticsearch/Endpoints/Cluster/Stats.php | 2 +- src/Elasticsearch/Endpoints/Count.php | 2 +- src/Elasticsearch/Endpoints/Create.php | 2 +- .../DanglingIndices/DeleteDanglingIndex.php | 2 +- .../DanglingIndices/ImportDanglingIndex.php | 2 +- .../DanglingIndices/ListDanglingIndices.php | 2 +- .../DeleteTransform.php | 2 +- .../GetTransform.php | 2 +- .../GetTransformStats.php | 2 +- .../PreviewTransform.php | 2 +- .../PutTransform.php | 2 +- .../StartTransform.php | 2 +- .../StopTransform.php | 2 +- .../UpdateTransform.php | 2 +- src/Elasticsearch/Endpoints/Delete.php | 2 +- src/Elasticsearch/Endpoints/DeleteByQuery.php | 5 +- .../Endpoints/DeleteByQueryRethrottle.php | 2 +- src/Elasticsearch/Endpoints/DeleteScript.php | 2 +- .../Endpoints/Enrich/DeletePolicy.php | 2 +- .../Endpoints/Enrich/ExecutePolicy.php | 2 +- .../Endpoints/Enrich/GetPolicy.php | 2 +- .../Endpoints/Enrich/PutPolicy.php | 2 +- src/Elasticsearch/Endpoints/Enrich/Stats.php | 2 +- src/Elasticsearch/Endpoints/Eql/Delete.php | 2 +- src/Elasticsearch/Endpoints/Eql/Get.php | 2 +- src/Elasticsearch/Endpoints/Eql/GetStatus.php | 2 +- src/Elasticsearch/Endpoints/Eql/Search.php | 2 +- src/Elasticsearch/Endpoints/Exists.php | 2 +- src/Elasticsearch/Endpoints/ExistsSource.php | 2 +- src/Elasticsearch/Endpoints/Explain.php | 2 +- .../Endpoints/Features/GetFeatures.php | 2 +- .../Endpoints/Features/ResetFeatures.php | 2 +- src/Elasticsearch/Endpoints/FieldCaps.php | 2 +- .../Endpoints/Fleet/GlobalCheckpoints.php | 2 +- src/Elasticsearch/Endpoints/Fleet/Msearch.php | 80 +++++++++++++++++++ src/Elasticsearch/Endpoints/Fleet/Search.php | 65 +++++++++++++++ src/Elasticsearch/Endpoints/Get.php | 2 +- src/Elasticsearch/Endpoints/GetScript.php | 2 +- .../Endpoints/GetScriptContext.php | 2 +- .../Endpoints/GetScriptLanguages.php | 2 +- src/Elasticsearch/Endpoints/GetSource.php | 2 +- src/Elasticsearch/Endpoints/Graph/Explore.php | 2 +- .../Endpoints/Ilm/DeleteLifecycle.php | 2 +- .../Endpoints/Ilm/ExplainLifecycle.php | 2 +- .../Endpoints/Ilm/GetLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Ilm/GetStatus.php | 2 +- .../Endpoints/Ilm/MigrateToDataTiers.php | 2 +- .../Endpoints/Ilm/MoveToStep.php | 2 +- .../Endpoints/Ilm/PutLifecycle.php | 2 +- .../Endpoints/Ilm/RemovePolicy.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Retry.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Start.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Stop.php | 2 +- src/Elasticsearch/Endpoints/Index.php | 2 +- .../Endpoints/Indices/AddBlock.php | 2 +- .../Endpoints/Indices/Analyze.php | 2 +- .../Endpoints/Indices/ClearCache.php | 2 +- .../Endpoints/Indices/CloneIndices.php | 2 +- src/Elasticsearch/Endpoints/Indices/Close.php | 2 +- .../Endpoints/Indices/Create.php | 2 +- .../Endpoints/Indices/CreateDataStream.php | 2 +- .../Endpoints/Indices/DataStreamsStats.php | 2 +- .../Endpoints/Indices/Delete.php | 2 +- .../Endpoints/Indices/DeleteAlias.php | 2 +- .../Endpoints/Indices/DeleteDataStream.php | 2 +- .../Endpoints/Indices/DeleteIndexTemplate.php | 2 +- .../Endpoints/Indices/DeleteTemplate.php | 2 +- .../Endpoints/Indices/DiskUsage.php | 2 +- .../Endpoints/Indices/Exists.php | 2 +- .../Endpoints/Indices/ExistsAlias.php | 2 +- .../Endpoints/Indices/ExistsIndexTemplate.php | 2 +- .../Endpoints/Indices/ExistsTemplate.php | 2 +- .../Endpoints/Indices/ExistsType.php | 2 +- .../Endpoints/Indices/FieldUsageStats.php | 2 +- src/Elasticsearch/Endpoints/Indices/Flush.php | 2 +- .../Endpoints/Indices/FlushSynced.php | 2 +- .../Endpoints/Indices/ForceMerge.php | 2 +- .../Endpoints/Indices/Freeze.php | 2 +- src/Elasticsearch/Endpoints/Indices/Get.php | 2 +- .../Endpoints/Indices/GetAlias.php | 2 +- .../Endpoints/Indices/GetDataStream.php | 2 +- .../Endpoints/Indices/GetFieldMapping.php | 2 +- .../Endpoints/Indices/GetIndexTemplate.php | 5 +- .../Endpoints/Indices/GetMapping.php | 2 +- .../Endpoints/Indices/GetSettings.php | 2 +- .../Endpoints/Indices/GetTemplate.php | 2 +- .../Endpoints/Indices/GetUpgrade.php | 2 +- .../Endpoints/Indices/MigrateToDataStream.php | 2 +- .../Endpoints/Indices/ModifyDataStream.php | 58 ++++++++++++++ src/Elasticsearch/Endpoints/Indices/Open.php | 2 +- .../Endpoints/Indices/PromoteDataStream.php | 2 +- .../Endpoints/Indices/PutAlias.php | 2 +- .../Endpoints/Indices/PutIndexTemplate.php | 2 +- .../Endpoints/Indices/PutMapping.php | 2 +- .../Endpoints/Indices/PutSettings.php | 2 +- .../Endpoints/Indices/PutTemplate.php | 2 +- .../Endpoints/Indices/Recovery.php | 2 +- .../Endpoints/Indices/Refresh.php | 2 +- .../Indices/ReloadSearchAnalyzers.php | 2 +- .../Endpoints/Indices/ResolveIndex.php | 2 +- .../Endpoints/Indices/Rollover.php | 2 +- .../Endpoints/Indices/Segments.php | 2 +- .../Endpoints/Indices/ShardStores.php | 2 +- .../Endpoints/Indices/Shrink.php | 2 +- .../Indices/SimulateIndexTemplate.php | 2 +- .../Endpoints/Indices/SimulateTemplate.php | 2 +- src/Elasticsearch/Endpoints/Indices/Split.php | 2 +- src/Elasticsearch/Endpoints/Indices/Stats.php | 2 +- .../Endpoints/Indices/Unfreeze.php | 2 +- .../Endpoints/Indices/UpdateAliases.php | 2 +- .../Endpoints/Indices/Upgrade.php | 2 +- .../Endpoints/Indices/ValidateQuery.php | 2 +- src/Elasticsearch/Endpoints/Info.php | 2 +- .../Endpoints/Ingest/DeletePipeline.php | 2 +- .../Endpoints/Ingest/GeoIpStats.php | 2 +- .../Endpoints/Ingest/GetPipeline.php | 2 +- .../Endpoints/Ingest/ProcessorGrok.php | 2 +- .../Endpoints/Ingest/PutPipeline.php | 3 +- .../Endpoints/Ingest/Simulate.php | 2 +- .../Endpoints/License/Delete.php | 2 +- src/Elasticsearch/Endpoints/License/Get.php | 2 +- .../Endpoints/License/GetBasicStatus.php | 2 +- .../Endpoints/License/GetTrialStatus.php | 2 +- src/Elasticsearch/Endpoints/License/Post.php | 2 +- .../Endpoints/License/PostStartBasic.php | 2 +- .../Endpoints/License/PostStartTrial.php | 2 +- .../Endpoints/Logstash/DeletePipeline.php | 2 +- .../Endpoints/Logstash/GetPipeline.php | 2 +- .../Endpoints/Logstash/PutPipeline.php | 2 +- src/Elasticsearch/Endpoints/MTermVectors.php | 2 +- src/Elasticsearch/Endpoints/Mget.php | 2 +- .../Endpoints/Migration/Deprecations.php | 2 +- .../Migration/GetFeatureUpgradeStatus.php | 48 +++++++++++ .../Migration/PostFeatureUpgrade.php | 48 +++++++++++ src/Elasticsearch/Endpoints/Ml/CloseJob.php | 2 +- .../Endpoints/Ml/DeleteCalendar.php | 2 +- .../Endpoints/Ml/DeleteCalendarEvent.php | 2 +- .../Endpoints/Ml/DeleteCalendarJob.php | 2 +- .../Endpoints/Ml/DeleteDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/DeleteDatafeed.php | 2 +- .../Endpoints/Ml/DeleteExpiredData.php | 2 +- .../Endpoints/Ml/DeleteFilter.php | 2 +- .../Endpoints/Ml/DeleteForecast.php | 2 +- src/Elasticsearch/Endpoints/Ml/DeleteJob.php | 2 +- .../Endpoints/Ml/DeleteModelSnapshot.php | 2 +- .../Endpoints/Ml/DeleteTrainedModel.php | 2 +- .../Endpoints/Ml/DeleteTrainedModelAlias.php | 2 +- .../Endpoints/Ml/EstimateModelMemory.php | 2 +- .../Endpoints/Ml/EvaluateDataFrame.php | 2 +- .../Ml/ExplainDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/FindFileStructure.php | 2 +- src/Elasticsearch/Endpoints/Ml/FlushJob.php | 2 +- src/Elasticsearch/Endpoints/Ml/Forecast.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetBuckets.php | 2 +- .../Endpoints/Ml/GetCalendarEvents.php | 2 +- .../Endpoints/Ml/GetCalendars.php | 2 +- .../Endpoints/Ml/GetCategories.php | 2 +- .../Endpoints/Ml/GetDataFrameAnalytics.php | 2 +- .../Ml/GetDataFrameAnalyticsStats.php | 2 +- .../Endpoints/Ml/GetDatafeedStats.php | 2 +- .../Endpoints/Ml/GetDatafeeds.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetFilters.php | 2 +- .../Endpoints/Ml/GetInfluencers.php | 2 +- .../Endpoints/Ml/GetJobStats.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetJobs.php | 2 +- .../Endpoints/Ml/GetModelSnapshots.php | 2 +- .../Endpoints/Ml/GetOverallBuckets.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetRecords.php | 2 +- .../Endpoints/Ml/GetTrainedModels.php | 2 +- .../Endpoints/Ml/GetTrainedModelsStats.php | 2 +- src/Elasticsearch/Endpoints/Ml/Info.php | 2 +- src/Elasticsearch/Endpoints/Ml/OpenJob.php | 2 +- .../Endpoints/Ml/PostCalendarEvents.php | 2 +- src/Elasticsearch/Endpoints/Ml/PostData.php | 2 +- .../Ml/PreviewDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/PreviewDatafeed.php | 2 +- .../Endpoints/Ml/PutCalendar.php | 2 +- .../Endpoints/Ml/PutCalendarJob.php | 2 +- .../Endpoints/Ml/PutDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/PutDatafeed.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutFilter.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutJob.php | 2 +- .../Endpoints/Ml/PutTrainedModel.php | 2 +- .../Endpoints/Ml/PutTrainedModelAlias.php | 2 +- src/Elasticsearch/Endpoints/Ml/ResetJob.php | 2 +- .../Endpoints/Ml/RevertModelSnapshot.php | 2 +- .../Endpoints/Ml/SetUpgradeMode.php | 2 +- .../Endpoints/Ml/StartDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/StartDatafeed.php | 2 +- .../Endpoints/Ml/StopDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/StopDatafeed.php | 2 +- .../Endpoints/Ml/UpdateDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/UpdateDatafeed.php | 2 +- .../Endpoints/Ml/UpdateFilter.php | 2 +- src/Elasticsearch/Endpoints/Ml/UpdateJob.php | 2 +- .../Endpoints/Ml/UpdateModelSnapshot.php | 2 +- .../Endpoints/Ml/UpgradeJobSnapshot.php | 2 +- src/Elasticsearch/Endpoints/Ml/Validate.php | 2 +- .../Endpoints/Ml/ValidateDetector.php | 2 +- .../Endpoints/Monitoring/Bulk.php | 2 +- src/Elasticsearch/Endpoints/Msearch.php | 2 +- .../Endpoints/MsearchTemplate.php | 2 +- .../ClearRepositoriesMeteringArchive.php | 2 +- .../Nodes/GetRepositoriesMeteringInfo.php | 2 +- .../Endpoints/Nodes/HotThreads.php | 3 +- src/Elasticsearch/Endpoints/Nodes/Info.php | 2 +- .../Endpoints/Nodes/ReloadSecureSettings.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Stats.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Usage.php | 2 +- .../Endpoints/OpenPointInTime.php | 2 +- src/Elasticsearch/Endpoints/Ping.php | 2 +- src/Elasticsearch/Endpoints/PutScript.php | 2 +- src/Elasticsearch/Endpoints/RankEval.php | 2 +- src/Elasticsearch/Endpoints/Reindex.php | 2 +- .../Endpoints/ReindexRethrottle.php | 2 +- .../Endpoints/RenderSearchTemplate.php | 2 +- .../Endpoints/Rollup/DeleteJob.php | 2 +- .../Endpoints/Rollup/GetJobs.php | 2 +- .../Endpoints/Rollup/GetRollupCaps.php | 2 +- .../Endpoints/Rollup/GetRollupIndexCaps.php | 2 +- src/Elasticsearch/Endpoints/Rollup/PutJob.php | 2 +- src/Elasticsearch/Endpoints/Rollup/Rollup.php | 2 +- .../Endpoints/Rollup/RollupSearch.php | 2 +- .../Endpoints/Rollup/StartJob.php | 2 +- .../Endpoints/Rollup/StopJob.php | 2 +- .../Endpoints/ScriptsPainlessExecute.php | 2 +- src/Elasticsearch/Endpoints/Scroll.php | 2 +- src/Elasticsearch/Endpoints/Search.php | 2 +- src/Elasticsearch/Endpoints/SearchMvt.php | 5 +- src/Elasticsearch/Endpoints/SearchShards.php | 2 +- .../Endpoints/SearchTemplate.php | 2 +- .../SearchableSnapshots/CacheStats.php | 2 +- .../SearchableSnapshots/ClearCache.php | 2 +- .../Endpoints/SearchableSnapshots/Mount.php | 2 +- .../SearchableSnapshots/RepositoryStats.php | 2 +- .../Endpoints/SearchableSnapshots/Stats.php | 2 +- .../Endpoints/Security/Authenticate.php | 2 +- .../Endpoints/Security/ChangePassword.php | 2 +- .../Endpoints/Security/ClearApiKeyCache.php | 2 +- .../Security/ClearCachedPrivileges.php | 2 +- .../Endpoints/Security/ClearCachedRealms.php | 2 +- .../Endpoints/Security/ClearCachedRoles.php | 2 +- .../Security/ClearCachedServiceTokens.php | 2 +- .../Endpoints/Security/CreateApiKey.php | 2 +- .../Endpoints/Security/CreateServiceToken.php | 2 +- .../Endpoints/Security/DeletePrivileges.php | 2 +- .../Endpoints/Security/DeleteRole.php | 2 +- .../Endpoints/Security/DeleteRoleMapping.php | 2 +- .../Endpoints/Security/DeleteServiceToken.php | 2 +- .../Endpoints/Security/DeleteUser.php | 2 +- .../Endpoints/Security/DisableUser.php | 2 +- .../Endpoints/Security/EnableUser.php | 2 +- .../Endpoints/Security/GetApiKey.php | 2 +- .../Security/GetBuiltinPrivileges.php | 2 +- .../Endpoints/Security/GetPrivileges.php | 2 +- .../Endpoints/Security/GetRole.php | 2 +- .../Endpoints/Security/GetRoleMapping.php | 2 +- .../Endpoints/Security/GetServiceAccounts.php | 2 +- .../Security/GetServiceCredentials.php | 2 +- .../Endpoints/Security/GetToken.php | 2 +- .../Endpoints/Security/GetUser.php | 2 +- .../Endpoints/Security/GetUserPrivileges.php | 2 +- .../Endpoints/Security/GrantApiKey.php | 2 +- .../Endpoints/Security/HasPrivileges.php | 2 +- .../Endpoints/Security/InvalidateApiKey.php | 2 +- .../Endpoints/Security/InvalidateToken.php | 2 +- .../Endpoints/Security/PutPrivileges.php | 2 +- .../Endpoints/Security/PutRole.php | 2 +- .../Endpoints/Security/PutRoleMapping.php | 2 +- .../Endpoints/Security/PutUser.php | 2 +- .../Endpoints/Security/QueryApiKeys.php | 2 +- .../Endpoints/Security/SamlAuthenticate.php | 2 +- .../Endpoints/Security/SamlCompleteLogout.php | 2 +- .../Endpoints/Security/SamlInvalidate.php | 2 +- .../Endpoints/Security/SamlLogout.php | 2 +- .../Security/SamlPrepareAuthentication.php | 2 +- .../Security/SamlServiceProviderMetadata.php | 2 +- .../Endpoints/Shutdown/DeleteNode.php | 2 +- .../Endpoints/Shutdown/GetNode.php | 2 +- .../Endpoints/Shutdown/PutNode.php | 2 +- .../Endpoints/Slm/DeleteLifecycle.php | 2 +- .../Endpoints/Slm/ExecuteLifecycle.php | 2 +- .../Endpoints/Slm/ExecuteRetention.php | 2 +- .../Endpoints/Slm/GetLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Slm/GetStats.php | 2 +- src/Elasticsearch/Endpoints/Slm/GetStatus.php | 2 +- .../Endpoints/Slm/PutLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Slm/Start.php | 2 +- src/Elasticsearch/Endpoints/Slm/Stop.php | 2 +- .../Endpoints/Snapshot/CleanupRepository.php | 2 +- .../Endpoints/Snapshot/CloneSnapshot.php | 2 +- .../Endpoints/Snapshot/Create.php | 2 +- .../Endpoints/Snapshot/CreateRepository.php | 2 +- .../Endpoints/Snapshot/Delete.php | 2 +- .../Endpoints/Snapshot/DeleteRepository.php | 2 +- src/Elasticsearch/Endpoints/Snapshot/Get.php | 2 +- .../Endpoints/Snapshot/GetRepository.php | 2 +- .../Endpoints/Snapshot/RepositoryAnalyze.php | 2 +- .../Endpoints/Snapshot/Restore.php | 2 +- .../Endpoints/Snapshot/Status.php | 2 +- .../Endpoints/Snapshot/VerifyRepository.php | 2 +- .../Endpoints/Sql/ClearCursor.php | 2 +- .../Endpoints/Sql/DeleteAsync.php | 2 +- src/Elasticsearch/Endpoints/Sql/GetAsync.php | 2 +- .../Endpoints/Sql/GetAsyncStatus.php | 2 +- src/Elasticsearch/Endpoints/Sql/Query.php | 2 +- src/Elasticsearch/Endpoints/Sql/Translate.php | 2 +- .../Endpoints/Ssl/Certificates.php | 2 +- src/Elasticsearch/Endpoints/Tasks/Cancel.php | 2 +- src/Elasticsearch/Endpoints/Tasks/Get.php | 2 +- .../Endpoints/Tasks/ListTasks.php | 2 +- src/Elasticsearch/Endpoints/TermVectors.php | 2 +- src/Elasticsearch/Endpoints/TermsEnum.php | 2 +- .../Endpoints/TextStructure/FindStructure.php | 2 +- .../Endpoints/Transform/DeleteTransform.php | 5 +- .../Endpoints/Transform/GetTransform.php | 2 +- .../Endpoints/Transform/GetTransformStats.php | 2 +- .../Endpoints/Transform/PreviewTransform.php | 6 +- .../Endpoints/Transform/PutTransform.php | 5 +- .../Endpoints/Transform/StartTransform.php | 2 +- .../Endpoints/Transform/StopTransform.php | 2 +- .../Endpoints/Transform/UpdateTransform.php | 5 +- .../Endpoints/Transform/UpgradeTransforms.php | 49 ++++++++++++ src/Elasticsearch/Endpoints/Update.php | 2 +- src/Elasticsearch/Endpoints/UpdateByQuery.php | 5 +- .../Endpoints/UpdateByQueryRethrottle.php | 2 +- .../Endpoints/Watcher/AckWatch.php | 2 +- .../Endpoints/Watcher/ActivateWatch.php | 2 +- .../Endpoints/Watcher/DeactivateWatch.php | 2 +- .../Endpoints/Watcher/DeleteWatch.php | 2 +- .../Endpoints/Watcher/ExecuteWatch.php | 2 +- .../Endpoints/Watcher/GetWatch.php | 2 +- .../Endpoints/Watcher/PutWatch.php | 2 +- .../Endpoints/Watcher/QueryWatches.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Start.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Stats.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Stop.php | 2 +- src/Elasticsearch/Endpoints/Xpack/Info.php | 2 +- src/Elasticsearch/Endpoints/Xpack/Usage.php | 2 +- .../Namespaces/AsyncSearchNamespace.php | 2 +- .../Namespaces/AutoscalingNamespace.php | 2 +- src/Elasticsearch/Namespaces/CatNamespace.php | 2 +- src/Elasticsearch/Namespaces/CcrNamespace.php | 2 +- .../Namespaces/ClusterNamespace.php | 2 +- .../Namespaces/DanglingIndicesNamespace.php | 2 +- .../DataFrameTransformDeprecatedNamespace.php | 2 +- .../Namespaces/EnrichNamespace.php | 2 +- src/Elasticsearch/Namespaces/EqlNamespace.php | 2 +- .../Namespaces/FeaturesNamespace.php | 2 +- .../Namespaces/FleetNamespace.php | 57 ++++++++++++- .../Namespaces/GraphNamespace.php | 2 +- src/Elasticsearch/Namespaces/IlmNamespace.php | 2 +- .../Namespaces/IndicesNamespace.php | 27 +++++-- .../Namespaces/IngestNamespace.php | 3 +- .../Namespaces/LicenseNamespace.php | 2 +- .../Namespaces/LogstashNamespace.php | 2 +- .../Namespaces/MigrationNamespace.php | 36 ++++++++- src/Elasticsearch/Namespaces/MlNamespace.php | 2 +- .../Namespaces/MonitoringNamespace.php | 5 +- .../Namespaces/NodesNamespace.php | 7 +- .../Namespaces/RollupNamespace.php | 2 +- .../SearchableSnapshotsNamespace.php | 8 +- .../Namespaces/SecurityNamespace.php | 17 +--- .../Namespaces/ShutdownNamespace.php | 17 +--- src/Elasticsearch/Namespaces/SlmNamespace.php | 2 +- .../Namespaces/SnapshotNamespace.php | 2 +- src/Elasticsearch/Namespaces/SqlNamespace.php | 2 +- src/Elasticsearch/Namespaces/SslNamespace.php | 2 +- .../Namespaces/TasksNamespace.php | 2 +- .../Namespaces/TextStructureNamespace.php | 2 +- .../Namespaces/TransformNamespace.php | 25 +++++- .../Namespaces/WatcherNamespace.php | 2 +- .../Namespaces/XpackNamespace.php | 2 +- 437 files changed, 943 insertions(+), 519 deletions(-) create mode 100644 src/Elasticsearch/Endpoints/Fleet/Msearch.php create mode 100644 src/Elasticsearch/Endpoints/Fleet/Search.php create mode 100644 src/Elasticsearch/Endpoints/Indices/ModifyDataStream.php create mode 100644 src/Elasticsearch/Endpoints/Migration/GetFeatureUpgradeStatus.php create mode 100644 src/Elasticsearch/Endpoints/Migration/PostFeatureUpgrade.php create mode 100644 src/Elasticsearch/Endpoints/Transform/UpgradeTransforms.php diff --git a/src/Elasticsearch/Client.php b/src/Elasticsearch/Client.php index 9e597ae61..a9d77864f 100644 --- a/src/Elasticsearch/Client.php +++ b/src/Elasticsearch/Client.php @@ -65,7 +65,7 @@ * Class Client * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Client { @@ -523,9 +523,6 @@ public function delete(array $params = []) * $params['size'] = (number) Deprecated, please use `max_docs` instead * $params['max_docs'] = (number) Maximum number of documents to process (default: all documents) * $params['sort'] = (list) A comma-separated list of : pairs - * $params['_source'] = (list) True or false to return the _source field or not, or a list of fields to return - * $params['_source_excludes'] = (list) A list of fields to exclude from the returned _source field - * $params['_source_includes'] = (list) A list of fields to extract and return from the _source field * $params['terminate_after'] = (number) The maximum number of documents to collect for each shard, upon reaching which the query execution will terminate early. * $params['stats'] = (list) Specific 'tag' of the request for logging and statistical purposes * $params['version'] = (boolean) Specify whether to return document version as part of a hit @@ -811,9 +808,6 @@ public function getScript(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/painless/master/painless-contexts.html - * - * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release - * */ public function getScriptContext(array $params = []) { @@ -831,9 +825,6 @@ public function getScriptContext(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-scripting.html - * - * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release - * */ public function getScriptLanguages(array $params = []) { @@ -1080,7 +1071,7 @@ public function mtermvectors(array $params = []) * $params['routing'] = (string) Specific routing value * $params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed) * $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open) - * $params['keep_alive'] = (string) Specific the time to live for the point in time + * $params['keep_alive'] = (string) Specific the time to live for the point in time (Required) * * @param array $params Associative array of parameters * @return array @@ -1158,9 +1149,6 @@ public function putScript(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/search-rank-eval.html - * - * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release - * */ public function rankEval(array $params = []) { @@ -1367,17 +1355,18 @@ public function search(array $params = []) /** * Searches a vector tile for geospatial values. Returns results as a binary Mapbox vector tile. * - * $params['index'] = (list) Comma-separated list of data streams, indices, or aliases to search - * $params['field'] = (string) Field containing geospatial data to return - * $params['zoom'] = (int) Zoom level for the vector tile to search - * $params['x'] = (int) X coordinate for the vector tile to search - * $params['y'] = (int) Y coordinate for the vector tile to search - * $params['exact_bounds'] = (boolean) If false, the meta layer's feature is the bounding box of the tile. If true, the meta layer's feature is a bounding box resulting from a `geo_bounds` aggregation. (Default = false) - * $params['extent'] = (int) Size, in pixels, of a side of the vector tile. (Default = 4096) - * $params['grid_precision'] = (int) Additional zoom levels available through the aggs layer. Accepts 0-8. (Default = 8) - * $params['grid_type'] = (enum) Determines the geometry type for features in the aggs layer. (Options = grid,point) (Default = grid) - * $params['size'] = (int) Maximum number of features to return in the hits layer. Accepts 0-10000. (Default = 10000) - * $params['body'] = (array) Search request body. + * $params['index'] = (list) Comma-separated list of data streams, indices, or aliases to search + * $params['field'] = (string) Field containing geospatial data to return + * $params['zoom'] = (int) Zoom level for the vector tile to search + * $params['x'] = (int) X coordinate for the vector tile to search + * $params['y'] = (int) Y coordinate for the vector tile to search + * $params['exact_bounds'] = (boolean) If false, the meta layer's feature is the bounding box of the tile. If true, the meta layer's feature is a bounding box resulting from a `geo_bounds` aggregation. (Default = false) + * $params['extent'] = (int) Size, in pixels, of a side of the vector tile. (Default = 4096) + * $params['grid_precision'] = (int) Additional zoom levels available through the aggs layer. Accepts 0-8. (Default = 8) + * $params['grid_type'] = (enum) Determines the geometry type for features in the aggs layer. (Options = grid,point,centroid) (Default = grid) + * $params['size'] = (int) Maximum number of features to return in the hits layer. Accepts 0-10000. (Default = 10000) + * $params['track_total_hits'] = (boolean|long) Indicate if the number of documents that match the query should be tracked. A number can also be specified, to accurately track the total hit count up to the number. + * $params['body'] = (array) Search request body. * * @param array $params Associative array of parameters * @return array @@ -1481,9 +1470,6 @@ public function searchTemplate(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-terms-enum.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function termsEnum(array $params = []) { @@ -1604,9 +1590,6 @@ public function update(array $params = []) * $params['size'] = (number) Deprecated, please use `max_docs` instead * $params['max_docs'] = (number) Maximum number of documents to process (default: all documents) * $params['sort'] = (list) A comma-separated list of : pairs - * $params['_source'] = (list) True or false to return the _source field or not, or a list of fields to return - * $params['_source_excludes'] = (list) A list of fields to exclude from the returned _source field - * $params['_source_includes'] = (list) A list of fields to extract and return from the _source field * $params['terminate_after'] = (number) The maximum number of documents to collect for each shard, upon reaching which the query execution will terminate early. * $params['stats'] = (list) Specific 'tag' of the request for logging and statistical purposes * $params['version'] = (boolean) Specify whether to return document version as part of a hit diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php b/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php index 32ea1937e..d953c608e 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Get.php b/src/Elasticsearch/Endpoints/AsyncSearch/Get.php index 9ef8f6ca9..a618f22a2 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Get.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Status.php b/src/Elasticsearch/Endpoints/AsyncSearch/Status.php index 694227540..654926936 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Status.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Status.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Status extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php b/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php index 457ea95bb..b4e2e176b 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php @@ -23,7 +23,7 @@ * Elasticsearch API name async_search.submit * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Submit extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php index 038d052ae..7704573dd 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.delete_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class DeleteAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php index eb77864fb..6b78ededf 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php @@ -23,7 +23,7 @@ * Elasticsearch API name autoscaling.get_autoscaling_capacity * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetAutoscalingCapacity extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php index d909868f4..c61b7e327 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.get_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php index ba00dad0d..65b2b3ac4 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.put_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PutAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Bulk.php b/src/Elasticsearch/Endpoints/Bulk.php index d2eb32207..720e9610b 100644 --- a/src/Elasticsearch/Endpoints/Bulk.php +++ b/src/Elasticsearch/Endpoints/Bulk.php @@ -26,7 +26,7 @@ * Elasticsearch API name bulk * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Bulk extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Aliases.php b/src/Elasticsearch/Endpoints/Cat/Aliases.php index 7be520ae7..19cf66c05 100644 --- a/src/Elasticsearch/Endpoints/Cat/Aliases.php +++ b/src/Elasticsearch/Endpoints/Cat/Aliases.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.aliases * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Aliases extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Allocation.php b/src/Elasticsearch/Endpoints/Cat/Allocation.php index 0e7a2fd2b..52dcffe80 100644 --- a/src/Elasticsearch/Endpoints/Cat/Allocation.php +++ b/src/Elasticsearch/Endpoints/Cat/Allocation.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.allocation * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Allocation extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Count.php b/src/Elasticsearch/Endpoints/Cat/Count.php index 246badd99..ccfcb17ea 100644 --- a/src/Elasticsearch/Endpoints/Cat/Count.php +++ b/src/Elasticsearch/Endpoints/Cat/Count.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.count * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Count extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Fielddata.php b/src/Elasticsearch/Endpoints/Cat/Fielddata.php index e2a6b2646..90ed8f0ae 100644 --- a/src/Elasticsearch/Endpoints/Cat/Fielddata.php +++ b/src/Elasticsearch/Endpoints/Cat/Fielddata.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.fielddata * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Fielddata extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Health.php b/src/Elasticsearch/Endpoints/Cat/Health.php index 0e6020d1c..07876bc09 100644 --- a/src/Elasticsearch/Endpoints/Cat/Health.php +++ b/src/Elasticsearch/Endpoints/Cat/Health.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.health * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Health extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Help.php b/src/Elasticsearch/Endpoints/Cat/Help.php index 5e5220799..7adbe9df7 100644 --- a/src/Elasticsearch/Endpoints/Cat/Help.php +++ b/src/Elasticsearch/Endpoints/Cat/Help.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.help * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Help extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Indices.php b/src/Elasticsearch/Endpoints/Cat/Indices.php index db03f3839..5fb7fa81b 100644 --- a/src/Elasticsearch/Endpoints/Cat/Indices.php +++ b/src/Elasticsearch/Endpoints/Cat/Indices.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.indices * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Indices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Master.php b/src/Elasticsearch/Endpoints/Cat/Master.php index e0e0fac6d..4b6a1f4bb 100644 --- a/src/Elasticsearch/Endpoints/Cat/Master.php +++ b/src/Elasticsearch/Endpoints/Cat/Master.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.master * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Master extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php index 709851180..a22792d36 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class MlDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php b/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php index 83b89e21c..f14b58684 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php +++ b/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_datafeeds * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class MlDatafeeds extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlJobs.php b/src/Elasticsearch/Endpoints/Cat/MlJobs.php index 393c7b867..e4d9c167e 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlJobs.php +++ b/src/Elasticsearch/Endpoints/Cat/MlJobs.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_jobs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class MlJobs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php b/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php index 8a66c1078..c927a20ed 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php +++ b/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_trained_models * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class MlTrainedModels extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php b/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php index 2d37d4a88..d0dc88a4b 100644 --- a/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php +++ b/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.nodeattrs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class NodeAttrs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Nodes.php b/src/Elasticsearch/Endpoints/Cat/Nodes.php index df3696890..cfda434ed 100644 --- a/src/Elasticsearch/Endpoints/Cat/Nodes.php +++ b/src/Elasticsearch/Endpoints/Cat/Nodes.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.nodes * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Nodes extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/PendingTasks.php b/src/Elasticsearch/Endpoints/Cat/PendingTasks.php index 450c672ef..f4a5e9e8d 100644 --- a/src/Elasticsearch/Endpoints/Cat/PendingTasks.php +++ b/src/Elasticsearch/Endpoints/Cat/PendingTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.pending_tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PendingTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Plugins.php b/src/Elasticsearch/Endpoints/Cat/Plugins.php index bbc96eba8..4c6aee276 100644 --- a/src/Elasticsearch/Endpoints/Cat/Plugins.php +++ b/src/Elasticsearch/Endpoints/Cat/Plugins.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.plugins * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Plugins extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Recovery.php b/src/Elasticsearch/Endpoints/Cat/Recovery.php index e82140a33..e2c55bbfb 100644 --- a/src/Elasticsearch/Endpoints/Cat/Recovery.php +++ b/src/Elasticsearch/Endpoints/Cat/Recovery.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.recovery * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Recovery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Repositories.php b/src/Elasticsearch/Endpoints/Cat/Repositories.php index 1b8171c45..b58641ddf 100644 --- a/src/Elasticsearch/Endpoints/Cat/Repositories.php +++ b/src/Elasticsearch/Endpoints/Cat/Repositories.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.repositories * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Repositories extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Segments.php b/src/Elasticsearch/Endpoints/Cat/Segments.php index 60bbc02a3..8e52839a4 100644 --- a/src/Elasticsearch/Endpoints/Cat/Segments.php +++ b/src/Elasticsearch/Endpoints/Cat/Segments.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.segments * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Segments extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Shards.php b/src/Elasticsearch/Endpoints/Cat/Shards.php index 60f61727a..75a7d19d0 100644 --- a/src/Elasticsearch/Endpoints/Cat/Shards.php +++ b/src/Elasticsearch/Endpoints/Cat/Shards.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.shards * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Shards extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Snapshots.php b/src/Elasticsearch/Endpoints/Cat/Snapshots.php index 951eab6a3..fea23adf7 100644 --- a/src/Elasticsearch/Endpoints/Cat/Snapshots.php +++ b/src/Elasticsearch/Endpoints/Cat/Snapshots.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.snapshots * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Snapshots extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Tasks.php b/src/Elasticsearch/Endpoints/Cat/Tasks.php index fa18c1ffb..eeed0753d 100644 --- a/src/Elasticsearch/Endpoints/Cat/Tasks.php +++ b/src/Elasticsearch/Endpoints/Cat/Tasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Tasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Templates.php b/src/Elasticsearch/Endpoints/Cat/Templates.php index d291e475a..8c09c3fd8 100644 --- a/src/Elasticsearch/Endpoints/Cat/Templates.php +++ b/src/Elasticsearch/Endpoints/Cat/Templates.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.templates * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Templates extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/ThreadPool.php b/src/Elasticsearch/Endpoints/Cat/ThreadPool.php index 69454b334..2f5bdf915 100644 --- a/src/Elasticsearch/Endpoints/Cat/ThreadPool.php +++ b/src/Elasticsearch/Endpoints/Cat/ThreadPool.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.thread_pool * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ThreadPool extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Transforms.php b/src/Elasticsearch/Endpoints/Cat/Transforms.php index a18512375..fc2eeb4d8 100644 --- a/src/Elasticsearch/Endpoints/Cat/Transforms.php +++ b/src/Elasticsearch/Endpoints/Cat/Transforms.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.transforms * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Transforms extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php index cfe6f4b44..1994886c7 100644 --- a/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.delete_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class DeleteAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Follow.php b/src/Elasticsearch/Endpoints/Ccr/Follow.php index 3d8f1df07..256b7c6f5 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Follow.php +++ b/src/Elasticsearch/Endpoints/Ccr/Follow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Follow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php b/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php index 04c72b7de..1472471ec 100644 --- a/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php +++ b/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow_info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class FollowInfo extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/FollowStats.php b/src/Elasticsearch/Endpoints/Ccr/FollowStats.php index b83bad938..1756b4731 100644 --- a/src/Elasticsearch/Endpoints/Ccr/FollowStats.php +++ b/src/Elasticsearch/Endpoints/Ccr/FollowStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class FollowStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php b/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php index a1d43e96f..2704d2a74 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php +++ b/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.forget_follower * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ForgetFollower extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php index fca729de2..6d3b063b1 100644 --- a/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php @@ -23,7 +23,7 @@ * Elasticsearch API name ccr.get_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php index 969e19daa..9b9d6bb20 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.pause_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PauseAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php b/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php index 0092992ee..a7dff83eb 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.pause_follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PauseFollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php index b950986e0..9d381639b 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.put_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PutAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php index 790eb86bf..3bcafa74d 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.resume_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ResumeAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php b/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php index 6ca61bd4d..d60edc006 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.resume_follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ResumeFollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Stats.php b/src/Elasticsearch/Endpoints/Ccr/Stats.php index 63dda1b34..088dc30bb 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Stats.php +++ b/src/Elasticsearch/Endpoints/Ccr/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ccr.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Unfollow.php b/src/Elasticsearch/Endpoints/Ccr/Unfollow.php index eb8c0fb4a..dd3c74a96 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Unfollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/Unfollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.unfollow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Unfollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ClearScroll.php b/src/Elasticsearch/Endpoints/ClearScroll.php index 151b672dc..4c5755fd8 100644 --- a/src/Elasticsearch/Endpoints/ClearScroll.php +++ b/src/Elasticsearch/Endpoints/ClearScroll.php @@ -23,7 +23,7 @@ * Elasticsearch API name clear_scroll * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ClearScroll extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ClosePointInTime.php b/src/Elasticsearch/Endpoints/ClosePointInTime.php index 07db3824b..2a0110dc8 100644 --- a/src/Elasticsearch/Endpoints/ClosePointInTime.php +++ b/src/Elasticsearch/Endpoints/ClosePointInTime.php @@ -23,7 +23,7 @@ * Elasticsearch API name close_point_in_time * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ClosePointInTime extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php b/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php index ad81ef07a..302a57acc 100644 --- a/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php +++ b/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.allocation_explain * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class AllocationExplain extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php index 7cb57a18b..1c512ee76 100644 --- a/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.delete_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class DeleteComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php b/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php index cdf79d167..afd2eec07 100644 --- a/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php +++ b/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.delete_voting_config_exclusions * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class DeleteVotingConfigExclusions extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php index 17f96eeeb..f8ecb311d 100644 --- a/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.exists_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ExistsComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php index 251405e00..fa16e161e 100644 --- a/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.get_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/GetSettings.php b/src/Elasticsearch/Endpoints/Cluster/GetSettings.php index 032d46c06..0cf376ccb 100644 --- a/src/Elasticsearch/Endpoints/Cluster/GetSettings.php +++ b/src/Elasticsearch/Endpoints/Cluster/GetSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.get_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Health.php b/src/Elasticsearch/Endpoints/Cluster/Health.php index 1f59cf86d..5cd173f97 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Health.php +++ b/src/Elasticsearch/Endpoints/Cluster/Health.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.health * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Health extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php b/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php index f4566a209..baf60226e 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php +++ b/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.pending_tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PendingTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php b/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php index f6b61add8..a04558ed1 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php +++ b/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.post_voting_config_exclusions * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PostVotingConfigExclusions extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php index 5afa56fb2..ad6c3329f 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.put_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PutComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PutSettings.php b/src/Elasticsearch/Endpoints/Cluster/PutSettings.php index ee2d54992..450f195e1 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PutSettings.php +++ b/src/Elasticsearch/Endpoints/Cluster/PutSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.put_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PutSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php b/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php index 78394e280..f89d7feca 100644 --- a/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php +++ b/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.remote_info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class RemoteInfo extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Reroute.php b/src/Elasticsearch/Endpoints/Cluster/Reroute.php index 87c04505c..f1d1ed27d 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Reroute.php +++ b/src/Elasticsearch/Endpoints/Cluster/Reroute.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.reroute * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Reroute extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/State.php b/src/Elasticsearch/Endpoints/Cluster/State.php index 48d6d5cf3..efe926f8e 100644 --- a/src/Elasticsearch/Endpoints/Cluster/State.php +++ b/src/Elasticsearch/Endpoints/Cluster/State.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.state * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class State extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Stats.php b/src/Elasticsearch/Endpoints/Cluster/Stats.php index 6c0e02402..7e2e5103c 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Stats.php +++ b/src/Elasticsearch/Endpoints/Cluster/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Count.php b/src/Elasticsearch/Endpoints/Count.php index f387ab8bb..5da3a402f 100644 --- a/src/Elasticsearch/Endpoints/Count.php +++ b/src/Elasticsearch/Endpoints/Count.php @@ -23,7 +23,7 @@ * Elasticsearch API name count * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Count extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Create.php b/src/Elasticsearch/Endpoints/Create.php index 42646308a..03ce19970 100644 --- a/src/Elasticsearch/Endpoints/Create.php +++ b/src/Elasticsearch/Endpoints/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php b/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php index 4be020c82..bde61cdd0 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name dangling_indices.delete_dangling_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class DeleteDanglingIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php b/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php index 42f034232..be95215ee 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name dangling_indices.import_dangling_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ImportDanglingIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php b/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php index efb191b60..9ac0802cc 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php @@ -23,7 +23,7 @@ * Elasticsearch API name dangling_indices.list_dangling_indices * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ListDanglingIndices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php index eee92c3d9..2b41e873c 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.delete_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class DeleteTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php index 8dd047137..eb9e57470 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name data_frame_transform_deprecated.get_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php index 2ab7d3db4..5924c97c5 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.get_transform_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetTransformStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php index d70f877ab..c4a9c2508 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name data_frame_transform_deprecated.preview_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PreviewTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php index 92625943f..8719e6b37 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.put_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PutTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php index b05533318..ed29e7564 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.start_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class StartTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php index b9c6bc0f3..df26cc86d 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.stop_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class StopTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php index 625142305..c59381d58 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.update_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class UpdateTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Delete.php b/src/Elasticsearch/Endpoints/Delete.php index cce426a4f..ba4b1185f 100644 --- a/src/Elasticsearch/Endpoints/Delete.php +++ b/src/Elasticsearch/Endpoints/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteByQuery.php b/src/Elasticsearch/Endpoints/DeleteByQuery.php index 2cc845871..6b870c848 100644 --- a/src/Elasticsearch/Endpoints/DeleteByQuery.php +++ b/src/Elasticsearch/Endpoints/DeleteByQuery.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_by_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class DeleteByQuery extends AbstractEndpoint { @@ -70,9 +70,6 @@ public function getParamWhitelist(): array 'size', 'max_docs', 'sort', - '_source', - '_source_excludes', - '_source_includes', 'terminate_after', 'stats', 'version', diff --git a/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php b/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php index a7fc6a904..94ca005b6 100644 --- a/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php +++ b/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_by_query_rethrottle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class DeleteByQueryRethrottle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteScript.php b/src/Elasticsearch/Endpoints/DeleteScript.php index eeed576ed..f3ce6fccb 100644 --- a/src/Elasticsearch/Endpoints/DeleteScript.php +++ b/src/Elasticsearch/Endpoints/DeleteScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class DeleteScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php b/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php index b6c1e26dc..cd31ddb96 100644 --- a/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.delete_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class DeletePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php b/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php index 88bbf5b63..94cbf91de 100644 --- a/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.execute_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ExecutePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php b/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php index 21a199f62..fad84d687 100644 --- a/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php @@ -23,7 +23,7 @@ * Elasticsearch API name enrich.get_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php b/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php index cd6a795e5..abfae5799 100644 --- a/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.put_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PutPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/Stats.php b/src/Elasticsearch/Endpoints/Enrich/Stats.php index 2b4c00df8..eb4e8295a 100644 --- a/src/Elasticsearch/Endpoints/Enrich/Stats.php +++ b/src/Elasticsearch/Endpoints/Enrich/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name enrich.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Delete.php b/src/Elasticsearch/Endpoints/Eql/Delete.php index 877b0fec1..f46a37624 100644 --- a/src/Elasticsearch/Endpoints/Eql/Delete.php +++ b/src/Elasticsearch/Endpoints/Eql/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Get.php b/src/Elasticsearch/Endpoints/Eql/Get.php index 0860d86e1..d03ff579e 100644 --- a/src/Elasticsearch/Endpoints/Eql/Get.php +++ b/src/Elasticsearch/Endpoints/Eql/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/GetStatus.php b/src/Elasticsearch/Endpoints/Eql/GetStatus.php index 9c2987cf4..fbfbf3f9c 100644 --- a/src/Elasticsearch/Endpoints/Eql/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Eql/GetStatus.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Search.php b/src/Elasticsearch/Endpoints/Eql/Search.php index 585678341..894defb45 100644 --- a/src/Elasticsearch/Endpoints/Eql/Search.php +++ b/src/Elasticsearch/Endpoints/Eql/Search.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Search extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Exists.php b/src/Elasticsearch/Endpoints/Exists.php index d136f0717..b6b6219c1 100644 --- a/src/Elasticsearch/Endpoints/Exists.php +++ b/src/Elasticsearch/Endpoints/Exists.php @@ -24,7 +24,7 @@ * Elasticsearch API name exists * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Exists extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ExistsSource.php b/src/Elasticsearch/Endpoints/ExistsSource.php index 2c069aafa..64178f701 100644 --- a/src/Elasticsearch/Endpoints/ExistsSource.php +++ b/src/Elasticsearch/Endpoints/ExistsSource.php @@ -24,7 +24,7 @@ * Elasticsearch API name exists_source * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ExistsSource extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Explain.php b/src/Elasticsearch/Endpoints/Explain.php index f94132e17..3e7ea322d 100644 --- a/src/Elasticsearch/Endpoints/Explain.php +++ b/src/Elasticsearch/Endpoints/Explain.php @@ -24,7 +24,7 @@ * Elasticsearch API name explain * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Explain extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Features/GetFeatures.php b/src/Elasticsearch/Endpoints/Features/GetFeatures.php index 081609fe8..0b5b5a4af 100644 --- a/src/Elasticsearch/Endpoints/Features/GetFeatures.php +++ b/src/Elasticsearch/Endpoints/Features/GetFeatures.php @@ -23,7 +23,7 @@ * Elasticsearch API name features.get_features * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetFeatures extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Features/ResetFeatures.php b/src/Elasticsearch/Endpoints/Features/ResetFeatures.php index ee9682401..df3e7b7ac 100644 --- a/src/Elasticsearch/Endpoints/Features/ResetFeatures.php +++ b/src/Elasticsearch/Endpoints/Features/ResetFeatures.php @@ -23,7 +23,7 @@ * Elasticsearch API name features.reset_features * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ResetFeatures extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/FieldCaps.php b/src/Elasticsearch/Endpoints/FieldCaps.php index a05341503..b1c081801 100644 --- a/src/Elasticsearch/Endpoints/FieldCaps.php +++ b/src/Elasticsearch/Endpoints/FieldCaps.php @@ -23,7 +23,7 @@ * Elasticsearch API name field_caps * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class FieldCaps extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php b/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php index 0c4021f2d..2d5068ce9 100644 --- a/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php +++ b/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php @@ -24,7 +24,7 @@ * Elasticsearch API name fleet.global_checkpoints * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GlobalCheckpoints extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Fleet/Msearch.php b/src/Elasticsearch/Endpoints/Fleet/Msearch.php new file mode 100644 index 000000000..be3bd3401 --- /dev/null +++ b/src/Elasticsearch/Endpoints/Fleet/Msearch.php @@ -0,0 +1,80 @@ +serializer = $serializer; + } + + public function getURI(): string + { + $index = $this->index ?? null; + + if (isset($index)) { + return "/$index/_fleet/_fleet_msearch"; + } + return "/_fleet/_fleet_msearch"; + } + + public function getParamWhitelist(): array + { + return [ + + ]; + } + + public function getMethod(): string + { + return isset($this->body) ? 'POST' : 'GET'; + } + + public function setBody($body): Msearch + { + if (isset($body) !== true) { + return $this; + } + if (is_array($body) === true || $body instanceof Traversable) { + foreach ($body as $item) { + $this->body .= $this->serializer->serialize($item) . "\n"; + } + } elseif (is_string($body)) { + $this->body = $body; + if (substr($body, -1) != "\n") { + $this->body .= "\n"; + } + } else { + throw new InvalidArgumentException("Body must be an array, traversable object or string"); + } + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Fleet/Search.php b/src/Elasticsearch/Endpoints/Fleet/Search.php new file mode 100644 index 000000000..ced5837c3 --- /dev/null +++ b/src/Elasticsearch/Endpoints/Fleet/Search.php @@ -0,0 +1,65 @@ +index ?? null; + + if (isset($index)) { + return "/$index/_fleet/_fleet_search"; + } + throw new RuntimeException('Missing parameter for the endpoint fleet.search'); + } + + public function getParamWhitelist(): array + { + return [ + 'wait_for_checkpoints', + 'wait_for_checkpoints_timeout', + 'allow_partial_search_results' + ]; + } + + public function getMethod(): string + { + return isset($this->body) ? 'POST' : 'GET'; + } + + public function setBody($body): Search + { + if (isset($body) !== true) { + return $this; + } + $this->body = $body; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Get.php b/src/Elasticsearch/Endpoints/Get.php index 5a25492c9..236c4142c 100644 --- a/src/Elasticsearch/Endpoints/Get.php +++ b/src/Elasticsearch/Endpoints/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScript.php b/src/Elasticsearch/Endpoints/GetScript.php index 5d0399d76..de214b57d 100644 --- a/src/Elasticsearch/Endpoints/GetScript.php +++ b/src/Elasticsearch/Endpoints/GetScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name get_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScriptContext.php b/src/Elasticsearch/Endpoints/GetScriptContext.php index f037aa749..3023039c9 100644 --- a/src/Elasticsearch/Endpoints/GetScriptContext.php +++ b/src/Elasticsearch/Endpoints/GetScriptContext.php @@ -23,7 +23,7 @@ * Elasticsearch API name get_script_context * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetScriptContext extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScriptLanguages.php b/src/Elasticsearch/Endpoints/GetScriptLanguages.php index cba72ea33..d7c2b3095 100644 --- a/src/Elasticsearch/Endpoints/GetScriptLanguages.php +++ b/src/Elasticsearch/Endpoints/GetScriptLanguages.php @@ -23,7 +23,7 @@ * Elasticsearch API name get_script_languages * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetScriptLanguages extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetSource.php b/src/Elasticsearch/Endpoints/GetSource.php index 816556d5f..1285df064 100644 --- a/src/Elasticsearch/Endpoints/GetSource.php +++ b/src/Elasticsearch/Endpoints/GetSource.php @@ -24,7 +24,7 @@ * Elasticsearch API name get_source * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetSource extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Graph/Explore.php b/src/Elasticsearch/Endpoints/Graph/Explore.php index 00d039e33..a556f5116 100644 --- a/src/Elasticsearch/Endpoints/Graph/Explore.php +++ b/src/Elasticsearch/Endpoints/Graph/Explore.php @@ -24,7 +24,7 @@ * Elasticsearch API name graph.explore * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Explore extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php index c671dc607..bebd6ee70 100644 --- a/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.delete_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class DeleteLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php index 5cdba848c..610c46f4d 100644 --- a/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.explain_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ExplainLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php index 8644bd8a9..03a483c9e 100644 --- a/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.get_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/GetStatus.php b/src/Elasticsearch/Endpoints/Ilm/GetStatus.php index 12a93f694..fc103a284 100644 --- a/src/Elasticsearch/Endpoints/Ilm/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Ilm/GetStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php b/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php index 3b6326c67..5cacada0d 100644 --- a/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php +++ b/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.migrate_to_data_tiers * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class MigrateToDataTiers extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php b/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php index 1f761070b..ea239ad3e 100644 --- a/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php +++ b/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.move_to_step * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class MoveToStep extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php index bb854ab0b..244ccbd03 100644 --- a/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.put_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PutLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php b/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php index 0df17fd82..fd59a6979 100644 --- a/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php +++ b/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.remove_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class RemovePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Retry.php b/src/Elasticsearch/Endpoints/Ilm/Retry.php index 22788f69d..e270533fc 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Retry.php +++ b/src/Elasticsearch/Endpoints/Ilm/Retry.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.retry * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Retry extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Start.php b/src/Elasticsearch/Endpoints/Ilm/Start.php index a37cae849..82d6d5d79 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Start.php +++ b/src/Elasticsearch/Endpoints/Ilm/Start.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.start * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Start extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Stop.php b/src/Elasticsearch/Endpoints/Ilm/Stop.php index bd6981dfd..59ea00aa1 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Stop.php +++ b/src/Elasticsearch/Endpoints/Ilm/Stop.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.stop * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Stop extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Index.php b/src/Elasticsearch/Endpoints/Index.php index 775322f4f..52ce677ac 100644 --- a/src/Elasticsearch/Endpoints/Index.php +++ b/src/Elasticsearch/Endpoints/Index.php @@ -24,7 +24,7 @@ * Elasticsearch API name index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Index extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/AddBlock.php b/src/Elasticsearch/Endpoints/Indices/AddBlock.php index c1a4d867c..3c4215a57 100644 --- a/src/Elasticsearch/Endpoints/Indices/AddBlock.php +++ b/src/Elasticsearch/Endpoints/Indices/AddBlock.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.add_block * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class AddBlock extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Analyze.php b/src/Elasticsearch/Endpoints/Indices/Analyze.php index 33863a365..e998de0c3 100644 --- a/src/Elasticsearch/Endpoints/Indices/Analyze.php +++ b/src/Elasticsearch/Endpoints/Indices/Analyze.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.analyze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Analyze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ClearCache.php b/src/Elasticsearch/Endpoints/Indices/ClearCache.php index f9ac17144..5284bfbc6 100644 --- a/src/Elasticsearch/Endpoints/Indices/ClearCache.php +++ b/src/Elasticsearch/Endpoints/Indices/ClearCache.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.clear_cache * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ClearCache extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/CloneIndices.php b/src/Elasticsearch/Endpoints/Indices/CloneIndices.php index 43f32e203..5e921cd8a 100644 --- a/src/Elasticsearch/Endpoints/Indices/CloneIndices.php +++ b/src/Elasticsearch/Endpoints/Indices/CloneIndices.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.clone * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class CloneIndices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Close.php b/src/Elasticsearch/Endpoints/Indices/Close.php index e738251a7..416914b5b 100644 --- a/src/Elasticsearch/Endpoints/Indices/Close.php +++ b/src/Elasticsearch/Endpoints/Indices/Close.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.close * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Close extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Create.php b/src/Elasticsearch/Endpoints/Indices/Create.php index d7d73d3d6..f075d3c35 100644 --- a/src/Elasticsearch/Endpoints/Indices/Create.php +++ b/src/Elasticsearch/Endpoints/Indices/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php b/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php index b3718f7f2..c19b43465 100644 --- a/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.create_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class CreateDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php b/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php index e3bc82a2d..5161b0a40 100644 --- a/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php +++ b/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.data_streams_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class DataStreamsStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Delete.php b/src/Elasticsearch/Endpoints/Indices/Delete.php index 5fa06ca40..b75e361ff 100644 --- a/src/Elasticsearch/Endpoints/Indices/Delete.php +++ b/src/Elasticsearch/Endpoints/Indices/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php b/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php index ae2225bfd..353998d1a 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class DeleteAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php b/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php index a01778d96..e7c9377a8 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class DeleteDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php index 43153d43c..a69e4ceb6 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class DeleteIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php b/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php index e4f46699c..89962b0b4 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class DeleteTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DiskUsage.php b/src/Elasticsearch/Endpoints/Indices/DiskUsage.php index bebe62d5d..d0375bae1 100644 --- a/src/Elasticsearch/Endpoints/Indices/DiskUsage.php +++ b/src/Elasticsearch/Endpoints/Indices/DiskUsage.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.disk_usage * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class DiskUsage extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Exists.php b/src/Elasticsearch/Endpoints/Indices/Exists.php index 43610277a..b546c25f1 100644 --- a/src/Elasticsearch/Endpoints/Indices/Exists.php +++ b/src/Elasticsearch/Endpoints/Indices/Exists.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Exists extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php b/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php index 167e32b43..637faff8c 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ExistsAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php index 1686fc726..b695520d7 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ExistsIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php b/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php index b74938e6d..d9ed64978 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ExistsTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsType.php b/src/Elasticsearch/Endpoints/Indices/ExistsType.php index 28ece325d..cace16581 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsType.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsType.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_type * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ExistsType extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php b/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php index 24a0542d7..f13d4c218 100644 --- a/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php +++ b/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.field_usage_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class FieldUsageStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Flush.php b/src/Elasticsearch/Endpoints/Indices/Flush.php index ea6d3cfd9..24fd681e4 100644 --- a/src/Elasticsearch/Endpoints/Indices/Flush.php +++ b/src/Elasticsearch/Endpoints/Indices/Flush.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.flush * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Flush extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/FlushSynced.php b/src/Elasticsearch/Endpoints/Indices/FlushSynced.php index d1a7af4dd..3a389ab13 100644 --- a/src/Elasticsearch/Endpoints/Indices/FlushSynced.php +++ b/src/Elasticsearch/Endpoints/Indices/FlushSynced.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.flush_synced * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class FlushSynced extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ForceMerge.php b/src/Elasticsearch/Endpoints/Indices/ForceMerge.php index c1a8e82a4..d5ba23346 100644 --- a/src/Elasticsearch/Endpoints/Indices/ForceMerge.php +++ b/src/Elasticsearch/Endpoints/Indices/ForceMerge.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.forcemerge * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ForceMerge extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Freeze.php b/src/Elasticsearch/Endpoints/Indices/Freeze.php index 57b244217..ba1fd1ea2 100644 --- a/src/Elasticsearch/Endpoints/Indices/Freeze.php +++ b/src/Elasticsearch/Endpoints/Indices/Freeze.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.freeze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Freeze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Get.php b/src/Elasticsearch/Endpoints/Indices/Get.php index 2fde882dc..f3e0d4f37 100644 --- a/src/Elasticsearch/Endpoints/Indices/Get.php +++ b/src/Elasticsearch/Endpoints/Indices/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetAlias.php b/src/Elasticsearch/Endpoints/Indices/GetAlias.php index 6108a339a..14cf3d267 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/GetAlias.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetDataStream.php b/src/Elasticsearch/Endpoints/Indices/GetDataStream.php index 277d35ed6..5802aa00d 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/GetDataStream.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php b/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php index 4e37481da..7abd5d018 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.get_field_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetFieldMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php index 6a0605a1b..692707f01 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetIndexTemplate extends AbstractEndpoint { @@ -58,9 +58,6 @@ public function setName($name): GetIndexTemplate if (isset($name) !== true) { return $this; } - if (is_array($name) === true) { - $name = implode(",", $name); - } $this->name = $name; return $this; diff --git a/src/Elasticsearch/Endpoints/Indices/GetMapping.php b/src/Elasticsearch/Endpoints/Indices/GetMapping.php index c1084158f..a619d8dca 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/GetMapping.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetSettings.php b/src/Elasticsearch/Endpoints/Indices/GetSettings.php index e5648af94..66b9a98de 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetSettings.php +++ b/src/Elasticsearch/Endpoints/Indices/GetSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetTemplate.php b/src/Elasticsearch/Endpoints/Indices/GetTemplate.php index 02d4b8216..21d2f398f 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/GetTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php b/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php index 324bf26ce..3e9b5a369 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php +++ b/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_upgrade * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetUpgrade extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php b/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php index da7284687..4c70f8642 100644 --- a/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.migrate_to_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class MigrateToDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ModifyDataStream.php b/src/Elasticsearch/Endpoints/Indices/ModifyDataStream.php new file mode 100644 index 000000000..290504859 --- /dev/null +++ b/src/Elasticsearch/Endpoints/Indices/ModifyDataStream.php @@ -0,0 +1,58 @@ +body = $body; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Indices/Open.php b/src/Elasticsearch/Endpoints/Indices/Open.php index e76198944..e41176162 100644 --- a/src/Elasticsearch/Endpoints/Indices/Open.php +++ b/src/Elasticsearch/Endpoints/Indices/Open.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.open * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Open extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php b/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php index adc53578b..932a6d070 100644 --- a/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.promote_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PromoteDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutAlias.php b/src/Elasticsearch/Endpoints/Indices/PutAlias.php index 9e777e3cc..a6d967c4c 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/PutAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PutAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php index 26842eb94..5fa36e620 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PutIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutMapping.php b/src/Elasticsearch/Endpoints/Indices/PutMapping.php index 935f80759..4a7cbb073 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/PutMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PutMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutSettings.php b/src/Elasticsearch/Endpoints/Indices/PutSettings.php index 6afa1bff7..7e6a88cff 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutSettings.php +++ b/src/Elasticsearch/Endpoints/Indices/PutSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.put_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PutSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutTemplate.php b/src/Elasticsearch/Endpoints/Indices/PutTemplate.php index 4319cf1d2..8d70b79dd 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/PutTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PutTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Recovery.php b/src/Elasticsearch/Endpoints/Indices/Recovery.php index 3f7eefbb5..1b1d095e4 100644 --- a/src/Elasticsearch/Endpoints/Indices/Recovery.php +++ b/src/Elasticsearch/Endpoints/Indices/Recovery.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.recovery * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Recovery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Refresh.php b/src/Elasticsearch/Endpoints/Indices/Refresh.php index 3133e05e2..2d3dafafc 100644 --- a/src/Elasticsearch/Endpoints/Indices/Refresh.php +++ b/src/Elasticsearch/Endpoints/Indices/Refresh.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.refresh * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Refresh extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php b/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php index ef936c683..e5a3900f0 100644 --- a/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php +++ b/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.reload_search_analyzers * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ReloadSearchAnalyzers extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php b/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php index 8dde9d094..8946b93b0 100644 --- a/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php +++ b/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.resolve_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ResolveIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Rollover.php b/src/Elasticsearch/Endpoints/Indices/Rollover.php index 9d3c079bf..7eb4c24b6 100644 --- a/src/Elasticsearch/Endpoints/Indices/Rollover.php +++ b/src/Elasticsearch/Endpoints/Indices/Rollover.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.rollover * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Rollover extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Segments.php b/src/Elasticsearch/Endpoints/Indices/Segments.php index caa2864ef..33bc4560e 100644 --- a/src/Elasticsearch/Endpoints/Indices/Segments.php +++ b/src/Elasticsearch/Endpoints/Indices/Segments.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.segments * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Segments extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ShardStores.php b/src/Elasticsearch/Endpoints/Indices/ShardStores.php index 9fa88a891..7d73726a6 100644 --- a/src/Elasticsearch/Endpoints/Indices/ShardStores.php +++ b/src/Elasticsearch/Endpoints/Indices/ShardStores.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.shard_stores * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ShardStores extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Shrink.php b/src/Elasticsearch/Endpoints/Indices/Shrink.php index b31ecc274..d1e5f68ed 100644 --- a/src/Elasticsearch/Endpoints/Indices/Shrink.php +++ b/src/Elasticsearch/Endpoints/Indices/Shrink.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.shrink * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Shrink extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php index 135dc7907..5f1eea4ce 100644 --- a/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.simulate_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class SimulateIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php b/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php index b2ed71827..3d016a34f 100644 --- a/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.simulate_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class SimulateTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Split.php b/src/Elasticsearch/Endpoints/Indices/Split.php index d9734551c..35b0de9a2 100644 --- a/src/Elasticsearch/Endpoints/Indices/Split.php +++ b/src/Elasticsearch/Endpoints/Indices/Split.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.split * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Split extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Stats.php b/src/Elasticsearch/Endpoints/Indices/Stats.php index e04563fc7..9ab80f50f 100644 --- a/src/Elasticsearch/Endpoints/Indices/Stats.php +++ b/src/Elasticsearch/Endpoints/Indices/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Unfreeze.php b/src/Elasticsearch/Endpoints/Indices/Unfreeze.php index 3e9a6f077..59af229fb 100644 --- a/src/Elasticsearch/Endpoints/Indices/Unfreeze.php +++ b/src/Elasticsearch/Endpoints/Indices/Unfreeze.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.unfreeze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Unfreeze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php b/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php index 0176b5d60..be6e0c7fa 100644 --- a/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php +++ b/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.update_aliases * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class UpdateAliases extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Upgrade.php b/src/Elasticsearch/Endpoints/Indices/Upgrade.php index acd400930..a86187822 100644 --- a/src/Elasticsearch/Endpoints/Indices/Upgrade.php +++ b/src/Elasticsearch/Endpoints/Indices/Upgrade.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.upgrade * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Upgrade extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php b/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php index 8bd128c5e..b0017bba9 100644 --- a/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php +++ b/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.validate_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ValidateQuery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Info.php b/src/Elasticsearch/Endpoints/Info.php index 3fcf1595c..3817adbf0 100644 --- a/src/Elasticsearch/Endpoints/Info.php +++ b/src/Elasticsearch/Endpoints/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php b/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php index 9f4f7bfd4..e8a829ab2 100644 --- a/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name ingest.delete_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class DeletePipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php b/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php index 2e5c1ede0..5a472a75f 100644 --- a/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php +++ b/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.geo_ip_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GeoIpStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php b/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php index fad561f1d..bfebd6afd 100644 --- a/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.get_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php b/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php index e54258bc3..530aa86c6 100644 --- a/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php +++ b/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.processor_grok * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ProcessorGrok extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php b/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php index f93f92beb..f9ce887e9 100644 --- a/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name ingest.put_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PutPipeline extends AbstractEndpoint { @@ -42,6 +42,7 @@ public function getURI(): string public function getParamWhitelist(): array { return [ + 'if_version', 'master_timeout', 'timeout' ]; diff --git a/src/Elasticsearch/Endpoints/Ingest/Simulate.php b/src/Elasticsearch/Endpoints/Ingest/Simulate.php index 539730370..516fef725 100644 --- a/src/Elasticsearch/Endpoints/Ingest/Simulate.php +++ b/src/Elasticsearch/Endpoints/Ingest/Simulate.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.simulate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Simulate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Delete.php b/src/Elasticsearch/Endpoints/License/Delete.php index dbe018414..f1f1a8f0a 100644 --- a/src/Elasticsearch/Endpoints/License/Delete.php +++ b/src/Elasticsearch/Endpoints/License/Delete.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Get.php b/src/Elasticsearch/Endpoints/License/Get.php index 0d377c0a3..eba84bf51 100644 --- a/src/Elasticsearch/Endpoints/License/Get.php +++ b/src/Elasticsearch/Endpoints/License/Get.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/GetBasicStatus.php b/src/Elasticsearch/Endpoints/License/GetBasicStatus.php index 37ab35501..33fef97fe 100644 --- a/src/Elasticsearch/Endpoints/License/GetBasicStatus.php +++ b/src/Elasticsearch/Endpoints/License/GetBasicStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get_basic_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetBasicStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/GetTrialStatus.php b/src/Elasticsearch/Endpoints/License/GetTrialStatus.php index 4e4534718..4ed3e6d2c 100644 --- a/src/Elasticsearch/Endpoints/License/GetTrialStatus.php +++ b/src/Elasticsearch/Endpoints/License/GetTrialStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get_trial_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetTrialStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Post.php b/src/Elasticsearch/Endpoints/License/Post.php index 6ef6f5865..eeefd28c2 100644 --- a/src/Elasticsearch/Endpoints/License/Post.php +++ b/src/Elasticsearch/Endpoints/License/Post.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Post extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/PostStartBasic.php b/src/Elasticsearch/Endpoints/License/PostStartBasic.php index ae5e28bc0..f65532983 100644 --- a/src/Elasticsearch/Endpoints/License/PostStartBasic.php +++ b/src/Elasticsearch/Endpoints/License/PostStartBasic.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post_start_basic * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PostStartBasic extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/PostStartTrial.php b/src/Elasticsearch/Endpoints/License/PostStartTrial.php index 5bc0f41ea..d5e01a67a 100644 --- a/src/Elasticsearch/Endpoints/License/PostStartTrial.php +++ b/src/Elasticsearch/Endpoints/License/PostStartTrial.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post_start_trial * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PostStartTrial extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php b/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php index 35b612a36..20c4af443 100644 --- a/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.delete_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class DeletePipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php b/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php index c3153009d..45f16a612 100644 --- a/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.get_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GetPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php b/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php index a0e066130..7a466d144 100644 --- a/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.put_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class PutPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/MTermVectors.php b/src/Elasticsearch/Endpoints/MTermVectors.php index 780b82463..65807e456 100644 --- a/src/Elasticsearch/Endpoints/MTermVectors.php +++ b/src/Elasticsearch/Endpoints/MTermVectors.php @@ -23,7 +23,7 @@ * Elasticsearch API name mtermvectors * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class MTermVectors extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Mget.php b/src/Elasticsearch/Endpoints/Mget.php index fe0bf92dd..e2240532b 100644 --- a/src/Elasticsearch/Endpoints/Mget.php +++ b/src/Elasticsearch/Endpoints/Mget.php @@ -23,7 +23,7 @@ * Elasticsearch API name mget * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Mget extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Migration/Deprecations.php b/src/Elasticsearch/Endpoints/Migration/Deprecations.php index a5c57e61f..4834244c4 100644 --- a/src/Elasticsearch/Endpoints/Migration/Deprecations.php +++ b/src/Elasticsearch/Endpoints/Migration/Deprecations.php @@ -23,7 +23,7 @@ * Elasticsearch API name migration.deprecations * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class Deprecations extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Migration/GetFeatureUpgradeStatus.php b/src/Elasticsearch/Endpoints/Migration/GetFeatureUpgradeStatus.php new file mode 100644 index 000000000..2a9129c11 --- /dev/null +++ b/src/Elasticsearch/Endpoints/Migration/GetFeatureUpgradeStatus.php @@ -0,0 +1,48 @@ +extractArgument($params, 'index'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Fleet\GlobalCheckpoints'); + $endpoint->setParams($params); + $endpoint->setIndex($index); + + return $this->performRequest($endpoint); + } + /** + * Multi Search API where the search will only be executed after specified checkpoints are available due to a refresh. This API is designed for internal use by the fleet server project. + * + * $params['index'] = (string) The index name to use as the default + * $params['body'] = (array) The request definitions (metadata-fleet search request definition pairs), separated by newlines (Required) + * + * @param array $params Associative array of parameters + * @return array * * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release * */ - public function globalCheckpoints(array $params = []) + public function msearch(array $params = []) { $index = $this->extractArgument($params, 'index'); + $body = $this->extractArgument($params, 'body'); $endpointBuilder = $this->endpoints; - $endpoint = $endpointBuilder('Fleet\GlobalCheckpoints'); + $endpoint = $endpointBuilder('Fleet\Msearch'); + $endpoint->setParams($params); + $endpoint->setIndex($index); + $endpoint->setBody($body); + + return $this->performRequest($endpoint); + } + /** + * Search API where the search will only be executed after specified checkpoints are available due to a refresh. This API is designed for internal use by the fleet server project. + * + * $params['index'] = (string) The index name to search. + * $params['wait_for_checkpoints'] = (list) Comma separated list of checkpoints, one per shard (Default = ) + * $params['wait_for_checkpoints_timeout'] = (time) Explicit wait_for_checkpoints timeout + * $params['allow_partial_search_results'] = (boolean) Indicate if an error should be returned if there is a partial search failure or timeout (Default = true) + * $params['body'] = (array) The search definition using the Query DSL + * + * @param array $params Associative array of parameters + * @return array + * + * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release + * + */ + public function search(array $params = []) + { + $index = $this->extractArgument($params, 'index'); + $body = $this->extractArgument($params, 'body'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Fleet\Search'); $endpoint->setParams($params); $endpoint->setIndex($index); + $endpoint->setBody($body); return $this->performRequest($endpoint); } diff --git a/src/Elasticsearch/Namespaces/GraphNamespace.php b/src/Elasticsearch/Namespaces/GraphNamespace.php index e8a8b082d..3b69edc40 100644 --- a/src/Elasticsearch/Namespaces/GraphNamespace.php +++ b/src/Elasticsearch/Namespaces/GraphNamespace.php @@ -22,7 +22,7 @@ * Class GraphNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class GraphNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/IlmNamespace.php b/src/Elasticsearch/Namespaces/IlmNamespace.php index 4c5248a61..f68d9b471 100644 --- a/src/Elasticsearch/Namespaces/IlmNamespace.php +++ b/src/Elasticsearch/Namespaces/IlmNamespace.php @@ -22,7 +22,7 @@ * Class IlmNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class IlmNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/IndicesNamespace.php b/src/Elasticsearch/Namespaces/IndicesNamespace.php index 99ff3acb2..4c8ea248d 100644 --- a/src/Elasticsearch/Namespaces/IndicesNamespace.php +++ b/src/Elasticsearch/Namespaces/IndicesNamespace.php @@ -22,7 +22,7 @@ * Class IndicesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class IndicesNamespace extends AbstractNamespace { @@ -749,7 +749,7 @@ public function getFieldMapping(array $params = []) /** * Returns an index template. * - * $params['name'] = (list) The comma separated names of the index templates + * $params['name'] = (string) A pattern that returned template names must match * $params['flat_settings'] = (boolean) Return settings in flat format (default: false) * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node * $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false) @@ -895,6 +895,26 @@ public function migrateToDataStream(array $params = []) return $this->performRequest($endpoint); } + /** + * Modifies a data stream + * + * $params['body'] = (array) The data stream modifications (Required) + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/data-streams.html + */ + public function modifyDataStream(array $params = []) + { + $body = $this->extractArgument($params, 'body'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Indices\ModifyDataStream'); + $endpoint->setParams($params); + $endpoint->setBody($body); + + return $this->performRequest($endpoint); + } /** * Opens an index. * @@ -1162,9 +1182,6 @@ public function reloadSearchAnalyzers(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-resolve-index-api.html - * - * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release - * */ public function resolveIndex(array $params = []) { diff --git a/src/Elasticsearch/Namespaces/IngestNamespace.php b/src/Elasticsearch/Namespaces/IngestNamespace.php index 0efccccac..33075c075 100644 --- a/src/Elasticsearch/Namespaces/IngestNamespace.php +++ b/src/Elasticsearch/Namespaces/IngestNamespace.php @@ -22,7 +22,7 @@ * Class IngestNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class IngestNamespace extends AbstractNamespace { @@ -109,6 +109,7 @@ public function processorGrok(array $params = []) * Creates or updates a pipeline. * * $params['id'] = (string) Pipeline ID + * $params['if_version'] = (int) Required version for optimistic concurrency control for pipeline updates * $params['master_timeout'] = (time) Explicit operation timeout for connection to master node * $params['timeout'] = (time) Explicit operation timeout * $params['body'] = (array) The ingest definition (Required) diff --git a/src/Elasticsearch/Namespaces/LicenseNamespace.php b/src/Elasticsearch/Namespaces/LicenseNamespace.php index 14248cd87..2b38f569b 100644 --- a/src/Elasticsearch/Namespaces/LicenseNamespace.php +++ b/src/Elasticsearch/Namespaces/LicenseNamespace.php @@ -22,7 +22,7 @@ * Class LicenseNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class LicenseNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/LogstashNamespace.php b/src/Elasticsearch/Namespaces/LogstashNamespace.php index 5c59d4397..546013f13 100644 --- a/src/Elasticsearch/Namespaces/LogstashNamespace.php +++ b/src/Elasticsearch/Namespaces/LogstashNamespace.php @@ -22,7 +22,7 @@ * Class LogstashNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class LogstashNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/MigrationNamespace.php b/src/Elasticsearch/Namespaces/MigrationNamespace.php index a39b49839..e4e91c870 100644 --- a/src/Elasticsearch/Namespaces/MigrationNamespace.php +++ b/src/Elasticsearch/Namespaces/MigrationNamespace.php @@ -22,7 +22,7 @@ * Class MigrationNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class MigrationNamespace extends AbstractNamespace { @@ -45,6 +45,40 @@ public function deprecations(array $params = []) $endpoint->setParams($params); $endpoint->setIndex($index); + return $this->performRequest($endpoint); + } + /** + * Find out whether system features need to be upgraded or not + * + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/migration-api-feature-upgrade.html + */ + public function getFeatureUpgradeStatus(array $params = []) + { + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Migration\GetFeatureUpgradeStatus'); + $endpoint->setParams($params); + + return $this->performRequest($endpoint); + } + /** + * Begin upgrades for system features + * + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/migration-api-feature-upgrade.html + */ + public function postFeatureUpgrade(array $params = []) + { + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Migration\PostFeatureUpgrade'); + $endpoint->setParams($params); + return $this->performRequest($endpoint); } } diff --git a/src/Elasticsearch/Namespaces/MlNamespace.php b/src/Elasticsearch/Namespaces/MlNamespace.php index 65e1997c8..372e2a63c 100644 --- a/src/Elasticsearch/Namespaces/MlNamespace.php +++ b/src/Elasticsearch/Namespaces/MlNamespace.php @@ -22,7 +22,7 @@ * Class MlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class MlNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/MonitoringNamespace.php b/src/Elasticsearch/Namespaces/MonitoringNamespace.php index 9900dcd35..ccbe441e6 100644 --- a/src/Elasticsearch/Namespaces/MonitoringNamespace.php +++ b/src/Elasticsearch/Namespaces/MonitoringNamespace.php @@ -22,7 +22,7 @@ * Class MonitoringNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class MonitoringNamespace extends AbstractNamespace { @@ -39,9 +39,6 @@ class MonitoringNamespace extends AbstractNamespace * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/monitor-elasticsearch-cluster.html - * - * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release - * */ public function bulk(array $params = []) { diff --git a/src/Elasticsearch/Namespaces/NodesNamespace.php b/src/Elasticsearch/Namespaces/NodesNamespace.php index 9e21dd77a..46fdce612 100644 --- a/src/Elasticsearch/Namespaces/NodesNamespace.php +++ b/src/Elasticsearch/Namespaces/NodesNamespace.php @@ -22,7 +22,7 @@ * Class NodesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class NodesNamespace extends AbstractNamespace { @@ -84,7 +84,8 @@ public function getRepositoriesMeteringInfo(array $params = []) * $params['snapshots'] = (number) Number of samples of thread stacktrace (default: 10) * $params['threads'] = (number) Specify the number of threads to provide information for (default: 3) * $params['ignore_idle_threads'] = (boolean) Don't show threads that are in known-idle places, such as waiting on a socket select or pulling from an empty task queue (default: true) - * $params['type'] = (enum) The type to sample (default: cpu) (Options = cpu,wait,block) + * $params['type'] = (enum) The type to sample (default: cpu) (Options = cpu,wait,block,mem) + * $params['sort'] = (enum) The sort order for 'cpu' type (default: total) (Options = cpu,total) * $params['timeout'] = (time) Explicit operation timeout * * @param array $params Associative array of parameters @@ -106,7 +107,7 @@ public function hotThreads(array $params = []) * Returns information about nodes in the cluster. * * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes - * $params['metric'] = (list) A comma-separated list of metrics you wish returned. Leave empty to return all. + * $params['metric'] = (list) A comma-separated list of metrics you wish returned. Use `_all` to retrieve all metrics and `_none` to retrieve the node identity without any additional metrics. * $params['flat_settings'] = (boolean) Return settings in flat format (default: false) * $params['timeout'] = (time) Explicit operation timeout * diff --git a/src/Elasticsearch/Namespaces/RollupNamespace.php b/src/Elasticsearch/Namespaces/RollupNamespace.php index 457173010..54efce7e3 100644 --- a/src/Elasticsearch/Namespaces/RollupNamespace.php +++ b/src/Elasticsearch/Namespaces/RollupNamespace.php @@ -22,7 +22,7 @@ * Class RollupNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class RollupNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php b/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php index 080ccf648..08d2361ab 100644 --- a/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php +++ b/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php @@ -22,7 +22,7 @@ * Class SearchableSnapshotsNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class SearchableSnapshotsNamespace extends AbstractNamespace { @@ -89,9 +89,6 @@ public function clearCache(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/searchable-snapshots-api-mount-snapshot.html - * - * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release - * */ public function mount(array $params = []) { @@ -140,9 +137,6 @@ public function repositoryStats(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/searchable-snapshots-apis.html - * - * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release - * */ public function stats(array $params = []) { diff --git a/src/Elasticsearch/Namespaces/SecurityNamespace.php b/src/Elasticsearch/Namespaces/SecurityNamespace.php index a61487ed6..7fe4b7364 100644 --- a/src/Elasticsearch/Namespaces/SecurityNamespace.php +++ b/src/Elasticsearch/Namespaces/SecurityNamespace.php @@ -22,7 +22,7 @@ * Class SecurityNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class SecurityNamespace extends AbstractNamespace { @@ -159,9 +159,6 @@ public function clearCachedRoles(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-clear-service-token-caches.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function clearCachedServiceTokens(array $params = []) { @@ -210,9 +207,6 @@ public function createApiKey(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-create-service-token.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function createServiceToken(array $params = []) { @@ -306,9 +300,6 @@ public function deleteRoleMapping(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-delete-service-token.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function deleteServiceToken(array $params = []) { @@ -499,9 +490,6 @@ public function getRoleMapping(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-get-service-accounts.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function getServiceAccounts(array $params = []) { @@ -525,9 +513,6 @@ public function getServiceAccounts(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-get-service-credentials.html - * - * @note This API is BETA and may change in ways that are not backwards compatible - * */ public function getServiceCredentials(array $params = []) { diff --git a/src/Elasticsearch/Namespaces/ShutdownNamespace.php b/src/Elasticsearch/Namespaces/ShutdownNamespace.php index c51d6e2ad..45b0319e8 100644 --- a/src/Elasticsearch/Namespaces/ShutdownNamespace.php +++ b/src/Elasticsearch/Namespaces/ShutdownNamespace.php @@ -22,22 +22,19 @@ * Class ShutdownNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class ShutdownNamespace extends AbstractNamespace { /** - * Removes a node from the shutdown list + * Removes a node from the shutdown list. Designed for indirect use by ECE/ESS and ECK. Direct use is not supported. * * $params['node_id'] = (string) The node id of node to be removed from the shutdown state * * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current - * - * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release - * */ public function deleteNode(array $params = []) { @@ -51,16 +48,13 @@ public function deleteNode(array $params = []) return $this->performRequest($endpoint); } /** - * Retrieve status of a node or nodes that are currently marked as shutting down + * Retrieve status of a node or nodes that are currently marked as shutting down. Designed for indirect use by ECE/ESS and ECK. Direct use is not supported. * * $params['node_id'] = (string) Which node for which to retrieve the shutdown status * * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current - * - * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release - * */ public function getNode(array $params = []) { @@ -74,7 +68,7 @@ public function getNode(array $params = []) return $this->performRequest($endpoint); } /** - * Adds a node to be shut down + * Adds a node to be shut down. Designed for indirect use by ECE/ESS and ECK. Direct use is not supported. * * $params['node_id'] = (string) The node id of node to be shut down * $params['body'] = (array) The shutdown type definition to register (Required) @@ -82,9 +76,6 @@ public function getNode(array $params = []) * @param array $params Associative array of parameters * @return array * @see https://www.elastic.co/guide/en/elasticsearch/reference/current - * - * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release - * */ public function putNode(array $params = []) { diff --git a/src/Elasticsearch/Namespaces/SlmNamespace.php b/src/Elasticsearch/Namespaces/SlmNamespace.php index 29f7a599e..dc35f072c 100644 --- a/src/Elasticsearch/Namespaces/SlmNamespace.php +++ b/src/Elasticsearch/Namespaces/SlmNamespace.php @@ -22,7 +22,7 @@ * Class SlmNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class SlmNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SnapshotNamespace.php b/src/Elasticsearch/Namespaces/SnapshotNamespace.php index 879a3b38b..ce8c2e8e8 100644 --- a/src/Elasticsearch/Namespaces/SnapshotNamespace.php +++ b/src/Elasticsearch/Namespaces/SnapshotNamespace.php @@ -22,7 +22,7 @@ * Class SnapshotNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class SnapshotNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SqlNamespace.php b/src/Elasticsearch/Namespaces/SqlNamespace.php index 0e54335aa..862ab0773 100644 --- a/src/Elasticsearch/Namespaces/SqlNamespace.php +++ b/src/Elasticsearch/Namespaces/SqlNamespace.php @@ -22,7 +22,7 @@ * Class SqlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class SqlNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SslNamespace.php b/src/Elasticsearch/Namespaces/SslNamespace.php index a073a5bdb..92c8e49b2 100644 --- a/src/Elasticsearch/Namespaces/SslNamespace.php +++ b/src/Elasticsearch/Namespaces/SslNamespace.php @@ -22,7 +22,7 @@ * Class SslNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class SslNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/TasksNamespace.php b/src/Elasticsearch/Namespaces/TasksNamespace.php index d9a13b4bf..e0b4eaf29 100644 --- a/src/Elasticsearch/Namespaces/TasksNamespace.php +++ b/src/Elasticsearch/Namespaces/TasksNamespace.php @@ -22,7 +22,7 @@ * Class TasksNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class TasksNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/TextStructureNamespace.php b/src/Elasticsearch/Namespaces/TextStructureNamespace.php index f578382af..698137e45 100644 --- a/src/Elasticsearch/Namespaces/TextStructureNamespace.php +++ b/src/Elasticsearch/Namespaces/TextStructureNamespace.php @@ -22,7 +22,7 @@ * Class TextStructureNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class TextStructureNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/TransformNamespace.php b/src/Elasticsearch/Namespaces/TransformNamespace.php index e951556df..465b94de4 100644 --- a/src/Elasticsearch/Namespaces/TransformNamespace.php +++ b/src/Elasticsearch/Namespaces/TransformNamespace.php @@ -22,7 +22,7 @@ * Class TransformNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class TransformNamespace extends AbstractNamespace { @@ -32,6 +32,7 @@ class TransformNamespace extends AbstractNamespace * * $params['transform_id'] = (string) The id of the transform to delete * $params['force'] = (boolean) When `true`, the transform is deleted regardless of its current state. The default value is `false`, meaning that the transform must be `stopped` before it can be deleted. + * $params['timeout'] = (time) Controls the time to wait for the transform deletion * * @param array $params Associative array of parameters * @return array @@ -99,6 +100,7 @@ public function getTransformStats(array $params = []) * Previews a transform. * * $params['transform_id'] = (string) The id of the transform to preview. + * $params['timeout'] = (time) Controls the time to wait for the preview * $params['body'] = (array) The definition for the transform to preview * * @param array $params Associative array of parameters @@ -123,6 +125,7 @@ public function previewTransform(array $params = []) * * $params['transform_id'] = (string) The id of the new transform. * $params['defer_validation'] = (boolean) If validations should be deferred until transform starts, defaults to false. + * $params['timeout'] = (time) Controls the time to wait for the transform to start * $params['body'] = (array) The transform definition (Required) * * @param array $params Associative array of parameters @@ -193,6 +196,7 @@ public function stopTransform(array $params = []) * * $params['transform_id'] = (string) The id of the transform. * $params['defer_validation'] = (boolean) If validations should be deferred until transform starts, defaults to false. + * $params['timeout'] = (time) Controls the time to wait for the update * $params['body'] = (array) The update transform definition (Required) * * @param array $params Associative array of parameters @@ -210,6 +214,25 @@ public function updateTransform(array $params = []) $endpoint->setTransformId($transform_id); $endpoint->setBody($body); + return $this->performRequest($endpoint); + } + /** + * Upgrades all transforms. + * + * $params['dry_run'] = (boolean) Whether to only check for updates but don't execute + * $params['timeout'] = (time) Controls the time to wait for the upgrade + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/upgrade-transforms.html + */ + public function upgradeTransforms(array $params = []) + { + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Transform\UpgradeTransforms'); + $endpoint->setParams($params); + return $this->performRequest($endpoint); } } diff --git a/src/Elasticsearch/Namespaces/WatcherNamespace.php b/src/Elasticsearch/Namespaces/WatcherNamespace.php index 3947c4182..3c00d55b7 100644 --- a/src/Elasticsearch/Namespaces/WatcherNamespace.php +++ b/src/Elasticsearch/Namespaces/WatcherNamespace.php @@ -22,7 +22,7 @@ * Class WatcherNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class WatcherNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/XpackNamespace.php b/src/Elasticsearch/Namespaces/XpackNamespace.php index 6848f66f3..3364c1d0a 100644 --- a/src/Elasticsearch/Namespaces/XpackNamespace.php +++ b/src/Elasticsearch/Namespaces/XpackNamespace.php @@ -22,7 +22,7 @@ * Class XpackNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee) + * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) */ class XpackNamespace extends AbstractNamespace { From 753ce9d23a519748253da7222c67417e723bc834 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Tue, 7 Dec 2021 15:00:18 +0100 Subject: [PATCH 51/81] Updated Utility for cleanup YAML tests --- tests/Elasticsearch/Tests/Utility.php | 243 ++++++++++++++++++++++---- 1 file changed, 209 insertions(+), 34 deletions(-) diff --git a/tests/Elasticsearch/Tests/Utility.php b/tests/Elasticsearch/Tests/Utility.php index f6dd8df8b..1125d2d4a 100644 --- a/tests/Elasticsearch/Tests/Utility.php +++ b/tests/Elasticsearch/Tests/Utility.php @@ -30,6 +30,31 @@ class Utility */ private static $version; + /** + * @var bool + */ + private static $hasXPack = false; + + /** + * @var bool + */ + private static $hasIlm = false; + + /** + * @var bool + */ + private static $hasRollups = false; + + /** + * @var bool + */ + private static $hasCcr = false; + + /** + * @var bool + */ + private static $hasShutdown = false; + /** * Get the host URL based on ENV variables */ @@ -96,6 +121,36 @@ public static function getVersion(Client $client): string return self::$version; } + /** + * Read the plugins installed in Elasticsearch using the + * undocumented API GET /_nodes/plugins + * + * @see ESRestTestCase.java:initClient() + */ + private static function readPlugins(Client $client): void + { + $result = $client->transport->performRequest('GET', '/_nodes/plugins'); + foreach ($result['nodes'] as $node) { + foreach ($node['modules'] as $module) { + if (substr($module['name'], 0, 6) === 'x-pack') { + self::$hasXPack = true; + } + if ($module['name'] === 'x-pack-ilm') { + self::$hasIlm = true; + } + if ($module['name'] === 'x-pack-rollup') { + self::$hasRollups = true; + } + if ($module['name'] === 'x-pack-ccr') { + self::$hasCcr = true; + } + if ($module['name'] === 'x-pack-shutdown') { + self::$hasShutdown = true; + } + } + } + } + /** * Clean up the cluster after a test * @@ -103,8 +158,28 @@ public static function getVersion(Client $client): string */ public static function cleanUpCluster(Client $client): void { + self::readPlugins($client); + + self::ensureNoInitializingShards($client); self::wipeCluster($client); self::waitForClusterStateUpdatesToFinish($client); + self::checkForUnexpectedlyRecreatedObjects($client); + } + + /** + * Waits until all shard initialization is completed. + * This is a handy alternative to ensureGreen as it relates to all shards + * in the cluster and doesn't require to know how many nodes/replica there are. + * + * @see ESRestTestCase.java:ensureNoInitializingShards() + */ + private static function ensureNoInitializingShards(Client $client): void + { + $client->cluster()->health([ + 'wait_for_no_initializing_shards' => true, + 'timeout' => '70s', + 'level' => 'shards' + ]); } /** @@ -114,16 +189,14 @@ public static function cleanUpCluster(Client $client): void */ private static function wipeCluster(Client $client): void { - if (getenv('TEST_SUITE') === 'platinum') { + if (self::$hasRollups) { self::wipeRollupJobs($client); self::waitForPendingRollupTasks($client); } - if (version_compare(self::getVersion($client), '7.3.99') > 0) { - self::deleteAllSLMPolicies($client); - } + self::deleteAllSLMPolicies($client); // Clean up searchable snapshots indices before deleting snapshots and repositories - if (getenv('TEST_SUITE') === 'platinum' && version_compare(self::getVersion($client), '7.7.99') > 0) { + if (self::$hasXPack && version_compare(self::getVersion($client), '7.7.99') > 0) { self::wipeSearchableSnapshotsIndices($client); } @@ -131,38 +204,50 @@ private static function wipeCluster(Client $client): void self::wipeDataStreams($client); self::wipeAllIndices($client); - if (getenv('TEST_SUITE') === 'platinum') { + if (self::$hasXPack) { self::wipeTemplateForXpack($client); } else { - // Delete templates - $client->indices()->deleteTemplate([ - 'name' => '*' - ]); - try { - // Delete index template - $client->indices()->deleteIndexTemplate([ - 'name' => '*' - ]); - // Delete component template - $client->cluster()->deleteComponentTemplate([ - 'name' => '*' - ]); - } catch (ElasticsearchException $e) { - // We hit a version of ES that doesn't support index templates v2 yet, so it's safe to ignore - } + self::wipeAllTemplates($client); } self::wipeClusterSettings($client); - if (getenv('TEST_SUITE') === 'platinum') { + if (self::$hasIlm) { self::deleteAllILMPolicies($client); + } + if (self::$hasCcr) { self::deleteAllAutoFollowPatterns($client); + } + if (self::$hasXPack) { self::deleteAllTasks($client); } self::deleteAllNodeShutdownMetadata($client); } + /** + * Remove all templates + */ + private static function wipeAllTemplates(Client $client): void + { + // Delete templates + $client->indices()->deleteTemplate([ + 'name' => '*' + ]); + try { + // Delete index template + $client->indices()->deleteIndexTemplate([ + 'name' => '*' + ]); + // Delete component template + $client->cluster()->deleteComponentTemplate([ + 'name' => '*' + ]); + } catch (ElasticsearchException $e) { + // We hit a version of ES that doesn't support index templates v2 yet, so it's safe to ignore + } + } + /** * Delete all the Roolup Jobs for XPack test suite * @@ -295,7 +380,7 @@ private static function deleteAllSLMPolicies(Client $client): void private static function wipeDataStreams(Client $client): void { try { - if (version_compare(self::getVersion($client), '7.8.99') > 0) { + if (self::$hasXPack) { $client->indices()->deleteDataStream([ 'name' => '*', 'expand_wildcards' => 'all' @@ -304,14 +389,17 @@ private static function wipeDataStreams(Client $client): void } catch (ElasticsearchException $e) { // We hit a version of ES that doesn't understand expand_wildcards, try again without it try { - if (getenv('TEST_SUITE') === 'platinum') { + if (self::$hasXPack) { $client->indices()->deleteDataStream([ 'name' => '*' ]); } - } catch (ElasticsearchException $e) { + } catch (Exception $e) { // We hit a version of ES that doesn't serialize DeleteDataStreamAction.Request#wildcardExpressionsOriginallySpecified // field or that doesn't support data streams so it's safe to ignore + if ($e->getCode() !== '404' && $e->getCode() !== '405') { + throw $e; + } } } } @@ -483,13 +571,10 @@ private static function isXPackTemplate(string $name): bool } switch ($name) { case ".watches": - case "logstash-index-template": - case ".logstash-management": case "security_audit_log": case ".slm-history": case ".async-search": case "saml-service-provider": - case "ilm-history": case "logs": case "logs-settings": case "logs-mappings": @@ -500,13 +585,14 @@ private static function isXPackTemplate(string $name): bool case "synthetics-settings": case "synthetics-mappings": case ".snapshot-blob-cache": - case ".deprecation-indexing-template": + case "ilm-history": case "logstash-index-template": case "security-index-template": case "data-streams-mappings": return true; + default: + return false; } - return false; } /** @@ -522,7 +608,15 @@ private static function preserveILMPolicyIds(): array "watch-history-ilm-policy", "ml-size-based-ilm-policy", "logs", - "metrics" + "metrics", + "synthetics", + "7-days-default", + "30-days-default", + "90-days-default", + "180-days-default", + "365-days-default", + ".fleet-actions-results-ilm-policy", + ".deprecation-indexing-ilm-policy" ]; } @@ -582,8 +676,8 @@ private static function deleteAllTasks(Client $client): void */ private static function deleteAllNodeShutdownMetadata(Client $client) { - if (getenv('TEST_SUITE') !== 'platinum' || version_compare(self::getVersion($client), '7.15.0') < 0) { - // Node shutdown APIs are only present in xpack from 7.15+ + if (!self::$hasShutdown || version_compare(self::getVersion($client), '7.15.0') < 0) { + // Node shutdown APIs are only present in xpack return; } $nodes = $client->shutdown()->getNode(); @@ -629,4 +723,85 @@ private static function waitForClusterStateUpdatesToFinish(Client $client, int $ $stillWaiting = ! empty($result['tasks']); } while ($stillWaiting && time() < ($start + $timeout)); } + + /** + * Returns all the unexpected ilm policies, removing $exclusions from the list + */ + private static function getAllUnexpectedIlmPolicies(Client $client, array $exclusions): array + { + try { + $policies = $client->ilm()->getLifecycle(); + } catch (ElasticsearchException $e) { + return []; + } + foreach ($policies as $name => $value) { + if (in_array($name, $exclusions)) { + unset($policies[$name]); + } + } + return $policies; + } + + /** + * Returns all the unexpected templates + */ + private static function getAllUnexpectedTemplates(Client $client): array + { + if (!self::$hasXPack) { + return []; + } + $unexpected = []; + // In case of bwc testing, if all nodes are before 7.7.0 then no need + // to attempt to delete component and composable index templates, + // because these were introduced in 7.7.0: + if (version_compare(self::getVersion($client), '7.6.99') > 0) { + $result = $client->indices()->getIndexTemplate(); + foreach ($result['index_templates'] as $template) { + if (!self::isXPackTemplate($template['name'])) { + $unexpected[$template['name']] = true; + } + } + $result = $client->cluster()->getComponentTemplate(); + foreach ($result['component_templates'] as $template) { + if (!self::isXPackTemplate($template['name'])) { + $unexpected[$template['name']] = true; + } + } + } + $result = $client->indices()->getIndexTemplate(); + foreach ($result['index_templates'] as $template) { + if (!self::isXPackTemplate($template['name'])) { + $unexpected[$template['name']] = true; + } + } + return array_keys($unexpected); + } + + + /** + * This method checks whether ILM policies or templates get recreated after + * they have been deleted. If so, we are probably deleting them unnecessarily, + * potentially causing test performance problems. This could happen for example + * if someone adds a new standard ILM policy but forgets to put it in the + * exclusion list in this test. + */ + private static function checkForUnexpectedlyRecreatedObjects(Client $client): void + { + if (self::$hasIlm) { + $policies = self::getAllUnexpectedIlmPolicies($client, self::preserveILMPolicyIds()); + if (count($policies) > 0) { + throw new Exception(sprintf( + "Expected no ILM policies after deletions, but found %s", + implode(',', array_keys($policies)) + )); + } + } + $templates = self::getAllUnexpectedTemplates($client); + if (count($templates) > 0) { + throw new Exception(sprintf( + "Expected no templates after deletions, but found %s", + implode(',', array_keys($templates)) + )); + } + } } From 00a105aed92746b1c1c30c55e98d83ef63c5549d Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Tue, 7 Dec 2021 15:39:09 +0100 Subject: [PATCH 52/81] Added .logstash-management in isXPackTemplate --- tests/Elasticsearch/Tests/Utility.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Elasticsearch/Tests/Utility.php b/tests/Elasticsearch/Tests/Utility.php index 1125d2d4a..05325b857 100644 --- a/tests/Elasticsearch/Tests/Utility.php +++ b/tests/Elasticsearch/Tests/Utility.php @@ -587,6 +587,7 @@ private static function isXPackTemplate(string $name): bool case ".snapshot-blob-cache": case "ilm-history": case "logstash-index-template": + case ".logstash-management": case "security-index-template": case "data-streams-mappings": return true; From 37f33fb6bd699f08b480012af2cfef2aa5666c4f Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Tue, 7 Dec 2021 22:56:44 +0100 Subject: [PATCH 53/81] Added 500 status code in wipeDataStreams --- tests/Elasticsearch/Tests/Utility.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Elasticsearch/Tests/Utility.php b/tests/Elasticsearch/Tests/Utility.php index 05325b857..91a33de72 100644 --- a/tests/Elasticsearch/Tests/Utility.php +++ b/tests/Elasticsearch/Tests/Utility.php @@ -397,7 +397,7 @@ private static function wipeDataStreams(Client $client): void } catch (Exception $e) { // We hit a version of ES that doesn't serialize DeleteDataStreamAction.Request#wildcardExpressionsOriginallySpecified // field or that doesn't support data streams so it's safe to ignore - if ($e->getCode() !== '404' && $e->getCode() !== '405') { + if (!in_array($e->getCode(), ['404', '405', '500'])) { throw $e; } } From 8cfc951c7c8a56b24f55a0ca2c65bc5ec47725a3 Mon Sep 17 00:00:00 2001 From: Karyna Tsymbal Date: Wed, 8 Dec 2021 00:53:17 +0300 Subject: [PATCH 54/81] Replace trait with abstract class to avoid Deprecated Functionality issue in PHP 8.1 (#1175) * Replace trait with abstract class to avoid deprecation functionality issue * fix phpcs fail --- src/Elasticsearch/Endpoints/Ml/PostData.php | 1 - src/Elasticsearch/Namespaces/BooleanRequestWrapper.php | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Elasticsearch/Endpoints/Ml/PostData.php b/src/Elasticsearch/Endpoints/Ml/PostData.php index 4313f6439..91ef5d7ca 100644 --- a/src/Elasticsearch/Endpoints/Ml/PostData.php +++ b/src/Elasticsearch/Endpoints/Ml/PostData.php @@ -89,5 +89,4 @@ public function setJobId($job_id): PostData return $this; } - } diff --git a/src/Elasticsearch/Namespaces/BooleanRequestWrapper.php b/src/Elasticsearch/Namespaces/BooleanRequestWrapper.php index 856dcf2a2..8f9e6ebc3 100644 --- a/src/Elasticsearch/Namespaces/BooleanRequestWrapper.php +++ b/src/Elasticsearch/Namespaces/BooleanRequestWrapper.php @@ -24,7 +24,7 @@ use Elasticsearch\Transport; use GuzzleHttp\Ring\Future\FutureArrayInterface; -trait BooleanRequestWrapper +abstract class BooleanRequestWrapper { /** * Perform Request From c7c8a2845410d0824fe1798c4eb94361d2f391c7 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 9 Dec 2021 14:48:26 +0100 Subject: [PATCH 55/81] Updated run-elasticsearch script and Cleanup YAML tests --- .ci/functions/imports.sh | 6 ++- .ci/run-elasticsearch.sh | 59 ++++++++++++++++++--------- .ci/run-repository.sh | 2 +- tests/Elasticsearch/Tests/Utility.php | 15 ++++--- 4 files changed, 52 insertions(+), 30 deletions(-) diff --git a/.ci/functions/imports.sh b/.ci/functions/imports.sh index 13f681967..c05f36826 100644 --- a/.ci/functions/imports.sh +++ b/.ci/functions/imports.sh @@ -26,7 +26,11 @@ if [[ -z $es_node_name ]]; then export es_node_name=instance export elastic_password=changeme export elasticsearch_image=elasticsearch - export elasticsearch_url=https://elastic:${elastic_password}@${es_node_name}:9200 + export elasticsearch_scheme="https" + if [[ $TEST_SUITE != "platinum" ]]; then + export elasticsearch_scheme="http" + fi + export elasticsearch_url=${elasticsearch_scheme}://elastic:${elastic_password}@${es_node_name}:9200 export external_elasticsearch_url=${elasticsearch_url/$es_node_name/localhost} export elasticsearch_container="${elasticsearch_image}:${STACK_VERSION}" diff --git a/.ci/run-elasticsearch.sh b/.ci/run-elasticsearch.sh index 2b613158b..3f4e2f1da 100755 --- a/.ci/run-elasticsearch.sh +++ b/.ci/run-elasticsearch.sh @@ -7,7 +7,7 @@ # Export the TEST_SUITE variable, eg. 'free' or 'platinum' defaults to 'free'. # Export the NUMBER_OF_NODES variable to start more than 1 node -# Version 1.3.0 +# Version 1.6.1 # - Initial version of the run-elasticsearch.sh script # - Deleting the volume should not dependent on the container still running # - Fixed `ES_JAVA_OPTS` config @@ -17,6 +17,10 @@ # - Added 5 retries on docker pull for fixing transient network errors # - Added flags to make local CCR configurations work # - Added action.destructive_requires_name=false as the default will be true in v8 +# - Added ingest.geoip.downloader.enabled=false as it causes false positives in testing +# - Moved ELASTIC_PASSWORD and xpack.security.enabled to the base arguments for "Security On by default" +# - Use https only when TEST_SUITE is "platinum", when "free" use http +# - Set xpack.security.enabled=false for "free" and xpack.security.enabled=true for "platinum" script_path=$(dirname $(realpath -s $0)) source $script_path/functions/imports.sh @@ -30,6 +34,7 @@ cluster_name=${moniker}${suffix} declare -a volumes environment=($(cat <<-END + --env ELASTIC_PASSWORD=$elastic_password --env node.name=$es_node_name --env cluster.name=$cluster_name --env cluster.initial_master_nodes=$master_node_name @@ -39,31 +44,45 @@ environment=($(cat <<-END --env node.attr.testattr=test --env path.repo=/tmp --env repositories.url.allowed_urls=http://snapshot.test* - --env ingest.geoip.downloader.enabled=false --env action.destructive_requires_name=false - --env ELASTIC_PASSWORD=$elastic_password - --env xpack.license.self_generated.type=trial - --env xpack.security.enabled=true - --env xpack.security.http.ssl.enabled=true - --env xpack.security.http.ssl.verification_mode=certificate - --env xpack.security.http.ssl.key=certs/testnode.key - --env xpack.security.http.ssl.certificate=certs/testnode.crt - --env xpack.security.http.ssl.certificate_authorities=certs/ca.crt - --env xpack.security.transport.ssl.enabled=true - --env xpack.security.transport.ssl.verification_mode=certificate - --env xpack.security.transport.ssl.key=certs/testnode.key - --env xpack.security.transport.ssl.certificate=certs/testnode.crt - --env xpack.security.transport.ssl.certificate_authorities=certs/ca.crt + --env ingest.geoip.downloader.enabled=false + --env cluster.deprecation_indexing.enabled=false END )) -volumes+=($(cat <<-END - --volume $ssl_cert:/usr/share/elasticsearch/config/certs/testnode.crt - --volume $ssl_key:/usr/share/elasticsearch/config/certs/testnode.key - --volume $ssl_ca:/usr/share/elasticsearch/config/certs/ca.crt +if [[ "$TEST_SUITE" == "platinum" ]]; then + environment+=($(cat <<-END + --env xpack.security.enabled=true + --env xpack.license.self_generated.type=trial + --env xpack.security.http.ssl.enabled=true + --env xpack.security.http.ssl.verification_mode=certificate + --env xpack.security.http.ssl.key=certs/testnode.key + --env xpack.security.http.ssl.certificate=certs/testnode.crt + --env xpack.security.http.ssl.certificate_authorities=certs/ca.crt + --env xpack.security.transport.ssl.enabled=true + --env xpack.security.transport.ssl.verification_mode=certificate + --env xpack.security.transport.ssl.key=certs/testnode.key + --env xpack.security.transport.ssl.certificate=certs/testnode.crt + --env xpack.security.transport.ssl.certificate_authorities=certs/ca.crt +END +)) + volumes+=($(cat <<-END + --volume $ssl_cert:/usr/share/elasticsearch/config/certs/testnode.crt + --volume $ssl_key:/usr/share/elasticsearch/config/certs/testnode.key + --volume $ssl_ca:/usr/share/elasticsearch/config/certs/ca.crt +END +)) +else + environment+=($(cat <<-END + --env xpack.security.enabled=false + --env xpack.security.http.ssl.enabled=false END )) +fi -cert_validation_flags="--insecure --cacert /usr/share/elasticsearch/config/certs/ca.crt --resolve ${es_node_name}:443:127.0.0.1" +cert_validation_flags="" +if [[ "$TEST_SUITE" == "platinum" ]]; then + cert_validation_flags="--insecure --cacert /usr/share/elasticsearch/config/certs/ca.crt --resolve ${es_node_name}:443:127.0.0.1" +fi # Pull the container, retry on failures up to 5 times with # short delays between each attempt. Fixes most transient network errors. diff --git a/.ci/run-repository.sh b/.ci/run-repository.sh index 9a2bf4d4c..157c3b59a 100644 --- a/.ci/run-repository.sh +++ b/.ci/run-repository.sh @@ -9,7 +9,7 @@ script_path=$(dirname $(realpath -s $0)) source $script_path/functions/imports.sh set -euo pipefail -PHP_VERSION=${PHP_VERSION-7.4-cli} +PHP_VERSION=${PHP_VERSION-8.0-cli} ELASTICSEARCH_URL=${ELASTICSEARCH_URL-"$elasticsearch_url"} elasticsearch_container=${elasticsearch_container-} diff --git a/tests/Elasticsearch/Tests/Utility.php b/tests/Elasticsearch/Tests/Utility.php index 91a33de72..134bf7985 100644 --- a/tests/Elasticsearch/Tests/Utility.php +++ b/tests/Elasticsearch/Tests/Utility.php @@ -189,11 +189,13 @@ private static function ensureNoInitializingShards(Client $client): void */ private static function wipeCluster(Client $client): void { - if (self::$hasRollups) { + if (self::$hasXPack) { self::wipeRollupJobs($client); self::waitForPendingRollupTasks($client); } - self::deleteAllSLMPolicies($client); + if (version_compare(self::getVersion($client), '7.3.99') > 0) { + self::deleteAllSLMPolicies($client); + } // Clean up searchable snapshots indices before deleting snapshots and repositories if (self::$hasXPack && version_compare(self::getVersion($client), '7.7.99') > 0) { @@ -212,14 +214,11 @@ private static function wipeCluster(Client $client): void self::wipeClusterSettings($client); - if (self::$hasIlm) { + if (self::$hasXPack) { self::deleteAllILMPolicies($client); } - if (self::$hasCcr) { - self::deleteAllAutoFollowPatterns($client); - } if (self::$hasXPack) { - self::deleteAllTasks($client); + self::deleteAllAutoFollowPatterns($client); } self::deleteAllNodeShutdownMetadata($client); @@ -421,7 +420,7 @@ private static function wipeAllIndices(Client $client): void 'expand_wildcards' => $expand ]); } catch (Exception $e) { - if ($e->getCode() != '404') { + if (!in_array($e->getCode(), ['404'])) { throw $e; } } From 797699df38a2f66c20defda4560a65c1efc67c83 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 9 Dec 2021 14:49:02 +0100 Subject: [PATCH 56/81] Updated endpoints to ES 7.16.0 --- src/Elasticsearch/Client.php | 4 ++-- src/Elasticsearch/Endpoints/AsyncSearch/Delete.php | 2 +- src/Elasticsearch/Endpoints/AsyncSearch/Get.php | 2 +- src/Elasticsearch/Endpoints/AsyncSearch/Status.php | 2 +- src/Elasticsearch/Endpoints/AsyncSearch/Submit.php | 2 +- .../Endpoints/Autoscaling/DeleteAutoscalingPolicy.php | 2 +- .../Endpoints/Autoscaling/GetAutoscalingCapacity.php | 2 +- .../Endpoints/Autoscaling/GetAutoscalingPolicy.php | 2 +- .../Endpoints/Autoscaling/PutAutoscalingPolicy.php | 2 +- src/Elasticsearch/Endpoints/Bulk.php | 2 +- src/Elasticsearch/Endpoints/Cat/Aliases.php | 2 +- src/Elasticsearch/Endpoints/Cat/Allocation.php | 2 +- src/Elasticsearch/Endpoints/Cat/Count.php | 2 +- src/Elasticsearch/Endpoints/Cat/Fielddata.php | 2 +- src/Elasticsearch/Endpoints/Cat/Health.php | 2 +- src/Elasticsearch/Endpoints/Cat/Help.php | 2 +- src/Elasticsearch/Endpoints/Cat/Indices.php | 2 +- src/Elasticsearch/Endpoints/Cat/Master.php | 2 +- src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php | 2 +- src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php | 2 +- src/Elasticsearch/Endpoints/Cat/MlJobs.php | 2 +- src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php | 2 +- src/Elasticsearch/Endpoints/Cat/NodeAttrs.php | 2 +- src/Elasticsearch/Endpoints/Cat/Nodes.php | 2 +- src/Elasticsearch/Endpoints/Cat/PendingTasks.php | 2 +- src/Elasticsearch/Endpoints/Cat/Plugins.php | 2 +- src/Elasticsearch/Endpoints/Cat/Recovery.php | 2 +- src/Elasticsearch/Endpoints/Cat/Repositories.php | 2 +- src/Elasticsearch/Endpoints/Cat/Segments.php | 2 +- src/Elasticsearch/Endpoints/Cat/Shards.php | 2 +- src/Elasticsearch/Endpoints/Cat/Snapshots.php | 2 +- src/Elasticsearch/Endpoints/Cat/Tasks.php | 2 +- src/Elasticsearch/Endpoints/Cat/Templates.php | 2 +- src/Elasticsearch/Endpoints/Cat/ThreadPool.php | 2 +- src/Elasticsearch/Endpoints/Cat/Transforms.php | 2 +- .../Endpoints/Ccr/DeleteAutoFollowPattern.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Follow.php | 2 +- src/Elasticsearch/Endpoints/Ccr/FollowInfo.php | 2 +- src/Elasticsearch/Endpoints/Ccr/FollowStats.php | 2 +- src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php | 2 +- src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php | 2 +- src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php | 2 +- src/Elasticsearch/Endpoints/Ccr/PauseFollow.php | 2 +- src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/ResumeAutoFollowPattern.php | 2 +- src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Stats.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Unfollow.php | 2 +- src/Elasticsearch/Endpoints/ClearScroll.php | 2 +- src/Elasticsearch/Endpoints/ClosePointInTime.php | 2 +- src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php | 2 +- .../Endpoints/Cluster/DeleteComponentTemplate.php | 2 +- .../Endpoints/Cluster/DeleteVotingConfigExclusions.php | 2 +- .../Endpoints/Cluster/ExistsComponentTemplate.php | 2 +- .../Endpoints/Cluster/GetComponentTemplate.php | 2 +- src/Elasticsearch/Endpoints/Cluster/GetSettings.php | 2 +- src/Elasticsearch/Endpoints/Cluster/Health.php | 2 +- src/Elasticsearch/Endpoints/Cluster/PendingTasks.php | 2 +- .../Endpoints/Cluster/PostVotingConfigExclusions.php | 2 +- .../Endpoints/Cluster/PutComponentTemplate.php | 2 +- src/Elasticsearch/Endpoints/Cluster/PutSettings.php | 2 +- src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php | 2 +- src/Elasticsearch/Endpoints/Cluster/Reroute.php | 2 +- src/Elasticsearch/Endpoints/Cluster/State.php | 2 +- src/Elasticsearch/Endpoints/Cluster/Stats.php | 2 +- src/Elasticsearch/Endpoints/Count.php | 2 +- src/Elasticsearch/Endpoints/Create.php | 2 +- .../Endpoints/DanglingIndices/DeleteDanglingIndex.php | 2 +- .../Endpoints/DanglingIndices/ImportDanglingIndex.php | 2 +- .../Endpoints/DanglingIndices/ListDanglingIndices.php | 2 +- .../DataFrameTransformDeprecated/DeleteTransform.php | 2 +- .../DataFrameTransformDeprecated/GetTransform.php | 2 +- .../DataFrameTransformDeprecated/GetTransformStats.php | 2 +- .../DataFrameTransformDeprecated/PreviewTransform.php | 2 +- .../DataFrameTransformDeprecated/PutTransform.php | 2 +- .../DataFrameTransformDeprecated/StartTransform.php | 2 +- .../DataFrameTransformDeprecated/StopTransform.php | 2 +- .../DataFrameTransformDeprecated/UpdateTransform.php | 2 +- src/Elasticsearch/Endpoints/Delete.php | 2 +- src/Elasticsearch/Endpoints/DeleteByQuery.php | 2 +- src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php | 2 +- src/Elasticsearch/Endpoints/DeleteScript.php | 2 +- src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php | 2 +- src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php | 2 +- src/Elasticsearch/Endpoints/Enrich/GetPolicy.php | 2 +- src/Elasticsearch/Endpoints/Enrich/PutPolicy.php | 2 +- src/Elasticsearch/Endpoints/Enrich/Stats.php | 2 +- src/Elasticsearch/Endpoints/Eql/Delete.php | 2 +- src/Elasticsearch/Endpoints/Eql/Get.php | 2 +- src/Elasticsearch/Endpoints/Eql/GetStatus.php | 2 +- src/Elasticsearch/Endpoints/Eql/Search.php | 2 +- src/Elasticsearch/Endpoints/Exists.php | 2 +- src/Elasticsearch/Endpoints/ExistsSource.php | 2 +- src/Elasticsearch/Endpoints/Explain.php | 2 +- src/Elasticsearch/Endpoints/Features/GetFeatures.php | 2 +- src/Elasticsearch/Endpoints/Features/ResetFeatures.php | 2 +- src/Elasticsearch/Endpoints/FieldCaps.php | 2 +- src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php | 2 +- src/Elasticsearch/Endpoints/Fleet/Msearch.php | 2 +- src/Elasticsearch/Endpoints/Fleet/Search.php | 2 +- src/Elasticsearch/Endpoints/Get.php | 2 +- src/Elasticsearch/Endpoints/GetScript.php | 2 +- src/Elasticsearch/Endpoints/GetScriptContext.php | 2 +- src/Elasticsearch/Endpoints/GetScriptLanguages.php | 2 +- src/Elasticsearch/Endpoints/GetSource.php | 2 +- src/Elasticsearch/Endpoints/Graph/Explore.php | 2 +- src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Ilm/GetStatus.php | 2 +- src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php | 2 +- src/Elasticsearch/Endpoints/Ilm/MoveToStep.php | 2 +- src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Retry.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Start.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Stop.php | 2 +- src/Elasticsearch/Endpoints/Index.php | 2 +- src/Elasticsearch/Endpoints/Indices/AddBlock.php | 2 +- src/Elasticsearch/Endpoints/Indices/Analyze.php | 2 +- src/Elasticsearch/Endpoints/Indices/ClearCache.php | 2 +- src/Elasticsearch/Endpoints/Indices/CloneIndices.php | 2 +- src/Elasticsearch/Endpoints/Indices/Close.php | 2 +- src/Elasticsearch/Endpoints/Indices/Create.php | 2 +- src/Elasticsearch/Endpoints/Indices/CreateDataStream.php | 2 +- src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php | 2 +- src/Elasticsearch/Endpoints/Indices/Delete.php | 2 +- src/Elasticsearch/Endpoints/Indices/DeleteAlias.php | 2 +- src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php | 2 +- .../Endpoints/Indices/DeleteIndexTemplate.php | 2 +- src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php | 2 +- src/Elasticsearch/Endpoints/Indices/DiskUsage.php | 2 +- src/Elasticsearch/Endpoints/Indices/Exists.php | 2 +- src/Elasticsearch/Endpoints/Indices/ExistsAlias.php | 2 +- .../Endpoints/Indices/ExistsIndexTemplate.php | 2 +- src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php | 2 +- src/Elasticsearch/Endpoints/Indices/ExistsType.php | 2 +- src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php | 2 +- src/Elasticsearch/Endpoints/Indices/Flush.php | 2 +- src/Elasticsearch/Endpoints/Indices/FlushSynced.php | 2 +- src/Elasticsearch/Endpoints/Indices/ForceMerge.php | 2 +- src/Elasticsearch/Endpoints/Indices/Freeze.php | 2 +- src/Elasticsearch/Endpoints/Indices/Get.php | 2 +- src/Elasticsearch/Endpoints/Indices/GetAlias.php | 2 +- src/Elasticsearch/Endpoints/Indices/GetDataStream.php | 2 +- src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php | 2 +- src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php | 2 +- src/Elasticsearch/Endpoints/Indices/GetMapping.php | 2 +- src/Elasticsearch/Endpoints/Indices/GetSettings.php | 2 +- src/Elasticsearch/Endpoints/Indices/GetTemplate.php | 2 +- src/Elasticsearch/Endpoints/Indices/GetUpgrade.php | 2 +- .../Endpoints/Indices/MigrateToDataStream.php | 2 +- src/Elasticsearch/Endpoints/Indices/ModifyDataStream.php | 2 +- src/Elasticsearch/Endpoints/Indices/Open.php | 2 +- src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php | 2 +- src/Elasticsearch/Endpoints/Indices/PutAlias.php | 2 +- src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php | 2 +- src/Elasticsearch/Endpoints/Indices/PutMapping.php | 2 +- src/Elasticsearch/Endpoints/Indices/PutSettings.php | 2 +- src/Elasticsearch/Endpoints/Indices/PutTemplate.php | 2 +- src/Elasticsearch/Endpoints/Indices/Recovery.php | 2 +- src/Elasticsearch/Endpoints/Indices/Refresh.php | 2 +- .../Endpoints/Indices/ReloadSearchAnalyzers.php | 2 +- src/Elasticsearch/Endpoints/Indices/ResolveIndex.php | 2 +- src/Elasticsearch/Endpoints/Indices/Rollover.php | 2 +- src/Elasticsearch/Endpoints/Indices/Segments.php | 2 +- src/Elasticsearch/Endpoints/Indices/ShardStores.php | 2 +- src/Elasticsearch/Endpoints/Indices/Shrink.php | 2 +- .../Endpoints/Indices/SimulateIndexTemplate.php | 2 +- src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php | 2 +- src/Elasticsearch/Endpoints/Indices/Split.php | 2 +- src/Elasticsearch/Endpoints/Indices/Stats.php | 2 +- src/Elasticsearch/Endpoints/Indices/Unfreeze.php | 2 +- src/Elasticsearch/Endpoints/Indices/UpdateAliases.php | 2 +- src/Elasticsearch/Endpoints/Indices/Upgrade.php | 2 +- src/Elasticsearch/Endpoints/Indices/ValidateQuery.php | 2 +- src/Elasticsearch/Endpoints/Info.php | 2 +- src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php | 2 +- src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php | 2 +- src/Elasticsearch/Endpoints/Ingest/GetPipeline.php | 2 +- src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php | 2 +- src/Elasticsearch/Endpoints/Ingest/PutPipeline.php | 2 +- src/Elasticsearch/Endpoints/Ingest/Simulate.php | 2 +- src/Elasticsearch/Endpoints/License/Delete.php | 2 +- src/Elasticsearch/Endpoints/License/Get.php | 2 +- src/Elasticsearch/Endpoints/License/GetBasicStatus.php | 2 +- src/Elasticsearch/Endpoints/License/GetTrialStatus.php | 2 +- src/Elasticsearch/Endpoints/License/Post.php | 2 +- src/Elasticsearch/Endpoints/License/PostStartBasic.php | 2 +- src/Elasticsearch/Endpoints/License/PostStartTrial.php | 2 +- src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php | 2 +- src/Elasticsearch/Endpoints/Logstash/GetPipeline.php | 2 +- src/Elasticsearch/Endpoints/Logstash/PutPipeline.php | 2 +- src/Elasticsearch/Endpoints/MTermVectors.php | 2 +- src/Elasticsearch/Endpoints/Mget.php | 2 +- src/Elasticsearch/Endpoints/Migration/Deprecations.php | 2 +- .../Endpoints/Migration/GetFeatureUpgradeStatus.php | 2 +- .../Endpoints/Migration/PostFeatureUpgrade.php | 2 +- src/Elasticsearch/Endpoints/Ml/CloseJob.php | 2 +- src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php | 2 +- src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php | 2 +- src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php | 2 +- .../Endpoints/Ml/DeleteDataFrameAnalytics.php | 2 +- src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php | 2 +- src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php | 2 +- src/Elasticsearch/Endpoints/Ml/DeleteFilter.php | 2 +- src/Elasticsearch/Endpoints/Ml/DeleteForecast.php | 2 +- src/Elasticsearch/Endpoints/Ml/DeleteJob.php | 2 +- src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php | 2 +- src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php | 2 +- src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php | 2 +- src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php | 2 +- src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php | 2 +- .../Endpoints/Ml/ExplainDataFrameAnalytics.php | 2 +- src/Elasticsearch/Endpoints/Ml/FindFileStructure.php | 2 +- src/Elasticsearch/Endpoints/Ml/FlushJob.php | 2 +- src/Elasticsearch/Endpoints/Ml/Forecast.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetBuckets.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetCalendars.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetCategories.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/GetDataFrameAnalyticsStats.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetFilters.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetInfluencers.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetJobStats.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetJobs.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetRecords.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php | 2 +- src/Elasticsearch/Endpoints/Ml/Info.php | 2 +- src/Elasticsearch/Endpoints/Ml/OpenJob.php | 2 +- src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php | 2 +- src/Elasticsearch/Endpoints/Ml/PostData.php | 3 ++- .../Endpoints/Ml/PreviewDataFrameAnalytics.php | 2 +- src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutCalendar.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutDatafeed.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutFilter.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutJob.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php | 2 +- src/Elasticsearch/Endpoints/Ml/ResetJob.php | 2 +- src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php | 2 +- src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php | 2 +- src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php | 2 +- src/Elasticsearch/Endpoints/Ml/StartDatafeed.php | 2 +- src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php | 2 +- src/Elasticsearch/Endpoints/Ml/StopDatafeed.php | 2 +- .../Endpoints/Ml/UpdateDataFrameAnalytics.php | 2 +- src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php | 2 +- src/Elasticsearch/Endpoints/Ml/UpdateFilter.php | 2 +- src/Elasticsearch/Endpoints/Ml/UpdateJob.php | 2 +- src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php | 2 +- src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php | 2 +- src/Elasticsearch/Endpoints/Ml/Validate.php | 2 +- src/Elasticsearch/Endpoints/Ml/ValidateDetector.php | 2 +- src/Elasticsearch/Endpoints/Monitoring/Bulk.php | 2 +- src/Elasticsearch/Endpoints/Msearch.php | 2 +- src/Elasticsearch/Endpoints/MsearchTemplate.php | 2 +- .../Endpoints/Nodes/ClearRepositoriesMeteringArchive.php | 2 +- .../Endpoints/Nodes/GetRepositoriesMeteringInfo.php | 2 +- src/Elasticsearch/Endpoints/Nodes/HotThreads.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Info.php | 2 +- src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Stats.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Usage.php | 2 +- src/Elasticsearch/Endpoints/OpenPointInTime.php | 2 +- src/Elasticsearch/Endpoints/Ping.php | 2 +- src/Elasticsearch/Endpoints/PutScript.php | 2 +- src/Elasticsearch/Endpoints/RankEval.php | 2 +- src/Elasticsearch/Endpoints/Reindex.php | 2 +- src/Elasticsearch/Endpoints/ReindexRethrottle.php | 2 +- src/Elasticsearch/Endpoints/RenderSearchTemplate.php | 2 +- src/Elasticsearch/Endpoints/Rollup/DeleteJob.php | 2 +- src/Elasticsearch/Endpoints/Rollup/GetJobs.php | 2 +- src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php | 2 +- src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php | 2 +- src/Elasticsearch/Endpoints/Rollup/PutJob.php | 2 +- src/Elasticsearch/Endpoints/Rollup/Rollup.php | 2 +- src/Elasticsearch/Endpoints/Rollup/RollupSearch.php | 2 +- src/Elasticsearch/Endpoints/Rollup/StartJob.php | 2 +- src/Elasticsearch/Endpoints/Rollup/StopJob.php | 2 +- src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php | 2 +- src/Elasticsearch/Endpoints/Scroll.php | 2 +- src/Elasticsearch/Endpoints/Search.php | 2 +- src/Elasticsearch/Endpoints/SearchMvt.php | 2 +- src/Elasticsearch/Endpoints/SearchShards.php | 2 +- src/Elasticsearch/Endpoints/SearchTemplate.php | 2 +- .../Endpoints/SearchableSnapshots/CacheStats.php | 2 +- .../Endpoints/SearchableSnapshots/ClearCache.php | 2 +- src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php | 2 +- .../Endpoints/SearchableSnapshots/RepositoryStats.php | 2 +- src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php | 2 +- src/Elasticsearch/Endpoints/Security/Authenticate.php | 2 +- src/Elasticsearch/Endpoints/Security/ChangePassword.php | 2 +- src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php | 2 +- .../Endpoints/Security/ClearCachedPrivileges.php | 2 +- src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php | 2 +- src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php | 2 +- .../Endpoints/Security/ClearCachedServiceTokens.php | 2 +- src/Elasticsearch/Endpoints/Security/CreateApiKey.php | 2 +- .../Endpoints/Security/CreateServiceToken.php | 2 +- src/Elasticsearch/Endpoints/Security/DeletePrivileges.php | 2 +- src/Elasticsearch/Endpoints/Security/DeleteRole.php | 2 +- src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php | 2 +- .../Endpoints/Security/DeleteServiceToken.php | 2 +- src/Elasticsearch/Endpoints/Security/DeleteUser.php | 2 +- src/Elasticsearch/Endpoints/Security/DisableUser.php | 2 +- src/Elasticsearch/Endpoints/Security/EnableUser.php | 2 +- src/Elasticsearch/Endpoints/Security/GetApiKey.php | 2 +- .../Endpoints/Security/GetBuiltinPrivileges.php | 2 +- src/Elasticsearch/Endpoints/Security/GetPrivileges.php | 2 +- src/Elasticsearch/Endpoints/Security/GetRole.php | 2 +- src/Elasticsearch/Endpoints/Security/GetRoleMapping.php | 2 +- .../Endpoints/Security/GetServiceAccounts.php | 2 +- .../Endpoints/Security/GetServiceCredentials.php | 2 +- src/Elasticsearch/Endpoints/Security/GetToken.php | 2 +- src/Elasticsearch/Endpoints/Security/GetUser.php | 2 +- src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php | 2 +- src/Elasticsearch/Endpoints/Security/GrantApiKey.php | 2 +- src/Elasticsearch/Endpoints/Security/HasPrivileges.php | 2 +- src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php | 2 +- src/Elasticsearch/Endpoints/Security/InvalidateToken.php | 2 +- src/Elasticsearch/Endpoints/Security/PutPrivileges.php | 2 +- src/Elasticsearch/Endpoints/Security/PutRole.php | 2 +- src/Elasticsearch/Endpoints/Security/PutRoleMapping.php | 2 +- src/Elasticsearch/Endpoints/Security/PutUser.php | 2 +- src/Elasticsearch/Endpoints/Security/QueryApiKeys.php | 2 +- src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php | 2 +- .../Endpoints/Security/SamlCompleteLogout.php | 2 +- src/Elasticsearch/Endpoints/Security/SamlInvalidate.php | 2 +- src/Elasticsearch/Endpoints/Security/SamlLogout.php | 2 +- .../Endpoints/Security/SamlPrepareAuthentication.php | 2 +- .../Endpoints/Security/SamlServiceProviderMetadata.php | 2 +- src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php | 2 +- src/Elasticsearch/Endpoints/Shutdown/GetNode.php | 2 +- src/Elasticsearch/Endpoints/Shutdown/PutNode.php | 2 +- src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php | 2 +- src/Elasticsearch/Endpoints/Slm/GetLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Slm/GetStats.php | 2 +- src/Elasticsearch/Endpoints/Slm/GetStatus.php | 2 +- src/Elasticsearch/Endpoints/Slm/PutLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Slm/Start.php | 2 +- src/Elasticsearch/Endpoints/Slm/Stop.php | 2 +- src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php | 2 +- src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php | 2 +- src/Elasticsearch/Endpoints/Snapshot/Create.php | 2 +- src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php | 2 +- src/Elasticsearch/Endpoints/Snapshot/Delete.php | 2 +- src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php | 2 +- src/Elasticsearch/Endpoints/Snapshot/Get.php | 2 +- src/Elasticsearch/Endpoints/Snapshot/GetRepository.php | 2 +- src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php | 2 +- src/Elasticsearch/Endpoints/Snapshot/Restore.php | 2 +- src/Elasticsearch/Endpoints/Snapshot/Status.php | 2 +- src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php | 2 +- src/Elasticsearch/Endpoints/Sql/ClearCursor.php | 2 +- src/Elasticsearch/Endpoints/Sql/DeleteAsync.php | 2 +- src/Elasticsearch/Endpoints/Sql/GetAsync.php | 2 +- src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php | 2 +- src/Elasticsearch/Endpoints/Sql/Query.php | 2 +- src/Elasticsearch/Endpoints/Sql/Translate.php | 2 +- src/Elasticsearch/Endpoints/Ssl/Certificates.php | 2 +- src/Elasticsearch/Endpoints/Tasks/Cancel.php | 2 +- src/Elasticsearch/Endpoints/Tasks/Get.php | 2 +- src/Elasticsearch/Endpoints/Tasks/ListTasks.php | 2 +- src/Elasticsearch/Endpoints/TermVectors.php | 2 +- src/Elasticsearch/Endpoints/TermsEnum.php | 2 +- .../Endpoints/TextStructure/FindStructure.php | 2 +- src/Elasticsearch/Endpoints/Transform/DeleteTransform.php | 5 ++--- src/Elasticsearch/Endpoints/Transform/GetTransform.php | 2 +- .../Endpoints/Transform/GetTransformStats.php | 2 +- src/Elasticsearch/Endpoints/Transform/PreviewTransform.php | 6 ++---- src/Elasticsearch/Endpoints/Transform/PutTransform.php | 5 ++--- src/Elasticsearch/Endpoints/Transform/StartTransform.php | 2 +- src/Elasticsearch/Endpoints/Transform/StopTransform.php | 2 +- src/Elasticsearch/Endpoints/Transform/UpdateTransform.php | 5 ++--- .../Endpoints/Transform/UpgradeTransforms.php | 5 ++--- src/Elasticsearch/Endpoints/Update.php | 2 +- src/Elasticsearch/Endpoints/UpdateByQuery.php | 2 +- src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php | 2 +- src/Elasticsearch/Endpoints/Watcher/AckWatch.php | 2 +- src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php | 2 +- src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php | 2 +- src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php | 2 +- src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php | 2 +- src/Elasticsearch/Endpoints/Watcher/GetWatch.php | 2 +- src/Elasticsearch/Endpoints/Watcher/PutWatch.php | 2 +- src/Elasticsearch/Endpoints/Watcher/QueryWatches.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Start.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Stats.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Stop.php | 2 +- src/Elasticsearch/Endpoints/Xpack/Info.php | 2 +- src/Elasticsearch/Endpoints/Xpack/Usage.php | 2 +- src/Elasticsearch/Namespaces/AsyncSearchNamespace.php | 2 +- src/Elasticsearch/Namespaces/AutoscalingNamespace.php | 2 +- src/Elasticsearch/Namespaces/CatNamespace.php | 2 +- src/Elasticsearch/Namespaces/CcrNamespace.php | 2 +- src/Elasticsearch/Namespaces/ClusterNamespace.php | 2 +- src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php | 2 +- .../Namespaces/DataFrameTransformDeprecatedNamespace.php | 2 +- src/Elasticsearch/Namespaces/EnrichNamespace.php | 2 +- src/Elasticsearch/Namespaces/EqlNamespace.php | 2 +- src/Elasticsearch/Namespaces/FeaturesNamespace.php | 2 +- src/Elasticsearch/Namespaces/FleetNamespace.php | 2 +- src/Elasticsearch/Namespaces/GraphNamespace.php | 2 +- src/Elasticsearch/Namespaces/IlmNamespace.php | 2 +- src/Elasticsearch/Namespaces/IndicesNamespace.php | 2 +- src/Elasticsearch/Namespaces/IngestNamespace.php | 2 +- src/Elasticsearch/Namespaces/LicenseNamespace.php | 2 +- src/Elasticsearch/Namespaces/LogstashNamespace.php | 2 +- src/Elasticsearch/Namespaces/MigrationNamespace.php | 2 +- src/Elasticsearch/Namespaces/MlNamespace.php | 2 +- src/Elasticsearch/Namespaces/MonitoringNamespace.php | 2 +- src/Elasticsearch/Namespaces/NodesNamespace.php | 2 +- src/Elasticsearch/Namespaces/RollupNamespace.php | 2 +- .../Namespaces/SearchableSnapshotsNamespace.php | 2 +- src/Elasticsearch/Namespaces/SecurityNamespace.php | 2 +- src/Elasticsearch/Namespaces/ShutdownNamespace.php | 2 +- src/Elasticsearch/Namespaces/SlmNamespace.php | 2 +- src/Elasticsearch/Namespaces/SnapshotNamespace.php | 2 +- src/Elasticsearch/Namespaces/SqlNamespace.php | 2 +- src/Elasticsearch/Namespaces/SslNamespace.php | 2 +- src/Elasticsearch/Namespaces/TasksNamespace.php | 2 +- src/Elasticsearch/Namespaces/TextStructureNamespace.php | 2 +- src/Elasticsearch/Namespaces/TransformNamespace.php | 7 +------ src/Elasticsearch/Namespaces/WatcherNamespace.php | 2 +- src/Elasticsearch/Namespaces/XpackNamespace.php | 2 +- 437 files changed, 444 insertions(+), 454 deletions(-) diff --git a/src/Elasticsearch/Client.php b/src/Elasticsearch/Client.php index a9d77864f..3ff330179 100644 --- a/src/Elasticsearch/Client.php +++ b/src/Elasticsearch/Client.php @@ -65,11 +65,11 @@ * Class Client * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Client { - const VERSION = '7.16.0-SNAPSHOT'; + const VERSION = '7.16.0'; /** * @var Transport diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php b/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php index d953c608e..ee2a3f8a2 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Get.php b/src/Elasticsearch/Endpoints/AsyncSearch/Get.php index a618f22a2..e6e73251a 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Get.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Status.php b/src/Elasticsearch/Endpoints/AsyncSearch/Status.php index 654926936..c4c79b6ef 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Status.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Status.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Status extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php b/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php index b4e2e176b..4e1925694 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php @@ -23,7 +23,7 @@ * Elasticsearch API name async_search.submit * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Submit extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php index 7704573dd..bfaee44eb 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.delete_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php index 6b78ededf..02890bba5 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php @@ -23,7 +23,7 @@ * Elasticsearch API name autoscaling.get_autoscaling_capacity * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetAutoscalingCapacity extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php index c61b7e327..c326b9002 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.get_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php index 65b2b3ac4..78d187eb3 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.put_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Bulk.php b/src/Elasticsearch/Endpoints/Bulk.php index 720e9610b..568a39253 100644 --- a/src/Elasticsearch/Endpoints/Bulk.php +++ b/src/Elasticsearch/Endpoints/Bulk.php @@ -26,7 +26,7 @@ * Elasticsearch API name bulk * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Bulk extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Aliases.php b/src/Elasticsearch/Endpoints/Cat/Aliases.php index 19cf66c05..64c5e7d19 100644 --- a/src/Elasticsearch/Endpoints/Cat/Aliases.php +++ b/src/Elasticsearch/Endpoints/Cat/Aliases.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.aliases * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Aliases extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Allocation.php b/src/Elasticsearch/Endpoints/Cat/Allocation.php index 52dcffe80..a8451473a 100644 --- a/src/Elasticsearch/Endpoints/Cat/Allocation.php +++ b/src/Elasticsearch/Endpoints/Cat/Allocation.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.allocation * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Allocation extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Count.php b/src/Elasticsearch/Endpoints/Cat/Count.php index ccfcb17ea..d98bd8ad7 100644 --- a/src/Elasticsearch/Endpoints/Cat/Count.php +++ b/src/Elasticsearch/Endpoints/Cat/Count.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.count * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Count extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Fielddata.php b/src/Elasticsearch/Endpoints/Cat/Fielddata.php index 90ed8f0ae..8b79ea7df 100644 --- a/src/Elasticsearch/Endpoints/Cat/Fielddata.php +++ b/src/Elasticsearch/Endpoints/Cat/Fielddata.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.fielddata * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Fielddata extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Health.php b/src/Elasticsearch/Endpoints/Cat/Health.php index 07876bc09..a0ebbaed7 100644 --- a/src/Elasticsearch/Endpoints/Cat/Health.php +++ b/src/Elasticsearch/Endpoints/Cat/Health.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.health * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Health extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Help.php b/src/Elasticsearch/Endpoints/Cat/Help.php index 7adbe9df7..d3c5a97bf 100644 --- a/src/Elasticsearch/Endpoints/Cat/Help.php +++ b/src/Elasticsearch/Endpoints/Cat/Help.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.help * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Help extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Indices.php b/src/Elasticsearch/Endpoints/Cat/Indices.php index 5fb7fa81b..10b3d51d1 100644 --- a/src/Elasticsearch/Endpoints/Cat/Indices.php +++ b/src/Elasticsearch/Endpoints/Cat/Indices.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.indices * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Indices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Master.php b/src/Elasticsearch/Endpoints/Cat/Master.php index 4b6a1f4bb..995670127 100644 --- a/src/Elasticsearch/Endpoints/Cat/Master.php +++ b/src/Elasticsearch/Endpoints/Cat/Master.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.master * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Master extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php index a22792d36..425816d56 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class MlDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php b/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php index f14b58684..d7186a063 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php +++ b/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_datafeeds * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class MlDatafeeds extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlJobs.php b/src/Elasticsearch/Endpoints/Cat/MlJobs.php index e4d9c167e..aa0bbba8f 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlJobs.php +++ b/src/Elasticsearch/Endpoints/Cat/MlJobs.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_jobs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class MlJobs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php b/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php index c927a20ed..c1ac582fa 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php +++ b/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_trained_models * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class MlTrainedModels extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php b/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php index d0dc88a4b..5d2ff8626 100644 --- a/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php +++ b/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.nodeattrs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class NodeAttrs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Nodes.php b/src/Elasticsearch/Endpoints/Cat/Nodes.php index cfda434ed..da003c3b7 100644 --- a/src/Elasticsearch/Endpoints/Cat/Nodes.php +++ b/src/Elasticsearch/Endpoints/Cat/Nodes.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.nodes * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Nodes extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/PendingTasks.php b/src/Elasticsearch/Endpoints/Cat/PendingTasks.php index f4a5e9e8d..f8730db68 100644 --- a/src/Elasticsearch/Endpoints/Cat/PendingTasks.php +++ b/src/Elasticsearch/Endpoints/Cat/PendingTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.pending_tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PendingTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Plugins.php b/src/Elasticsearch/Endpoints/Cat/Plugins.php index 4c6aee276..b2c55d596 100644 --- a/src/Elasticsearch/Endpoints/Cat/Plugins.php +++ b/src/Elasticsearch/Endpoints/Cat/Plugins.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.plugins * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Plugins extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Recovery.php b/src/Elasticsearch/Endpoints/Cat/Recovery.php index e2c55bbfb..8f1bf3b37 100644 --- a/src/Elasticsearch/Endpoints/Cat/Recovery.php +++ b/src/Elasticsearch/Endpoints/Cat/Recovery.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.recovery * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Recovery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Repositories.php b/src/Elasticsearch/Endpoints/Cat/Repositories.php index b58641ddf..9653829fd 100644 --- a/src/Elasticsearch/Endpoints/Cat/Repositories.php +++ b/src/Elasticsearch/Endpoints/Cat/Repositories.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.repositories * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Repositories extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Segments.php b/src/Elasticsearch/Endpoints/Cat/Segments.php index 8e52839a4..a8e7cd350 100644 --- a/src/Elasticsearch/Endpoints/Cat/Segments.php +++ b/src/Elasticsearch/Endpoints/Cat/Segments.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.segments * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Segments extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Shards.php b/src/Elasticsearch/Endpoints/Cat/Shards.php index 75a7d19d0..5dd59069b 100644 --- a/src/Elasticsearch/Endpoints/Cat/Shards.php +++ b/src/Elasticsearch/Endpoints/Cat/Shards.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.shards * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Shards extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Snapshots.php b/src/Elasticsearch/Endpoints/Cat/Snapshots.php index fea23adf7..0bc14d07b 100644 --- a/src/Elasticsearch/Endpoints/Cat/Snapshots.php +++ b/src/Elasticsearch/Endpoints/Cat/Snapshots.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.snapshots * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Snapshots extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Tasks.php b/src/Elasticsearch/Endpoints/Cat/Tasks.php index eeed0753d..ba6ef0539 100644 --- a/src/Elasticsearch/Endpoints/Cat/Tasks.php +++ b/src/Elasticsearch/Endpoints/Cat/Tasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Tasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Templates.php b/src/Elasticsearch/Endpoints/Cat/Templates.php index 8c09c3fd8..8784ccb4f 100644 --- a/src/Elasticsearch/Endpoints/Cat/Templates.php +++ b/src/Elasticsearch/Endpoints/Cat/Templates.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.templates * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Templates extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/ThreadPool.php b/src/Elasticsearch/Endpoints/Cat/ThreadPool.php index 2f5bdf915..f852421b2 100644 --- a/src/Elasticsearch/Endpoints/Cat/ThreadPool.php +++ b/src/Elasticsearch/Endpoints/Cat/ThreadPool.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.thread_pool * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ThreadPool extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Transforms.php b/src/Elasticsearch/Endpoints/Cat/Transforms.php index fc2eeb4d8..8b296ac80 100644 --- a/src/Elasticsearch/Endpoints/Cat/Transforms.php +++ b/src/Elasticsearch/Endpoints/Cat/Transforms.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.transforms * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Transforms extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php index 1994886c7..984a3411b 100644 --- a/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.delete_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Follow.php b/src/Elasticsearch/Endpoints/Ccr/Follow.php index 256b7c6f5..1d132daef 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Follow.php +++ b/src/Elasticsearch/Endpoints/Ccr/Follow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Follow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php b/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php index 1472471ec..e2942d6f1 100644 --- a/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php +++ b/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow_info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class FollowInfo extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/FollowStats.php b/src/Elasticsearch/Endpoints/Ccr/FollowStats.php index 1756b4731..d4ed81c4b 100644 --- a/src/Elasticsearch/Endpoints/Ccr/FollowStats.php +++ b/src/Elasticsearch/Endpoints/Ccr/FollowStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class FollowStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php b/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php index 2704d2a74..cf224ca16 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php +++ b/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.forget_follower * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ForgetFollower extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php index 6d3b063b1..0cc15321d 100644 --- a/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php @@ -23,7 +23,7 @@ * Elasticsearch API name ccr.get_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php index 9b9d6bb20..709126f23 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.pause_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PauseAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php b/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php index a7dff83eb..c669c15e0 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.pause_follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PauseFollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php index 9d381639b..53e39950c 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.put_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php index 3bcafa74d..9da491a89 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.resume_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ResumeAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php b/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php index d60edc006..7f369be0a 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.resume_follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ResumeFollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Stats.php b/src/Elasticsearch/Endpoints/Ccr/Stats.php index 088dc30bb..5566ce123 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Stats.php +++ b/src/Elasticsearch/Endpoints/Ccr/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ccr.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Unfollow.php b/src/Elasticsearch/Endpoints/Ccr/Unfollow.php index dd3c74a96..4b5e8790c 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Unfollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/Unfollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.unfollow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Unfollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ClearScroll.php b/src/Elasticsearch/Endpoints/ClearScroll.php index 4c5755fd8..c32c783b7 100644 --- a/src/Elasticsearch/Endpoints/ClearScroll.php +++ b/src/Elasticsearch/Endpoints/ClearScroll.php @@ -23,7 +23,7 @@ * Elasticsearch API name clear_scroll * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ClearScroll extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ClosePointInTime.php b/src/Elasticsearch/Endpoints/ClosePointInTime.php index 2a0110dc8..898ded698 100644 --- a/src/Elasticsearch/Endpoints/ClosePointInTime.php +++ b/src/Elasticsearch/Endpoints/ClosePointInTime.php @@ -23,7 +23,7 @@ * Elasticsearch API name close_point_in_time * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ClosePointInTime extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php b/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php index 302a57acc..ef61d271d 100644 --- a/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php +++ b/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.allocation_explain * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class AllocationExplain extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php index 1c512ee76..beb672161 100644 --- a/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.delete_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php b/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php index afd2eec07..c53fea8e9 100644 --- a/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php +++ b/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.delete_voting_config_exclusions * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteVotingConfigExclusions extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php index f8ecb311d..0f5852397 100644 --- a/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.exists_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ExistsComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php index fa16e161e..3d345b733 100644 --- a/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.get_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/GetSettings.php b/src/Elasticsearch/Endpoints/Cluster/GetSettings.php index 0cf376ccb..c079ca26c 100644 --- a/src/Elasticsearch/Endpoints/Cluster/GetSettings.php +++ b/src/Elasticsearch/Endpoints/Cluster/GetSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.get_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Health.php b/src/Elasticsearch/Endpoints/Cluster/Health.php index 5cd173f97..a71ddac86 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Health.php +++ b/src/Elasticsearch/Endpoints/Cluster/Health.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.health * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Health extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php b/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php index baf60226e..831a6f1d4 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php +++ b/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.pending_tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PendingTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php b/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php index a04558ed1..65121ce75 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php +++ b/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.post_voting_config_exclusions * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PostVotingConfigExclusions extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php index ad6c3329f..a35be6a3f 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.put_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PutSettings.php b/src/Elasticsearch/Endpoints/Cluster/PutSettings.php index 450f195e1..5f75ddb30 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PutSettings.php +++ b/src/Elasticsearch/Endpoints/Cluster/PutSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.put_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php b/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php index f89d7feca..e187a56a0 100644 --- a/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php +++ b/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.remote_info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class RemoteInfo extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Reroute.php b/src/Elasticsearch/Endpoints/Cluster/Reroute.php index f1d1ed27d..010ed2dec 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Reroute.php +++ b/src/Elasticsearch/Endpoints/Cluster/Reroute.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.reroute * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Reroute extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/State.php b/src/Elasticsearch/Endpoints/Cluster/State.php index efe926f8e..5657bb662 100644 --- a/src/Elasticsearch/Endpoints/Cluster/State.php +++ b/src/Elasticsearch/Endpoints/Cluster/State.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.state * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class State extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Stats.php b/src/Elasticsearch/Endpoints/Cluster/Stats.php index 7e2e5103c..29f201e7d 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Stats.php +++ b/src/Elasticsearch/Endpoints/Cluster/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Count.php b/src/Elasticsearch/Endpoints/Count.php index 5da3a402f..b5a7cadde 100644 --- a/src/Elasticsearch/Endpoints/Count.php +++ b/src/Elasticsearch/Endpoints/Count.php @@ -23,7 +23,7 @@ * Elasticsearch API name count * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Count extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Create.php b/src/Elasticsearch/Endpoints/Create.php index 03ce19970..36c95c941 100644 --- a/src/Elasticsearch/Endpoints/Create.php +++ b/src/Elasticsearch/Endpoints/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php b/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php index bde61cdd0..e13a2ca09 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name dangling_indices.delete_dangling_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteDanglingIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php b/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php index be95215ee..ef5d75a7a 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name dangling_indices.import_dangling_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ImportDanglingIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php b/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php index 9ac0802cc..2e77cf144 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php @@ -23,7 +23,7 @@ * Elasticsearch API name dangling_indices.list_dangling_indices * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ListDanglingIndices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php index 2b41e873c..150616dca 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.delete_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php index eb9e57470..064e59391 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name data_frame_transform_deprecated.get_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php index 5924c97c5..e6314ccdf 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.get_transform_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetTransformStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php index c4a9c2508..2708441c1 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name data_frame_transform_deprecated.preview_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PreviewTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php index 8719e6b37..4a4254003 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.put_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php index ed29e7564..ad2f602d1 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.start_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class StartTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php index df26cc86d..98fafff61 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.stop_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class StopTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php index c59381d58..46a3bafde 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.update_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class UpdateTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Delete.php b/src/Elasticsearch/Endpoints/Delete.php index ba4b1185f..47ce9edaa 100644 --- a/src/Elasticsearch/Endpoints/Delete.php +++ b/src/Elasticsearch/Endpoints/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteByQuery.php b/src/Elasticsearch/Endpoints/DeleteByQuery.php index 6b870c848..373981660 100644 --- a/src/Elasticsearch/Endpoints/DeleteByQuery.php +++ b/src/Elasticsearch/Endpoints/DeleteByQuery.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_by_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteByQuery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php b/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php index 94ca005b6..3bc9a5a4b 100644 --- a/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php +++ b/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_by_query_rethrottle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteByQueryRethrottle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteScript.php b/src/Elasticsearch/Endpoints/DeleteScript.php index f3ce6fccb..2fd8707f4 100644 --- a/src/Elasticsearch/Endpoints/DeleteScript.php +++ b/src/Elasticsearch/Endpoints/DeleteScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php b/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php index cd31ddb96..4f9f5bacd 100644 --- a/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.delete_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeletePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php b/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php index 94cbf91de..f8af6da1d 100644 --- a/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.execute_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ExecutePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php b/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php index fad84d687..18b825427 100644 --- a/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php @@ -23,7 +23,7 @@ * Elasticsearch API name enrich.get_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php b/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php index abfae5799..fe9ebf747 100644 --- a/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.put_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/Stats.php b/src/Elasticsearch/Endpoints/Enrich/Stats.php index eb4e8295a..f6f5d31fd 100644 --- a/src/Elasticsearch/Endpoints/Enrich/Stats.php +++ b/src/Elasticsearch/Endpoints/Enrich/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name enrich.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Delete.php b/src/Elasticsearch/Endpoints/Eql/Delete.php index f46a37624..3c846af0c 100644 --- a/src/Elasticsearch/Endpoints/Eql/Delete.php +++ b/src/Elasticsearch/Endpoints/Eql/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Get.php b/src/Elasticsearch/Endpoints/Eql/Get.php index d03ff579e..c92a60b3c 100644 --- a/src/Elasticsearch/Endpoints/Eql/Get.php +++ b/src/Elasticsearch/Endpoints/Eql/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/GetStatus.php b/src/Elasticsearch/Endpoints/Eql/GetStatus.php index fbfbf3f9c..c39a2d0ee 100644 --- a/src/Elasticsearch/Endpoints/Eql/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Eql/GetStatus.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Search.php b/src/Elasticsearch/Endpoints/Eql/Search.php index 894defb45..f64d167fa 100644 --- a/src/Elasticsearch/Endpoints/Eql/Search.php +++ b/src/Elasticsearch/Endpoints/Eql/Search.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Search extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Exists.php b/src/Elasticsearch/Endpoints/Exists.php index b6b6219c1..53e8c53ec 100644 --- a/src/Elasticsearch/Endpoints/Exists.php +++ b/src/Elasticsearch/Endpoints/Exists.php @@ -24,7 +24,7 @@ * Elasticsearch API name exists * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Exists extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ExistsSource.php b/src/Elasticsearch/Endpoints/ExistsSource.php index 64178f701..40a2523ee 100644 --- a/src/Elasticsearch/Endpoints/ExistsSource.php +++ b/src/Elasticsearch/Endpoints/ExistsSource.php @@ -24,7 +24,7 @@ * Elasticsearch API name exists_source * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ExistsSource extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Explain.php b/src/Elasticsearch/Endpoints/Explain.php index 3e7ea322d..92f5133aa 100644 --- a/src/Elasticsearch/Endpoints/Explain.php +++ b/src/Elasticsearch/Endpoints/Explain.php @@ -24,7 +24,7 @@ * Elasticsearch API name explain * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Explain extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Features/GetFeatures.php b/src/Elasticsearch/Endpoints/Features/GetFeatures.php index 0b5b5a4af..e261df964 100644 --- a/src/Elasticsearch/Endpoints/Features/GetFeatures.php +++ b/src/Elasticsearch/Endpoints/Features/GetFeatures.php @@ -23,7 +23,7 @@ * Elasticsearch API name features.get_features * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetFeatures extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Features/ResetFeatures.php b/src/Elasticsearch/Endpoints/Features/ResetFeatures.php index df3e7b7ac..383a59ef5 100644 --- a/src/Elasticsearch/Endpoints/Features/ResetFeatures.php +++ b/src/Elasticsearch/Endpoints/Features/ResetFeatures.php @@ -23,7 +23,7 @@ * Elasticsearch API name features.reset_features * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ResetFeatures extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/FieldCaps.php b/src/Elasticsearch/Endpoints/FieldCaps.php index b1c081801..b53a859fe 100644 --- a/src/Elasticsearch/Endpoints/FieldCaps.php +++ b/src/Elasticsearch/Endpoints/FieldCaps.php @@ -23,7 +23,7 @@ * Elasticsearch API name field_caps * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class FieldCaps extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php b/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php index 2d5068ce9..df149c1b4 100644 --- a/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php +++ b/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php @@ -24,7 +24,7 @@ * Elasticsearch API name fleet.global_checkpoints * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GlobalCheckpoints extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Fleet/Msearch.php b/src/Elasticsearch/Endpoints/Fleet/Msearch.php index be3bd3401..59f48add9 100644 --- a/src/Elasticsearch/Endpoints/Fleet/Msearch.php +++ b/src/Elasticsearch/Endpoints/Fleet/Msearch.php @@ -26,7 +26,7 @@ * Elasticsearch API name fleet.msearch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Msearch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Fleet/Search.php b/src/Elasticsearch/Endpoints/Fleet/Search.php index ced5837c3..a1eb3f23d 100644 --- a/src/Elasticsearch/Endpoints/Fleet/Search.php +++ b/src/Elasticsearch/Endpoints/Fleet/Search.php @@ -24,7 +24,7 @@ * Elasticsearch API name fleet.search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Search extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Get.php b/src/Elasticsearch/Endpoints/Get.php index 236c4142c..3e9fe913d 100644 --- a/src/Elasticsearch/Endpoints/Get.php +++ b/src/Elasticsearch/Endpoints/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScript.php b/src/Elasticsearch/Endpoints/GetScript.php index de214b57d..9979e0872 100644 --- a/src/Elasticsearch/Endpoints/GetScript.php +++ b/src/Elasticsearch/Endpoints/GetScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name get_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScriptContext.php b/src/Elasticsearch/Endpoints/GetScriptContext.php index 3023039c9..55e477da4 100644 --- a/src/Elasticsearch/Endpoints/GetScriptContext.php +++ b/src/Elasticsearch/Endpoints/GetScriptContext.php @@ -23,7 +23,7 @@ * Elasticsearch API name get_script_context * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetScriptContext extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScriptLanguages.php b/src/Elasticsearch/Endpoints/GetScriptLanguages.php index d7c2b3095..675f2774d 100644 --- a/src/Elasticsearch/Endpoints/GetScriptLanguages.php +++ b/src/Elasticsearch/Endpoints/GetScriptLanguages.php @@ -23,7 +23,7 @@ * Elasticsearch API name get_script_languages * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetScriptLanguages extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetSource.php b/src/Elasticsearch/Endpoints/GetSource.php index 1285df064..7a0dfcca2 100644 --- a/src/Elasticsearch/Endpoints/GetSource.php +++ b/src/Elasticsearch/Endpoints/GetSource.php @@ -24,7 +24,7 @@ * Elasticsearch API name get_source * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetSource extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Graph/Explore.php b/src/Elasticsearch/Endpoints/Graph/Explore.php index a556f5116..984c081e8 100644 --- a/src/Elasticsearch/Endpoints/Graph/Explore.php +++ b/src/Elasticsearch/Endpoints/Graph/Explore.php @@ -24,7 +24,7 @@ * Elasticsearch API name graph.explore * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Explore extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php index bebd6ee70..20bf00d90 100644 --- a/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.delete_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php index 610c46f4d..a73a55151 100644 --- a/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.explain_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ExplainLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php index 03a483c9e..03325eb99 100644 --- a/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.get_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/GetStatus.php b/src/Elasticsearch/Endpoints/Ilm/GetStatus.php index fc103a284..86148304a 100644 --- a/src/Elasticsearch/Endpoints/Ilm/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Ilm/GetStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php b/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php index 5cacada0d..19342eb10 100644 --- a/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php +++ b/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.migrate_to_data_tiers * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class MigrateToDataTiers extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php b/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php index ea239ad3e..fdd30bad4 100644 --- a/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php +++ b/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.move_to_step * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class MoveToStep extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php index 244ccbd03..cd12ef957 100644 --- a/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.put_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php b/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php index fd59a6979..93d343c76 100644 --- a/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php +++ b/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.remove_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class RemovePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Retry.php b/src/Elasticsearch/Endpoints/Ilm/Retry.php index e270533fc..59407e11b 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Retry.php +++ b/src/Elasticsearch/Endpoints/Ilm/Retry.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.retry * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Retry extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Start.php b/src/Elasticsearch/Endpoints/Ilm/Start.php index 82d6d5d79..ad097c590 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Start.php +++ b/src/Elasticsearch/Endpoints/Ilm/Start.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.start * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Start extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Stop.php b/src/Elasticsearch/Endpoints/Ilm/Stop.php index 59ea00aa1..2819ab088 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Stop.php +++ b/src/Elasticsearch/Endpoints/Ilm/Stop.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.stop * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Stop extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Index.php b/src/Elasticsearch/Endpoints/Index.php index 52ce677ac..cd43c7621 100644 --- a/src/Elasticsearch/Endpoints/Index.php +++ b/src/Elasticsearch/Endpoints/Index.php @@ -24,7 +24,7 @@ * Elasticsearch API name index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Index extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/AddBlock.php b/src/Elasticsearch/Endpoints/Indices/AddBlock.php index 3c4215a57..e5b3e0427 100644 --- a/src/Elasticsearch/Endpoints/Indices/AddBlock.php +++ b/src/Elasticsearch/Endpoints/Indices/AddBlock.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.add_block * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class AddBlock extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Analyze.php b/src/Elasticsearch/Endpoints/Indices/Analyze.php index e998de0c3..e870881aa 100644 --- a/src/Elasticsearch/Endpoints/Indices/Analyze.php +++ b/src/Elasticsearch/Endpoints/Indices/Analyze.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.analyze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Analyze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ClearCache.php b/src/Elasticsearch/Endpoints/Indices/ClearCache.php index 5284bfbc6..5e912cf1d 100644 --- a/src/Elasticsearch/Endpoints/Indices/ClearCache.php +++ b/src/Elasticsearch/Endpoints/Indices/ClearCache.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.clear_cache * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ClearCache extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/CloneIndices.php b/src/Elasticsearch/Endpoints/Indices/CloneIndices.php index 5e921cd8a..ee8bf36b0 100644 --- a/src/Elasticsearch/Endpoints/Indices/CloneIndices.php +++ b/src/Elasticsearch/Endpoints/Indices/CloneIndices.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.clone * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class CloneIndices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Close.php b/src/Elasticsearch/Endpoints/Indices/Close.php index 416914b5b..d7c14b28c 100644 --- a/src/Elasticsearch/Endpoints/Indices/Close.php +++ b/src/Elasticsearch/Endpoints/Indices/Close.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.close * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Close extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Create.php b/src/Elasticsearch/Endpoints/Indices/Create.php index f075d3c35..8f20c022f 100644 --- a/src/Elasticsearch/Endpoints/Indices/Create.php +++ b/src/Elasticsearch/Endpoints/Indices/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php b/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php index c19b43465..61dd34486 100644 --- a/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.create_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class CreateDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php b/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php index 5161b0a40..50e5a8777 100644 --- a/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php +++ b/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.data_streams_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DataStreamsStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Delete.php b/src/Elasticsearch/Endpoints/Indices/Delete.php index b75e361ff..fdf179662 100644 --- a/src/Elasticsearch/Endpoints/Indices/Delete.php +++ b/src/Elasticsearch/Endpoints/Indices/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php b/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php index 353998d1a..1f0630bda 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php b/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php index e7c9377a8..7a3996277 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php index a69e4ceb6..0484daa03 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php b/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php index 89962b0b4..43680da44 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DiskUsage.php b/src/Elasticsearch/Endpoints/Indices/DiskUsage.php index d0375bae1..e81cd5539 100644 --- a/src/Elasticsearch/Endpoints/Indices/DiskUsage.php +++ b/src/Elasticsearch/Endpoints/Indices/DiskUsage.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.disk_usage * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DiskUsage extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Exists.php b/src/Elasticsearch/Endpoints/Indices/Exists.php index b546c25f1..f9cc323c4 100644 --- a/src/Elasticsearch/Endpoints/Indices/Exists.php +++ b/src/Elasticsearch/Endpoints/Indices/Exists.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Exists extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php b/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php index 637faff8c..deb6b1f41 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ExistsAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php index b695520d7..9a61f1045 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ExistsIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php b/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php index d9ed64978..f1dfe752e 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ExistsTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsType.php b/src/Elasticsearch/Endpoints/Indices/ExistsType.php index cace16581..9fc43fa0e 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsType.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsType.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_type * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ExistsType extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php b/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php index f13d4c218..b0d14f138 100644 --- a/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php +++ b/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.field_usage_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class FieldUsageStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Flush.php b/src/Elasticsearch/Endpoints/Indices/Flush.php index 24fd681e4..c6e998f3d 100644 --- a/src/Elasticsearch/Endpoints/Indices/Flush.php +++ b/src/Elasticsearch/Endpoints/Indices/Flush.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.flush * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Flush extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/FlushSynced.php b/src/Elasticsearch/Endpoints/Indices/FlushSynced.php index 3a389ab13..62bb1c236 100644 --- a/src/Elasticsearch/Endpoints/Indices/FlushSynced.php +++ b/src/Elasticsearch/Endpoints/Indices/FlushSynced.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.flush_synced * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class FlushSynced extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ForceMerge.php b/src/Elasticsearch/Endpoints/Indices/ForceMerge.php index d5ba23346..2452d1eb4 100644 --- a/src/Elasticsearch/Endpoints/Indices/ForceMerge.php +++ b/src/Elasticsearch/Endpoints/Indices/ForceMerge.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.forcemerge * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ForceMerge extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Freeze.php b/src/Elasticsearch/Endpoints/Indices/Freeze.php index ba1fd1ea2..806af5e9b 100644 --- a/src/Elasticsearch/Endpoints/Indices/Freeze.php +++ b/src/Elasticsearch/Endpoints/Indices/Freeze.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.freeze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Freeze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Get.php b/src/Elasticsearch/Endpoints/Indices/Get.php index f3e0d4f37..e379805ae 100644 --- a/src/Elasticsearch/Endpoints/Indices/Get.php +++ b/src/Elasticsearch/Endpoints/Indices/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetAlias.php b/src/Elasticsearch/Endpoints/Indices/GetAlias.php index 14cf3d267..598ad5fdd 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/GetAlias.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetDataStream.php b/src/Elasticsearch/Endpoints/Indices/GetDataStream.php index 5802aa00d..66652e73a 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/GetDataStream.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php b/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php index 7abd5d018..e0328894d 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.get_field_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetFieldMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php index 692707f01..3c88fd487 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetMapping.php b/src/Elasticsearch/Endpoints/Indices/GetMapping.php index a619d8dca..cd6200a2c 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/GetMapping.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetSettings.php b/src/Elasticsearch/Endpoints/Indices/GetSettings.php index 66b9a98de..e02bb73fd 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetSettings.php +++ b/src/Elasticsearch/Endpoints/Indices/GetSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetTemplate.php b/src/Elasticsearch/Endpoints/Indices/GetTemplate.php index 21d2f398f..bf9769425 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/GetTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php b/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php index 3e9b5a369..c9503ce5e 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php +++ b/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_upgrade * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetUpgrade extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php b/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php index 4c70f8642..b7571338c 100644 --- a/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.migrate_to_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class MigrateToDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ModifyDataStream.php b/src/Elasticsearch/Endpoints/Indices/ModifyDataStream.php index 290504859..7e1e69f6e 100644 --- a/src/Elasticsearch/Endpoints/Indices/ModifyDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/ModifyDataStream.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.modify_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ModifyDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Open.php b/src/Elasticsearch/Endpoints/Indices/Open.php index e41176162..bf9fbef58 100644 --- a/src/Elasticsearch/Endpoints/Indices/Open.php +++ b/src/Elasticsearch/Endpoints/Indices/Open.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.open * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Open extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php b/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php index 932a6d070..6988bdf04 100644 --- a/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.promote_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PromoteDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutAlias.php b/src/Elasticsearch/Endpoints/Indices/PutAlias.php index a6d967c4c..a4e7552f8 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/PutAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php index 5fa36e620..9a9d5b015 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutMapping.php b/src/Elasticsearch/Endpoints/Indices/PutMapping.php index 4a7cbb073..fafc5c30b 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/PutMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutSettings.php b/src/Elasticsearch/Endpoints/Indices/PutSettings.php index 7e6a88cff..b013e00eb 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutSettings.php +++ b/src/Elasticsearch/Endpoints/Indices/PutSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.put_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutTemplate.php b/src/Elasticsearch/Endpoints/Indices/PutTemplate.php index 8d70b79dd..f0b0477bb 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/PutTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Recovery.php b/src/Elasticsearch/Endpoints/Indices/Recovery.php index 1b1d095e4..d09571c7d 100644 --- a/src/Elasticsearch/Endpoints/Indices/Recovery.php +++ b/src/Elasticsearch/Endpoints/Indices/Recovery.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.recovery * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Recovery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Refresh.php b/src/Elasticsearch/Endpoints/Indices/Refresh.php index 2d3dafafc..b929d56ed 100644 --- a/src/Elasticsearch/Endpoints/Indices/Refresh.php +++ b/src/Elasticsearch/Endpoints/Indices/Refresh.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.refresh * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Refresh extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php b/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php index e5a3900f0..b192e411e 100644 --- a/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php +++ b/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.reload_search_analyzers * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ReloadSearchAnalyzers extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php b/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php index 8946b93b0..ddf08abb3 100644 --- a/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php +++ b/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.resolve_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ResolveIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Rollover.php b/src/Elasticsearch/Endpoints/Indices/Rollover.php index 7eb4c24b6..2c9ca86a3 100644 --- a/src/Elasticsearch/Endpoints/Indices/Rollover.php +++ b/src/Elasticsearch/Endpoints/Indices/Rollover.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.rollover * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Rollover extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Segments.php b/src/Elasticsearch/Endpoints/Indices/Segments.php index 33bc4560e..e4b0e56f1 100644 --- a/src/Elasticsearch/Endpoints/Indices/Segments.php +++ b/src/Elasticsearch/Endpoints/Indices/Segments.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.segments * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Segments extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ShardStores.php b/src/Elasticsearch/Endpoints/Indices/ShardStores.php index 7d73726a6..b6f8b7970 100644 --- a/src/Elasticsearch/Endpoints/Indices/ShardStores.php +++ b/src/Elasticsearch/Endpoints/Indices/ShardStores.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.shard_stores * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ShardStores extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Shrink.php b/src/Elasticsearch/Endpoints/Indices/Shrink.php index d1e5f68ed..1f367cdc6 100644 --- a/src/Elasticsearch/Endpoints/Indices/Shrink.php +++ b/src/Elasticsearch/Endpoints/Indices/Shrink.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.shrink * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Shrink extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php index 5f1eea4ce..7fc782654 100644 --- a/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.simulate_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class SimulateIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php b/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php index 3d016a34f..4b9fe1075 100644 --- a/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.simulate_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class SimulateTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Split.php b/src/Elasticsearch/Endpoints/Indices/Split.php index 35b0de9a2..34ab164f9 100644 --- a/src/Elasticsearch/Endpoints/Indices/Split.php +++ b/src/Elasticsearch/Endpoints/Indices/Split.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.split * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Split extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Stats.php b/src/Elasticsearch/Endpoints/Indices/Stats.php index 9ab80f50f..3003de77b 100644 --- a/src/Elasticsearch/Endpoints/Indices/Stats.php +++ b/src/Elasticsearch/Endpoints/Indices/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Unfreeze.php b/src/Elasticsearch/Endpoints/Indices/Unfreeze.php index 59af229fb..fe1092041 100644 --- a/src/Elasticsearch/Endpoints/Indices/Unfreeze.php +++ b/src/Elasticsearch/Endpoints/Indices/Unfreeze.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.unfreeze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Unfreeze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php b/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php index be6e0c7fa..3daf5d1c4 100644 --- a/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php +++ b/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.update_aliases * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class UpdateAliases extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Upgrade.php b/src/Elasticsearch/Endpoints/Indices/Upgrade.php index a86187822..8d59db83c 100644 --- a/src/Elasticsearch/Endpoints/Indices/Upgrade.php +++ b/src/Elasticsearch/Endpoints/Indices/Upgrade.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.upgrade * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Upgrade extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php b/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php index b0017bba9..cdcbfd910 100644 --- a/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php +++ b/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.validate_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ValidateQuery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Info.php b/src/Elasticsearch/Endpoints/Info.php index 3817adbf0..a66cbbc50 100644 --- a/src/Elasticsearch/Endpoints/Info.php +++ b/src/Elasticsearch/Endpoints/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php b/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php index e8a829ab2..721c2baa3 100644 --- a/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name ingest.delete_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeletePipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php b/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php index 5a472a75f..150129bc9 100644 --- a/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php +++ b/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.geo_ip_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GeoIpStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php b/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php index bfebd6afd..c47b8c3bc 100644 --- a/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.get_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php b/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php index 530aa86c6..1614ee600 100644 --- a/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php +++ b/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.processor_grok * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ProcessorGrok extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php b/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php index f9ce887e9..c80ff7a96 100644 --- a/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name ingest.put_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/Simulate.php b/src/Elasticsearch/Endpoints/Ingest/Simulate.php index 516fef725..c80be00fe 100644 --- a/src/Elasticsearch/Endpoints/Ingest/Simulate.php +++ b/src/Elasticsearch/Endpoints/Ingest/Simulate.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.simulate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Simulate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Delete.php b/src/Elasticsearch/Endpoints/License/Delete.php index f1f1a8f0a..7753e99f2 100644 --- a/src/Elasticsearch/Endpoints/License/Delete.php +++ b/src/Elasticsearch/Endpoints/License/Delete.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Get.php b/src/Elasticsearch/Endpoints/License/Get.php index eba84bf51..5e7d2457f 100644 --- a/src/Elasticsearch/Endpoints/License/Get.php +++ b/src/Elasticsearch/Endpoints/License/Get.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/GetBasicStatus.php b/src/Elasticsearch/Endpoints/License/GetBasicStatus.php index 33fef97fe..019eecb9b 100644 --- a/src/Elasticsearch/Endpoints/License/GetBasicStatus.php +++ b/src/Elasticsearch/Endpoints/License/GetBasicStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get_basic_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetBasicStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/GetTrialStatus.php b/src/Elasticsearch/Endpoints/License/GetTrialStatus.php index 4ed3e6d2c..f02e26a87 100644 --- a/src/Elasticsearch/Endpoints/License/GetTrialStatus.php +++ b/src/Elasticsearch/Endpoints/License/GetTrialStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get_trial_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetTrialStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Post.php b/src/Elasticsearch/Endpoints/License/Post.php index eeefd28c2..2a5db49dd 100644 --- a/src/Elasticsearch/Endpoints/License/Post.php +++ b/src/Elasticsearch/Endpoints/License/Post.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Post extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/PostStartBasic.php b/src/Elasticsearch/Endpoints/License/PostStartBasic.php index f65532983..55447a0c2 100644 --- a/src/Elasticsearch/Endpoints/License/PostStartBasic.php +++ b/src/Elasticsearch/Endpoints/License/PostStartBasic.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post_start_basic * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PostStartBasic extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/PostStartTrial.php b/src/Elasticsearch/Endpoints/License/PostStartTrial.php index d5e01a67a..46cf94ebd 100644 --- a/src/Elasticsearch/Endpoints/License/PostStartTrial.php +++ b/src/Elasticsearch/Endpoints/License/PostStartTrial.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post_start_trial * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PostStartTrial extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php b/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php index 20c4af443..1dae221f6 100644 --- a/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.delete_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeletePipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php b/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php index 45f16a612..37b5fb133 100644 --- a/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.get_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php b/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php index 7a466d144..075ebfe85 100644 --- a/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.put_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/MTermVectors.php b/src/Elasticsearch/Endpoints/MTermVectors.php index 65807e456..722c596ac 100644 --- a/src/Elasticsearch/Endpoints/MTermVectors.php +++ b/src/Elasticsearch/Endpoints/MTermVectors.php @@ -23,7 +23,7 @@ * Elasticsearch API name mtermvectors * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class MTermVectors extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Mget.php b/src/Elasticsearch/Endpoints/Mget.php index e2240532b..0cb0ddee7 100644 --- a/src/Elasticsearch/Endpoints/Mget.php +++ b/src/Elasticsearch/Endpoints/Mget.php @@ -23,7 +23,7 @@ * Elasticsearch API name mget * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Mget extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Migration/Deprecations.php b/src/Elasticsearch/Endpoints/Migration/Deprecations.php index 4834244c4..babe909cd 100644 --- a/src/Elasticsearch/Endpoints/Migration/Deprecations.php +++ b/src/Elasticsearch/Endpoints/Migration/Deprecations.php @@ -23,7 +23,7 @@ * Elasticsearch API name migration.deprecations * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Deprecations extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Migration/GetFeatureUpgradeStatus.php b/src/Elasticsearch/Endpoints/Migration/GetFeatureUpgradeStatus.php index 2a9129c11..f6d955b0b 100644 --- a/src/Elasticsearch/Endpoints/Migration/GetFeatureUpgradeStatus.php +++ b/src/Elasticsearch/Endpoints/Migration/GetFeatureUpgradeStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name migration.get_feature_upgrade_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetFeatureUpgradeStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Migration/PostFeatureUpgrade.php b/src/Elasticsearch/Endpoints/Migration/PostFeatureUpgrade.php index 5fe189446..18c52dc04 100644 --- a/src/Elasticsearch/Endpoints/Migration/PostFeatureUpgrade.php +++ b/src/Elasticsearch/Endpoints/Migration/PostFeatureUpgrade.php @@ -23,7 +23,7 @@ * Elasticsearch API name migration.post_feature_upgrade * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PostFeatureUpgrade extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/CloseJob.php b/src/Elasticsearch/Endpoints/Ml/CloseJob.php index e7d0f4a55..efb507adb 100644 --- a/src/Elasticsearch/Endpoints/Ml/CloseJob.php +++ b/src/Elasticsearch/Endpoints/Ml/CloseJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.close_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class CloseJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php b/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php index 7473b45c1..f8088d74d 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_calendar * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteCalendar extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php index e3b08bc06..a3cbd8f02 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_calendar_event * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteCalendarEvent extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php index b0d386bb2..f116353d0 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_calendar_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteCalendarJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php index 15b493b13..6bfa97a56 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php b/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php index 425a8dd5d..ff88129dd 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php b/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php index 99e2d442c..1bf0b9550 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.delete_expired_data * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteExpiredData extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php b/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php index 39301c7e0..d5db19694 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_filter * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteFilter extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php b/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php index 42152504a..c3002af25 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_forecast * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteForecast extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteJob.php b/src/Elasticsearch/Endpoints/Ml/DeleteJob.php index bc4c41b4d..e89ba0b27 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteJob.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php b/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php index ad0437276..598cacec1 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_model_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteModelSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php index a4059acfc..e045ff432 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_trained_model * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteTrainedModel extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php index dc3be91cf..617fd40c8 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_trained_model_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteTrainedModelAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php b/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php index f0c79ce9a..e349d3609 100644 --- a/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php +++ b/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.estimate_model_memory * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class EstimateModelMemory extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php b/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php index 179da1bfa..d8d7b3611 100644 --- a/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php +++ b/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.evaluate_data_frame * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class EvaluateDataFrame extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php index 906afdac6..c24516a6f 100644 --- a/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.explain_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ExplainDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php b/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php index 6541f2e3f..32cc2adb7 100644 --- a/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php +++ b/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php @@ -26,7 +26,7 @@ * Elasticsearch API name ml.find_file_structure * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class FindFileStructure extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/FlushJob.php b/src/Elasticsearch/Endpoints/Ml/FlushJob.php index e286677eb..e557926e6 100644 --- a/src/Elasticsearch/Endpoints/Ml/FlushJob.php +++ b/src/Elasticsearch/Endpoints/Ml/FlushJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.flush_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class FlushJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/Forecast.php b/src/Elasticsearch/Endpoints/Ml/Forecast.php index 018e216a7..85c56dfce 100644 --- a/src/Elasticsearch/Endpoints/Ml/Forecast.php +++ b/src/Elasticsearch/Endpoints/Ml/Forecast.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.forecast * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Forecast extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetBuckets.php b/src/Elasticsearch/Endpoints/Ml/GetBuckets.php index d5794d21c..2765c01f0 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetBuckets.php +++ b/src/Elasticsearch/Endpoints/Ml/GetBuckets.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_buckets * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetBuckets extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php b/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php index bd91317dd..10b4c399c 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php +++ b/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_calendar_events * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetCalendarEvents extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetCalendars.php b/src/Elasticsearch/Endpoints/Ml/GetCalendars.php index c18366ccf..fe686efd2 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetCalendars.php +++ b/src/Elasticsearch/Endpoints/Ml/GetCalendars.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_calendars * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetCalendars extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetCategories.php b/src/Elasticsearch/Endpoints/Ml/GetCategories.php index fea21a7de..7921dcf7c 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetCategories.php +++ b/src/Elasticsearch/Endpoints/Ml/GetCategories.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_categories * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetCategories extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php index 8493b35a3..35b835a55 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php index be2f96207..dcea07371 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_data_frame_analytics_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetDataFrameAnalyticsStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php b/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php index d9262d603..c73338df7 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_datafeed_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetDatafeedStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php b/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php index ef8f99f6e..5155a23ea 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_datafeeds * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetDatafeeds extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetFilters.php b/src/Elasticsearch/Endpoints/Ml/GetFilters.php index 0365d1419..b25b2bc59 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetFilters.php +++ b/src/Elasticsearch/Endpoints/Ml/GetFilters.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_filters * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetFilters extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php b/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php index 98dfd2c25..7720d70f8 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php +++ b/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_influencers * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetInfluencers extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetJobStats.php b/src/Elasticsearch/Endpoints/Ml/GetJobStats.php index 5c245450e..0d4c7deb4 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetJobStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetJobStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_job_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetJobStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetJobs.php b/src/Elasticsearch/Endpoints/Ml/GetJobs.php index 7784c4b6d..53c34455d 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetJobs.php +++ b/src/Elasticsearch/Endpoints/Ml/GetJobs.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_jobs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetJobs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php b/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php index 54952e87d..80b80dc8f 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php +++ b/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_model_snapshots * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetModelSnapshots extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php b/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php index 89af877d6..55e3f59fd 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php +++ b/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_overall_buckets * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetOverallBuckets extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetRecords.php b/src/Elasticsearch/Endpoints/Ml/GetRecords.php index 7b4fc8df5..b161c3455 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetRecords.php +++ b/src/Elasticsearch/Endpoints/Ml/GetRecords.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_records * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetRecords extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php b/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php index 7b1b69832..074c79a84 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php +++ b/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_trained_models * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetTrainedModels extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php b/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php index ff226b580..d1c3171ee 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_trained_models_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetTrainedModelsStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/Info.php b/src/Elasticsearch/Endpoints/Ml/Info.php index db64b5908..f9af2e414 100644 --- a/src/Elasticsearch/Endpoints/Ml/Info.php +++ b/src/Elasticsearch/Endpoints/Ml/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/OpenJob.php b/src/Elasticsearch/Endpoints/Ml/OpenJob.php index 683e4272d..5b4d3bf35 100644 --- a/src/Elasticsearch/Endpoints/Ml/OpenJob.php +++ b/src/Elasticsearch/Endpoints/Ml/OpenJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.open_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class OpenJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php b/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php index ac9d8d956..5fa36eaa8 100644 --- a/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php +++ b/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.post_calendar_events * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PostCalendarEvents extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PostData.php b/src/Elasticsearch/Endpoints/Ml/PostData.php index 91ef5d7ca..55572f6c4 100644 --- a/src/Elasticsearch/Endpoints/Ml/PostData.php +++ b/src/Elasticsearch/Endpoints/Ml/PostData.php @@ -27,7 +27,7 @@ * Elasticsearch API name ml.post_data * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PostData extends AbstractEndpoint { @@ -89,4 +89,5 @@ public function setJobId($job_id): PostData return $this; } + } diff --git a/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php index c0220fd85..22acbd370 100644 --- a/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.preview_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PreviewDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php b/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php index 46ade2ef9..ae9e57e08 100644 --- a/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.preview_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PreviewDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutCalendar.php b/src/Elasticsearch/Endpoints/Ml/PutCalendar.php index 22ad05442..4ac887d36 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutCalendar.php +++ b/src/Elasticsearch/Endpoints/Ml/PutCalendar.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_calendar * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutCalendar extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php b/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php index 0e724d21e..b485306bd 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php +++ b/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_calendar_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutCalendarJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php index b6acec0c5..bf9feaae4 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php b/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php index a23572cb3..9f6c6f1f5 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutFilter.php b/src/Elasticsearch/Endpoints/Ml/PutFilter.php index 687080f89..cfbcf4f62 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutFilter.php +++ b/src/Elasticsearch/Endpoints/Ml/PutFilter.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_filter * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutFilter extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutJob.php b/src/Elasticsearch/Endpoints/Ml/PutJob.php index 648ac40aa..bad40d275 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutJob.php +++ b/src/Elasticsearch/Endpoints/Ml/PutJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php b/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php index 934fcb166..5062d1e91 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php +++ b/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_trained_model * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutTrainedModel extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php b/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php index cc72c5580..3ec013f52 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php +++ b/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_trained_model_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutTrainedModelAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/ResetJob.php b/src/Elasticsearch/Endpoints/Ml/ResetJob.php index 5ecafe4d8..1cfe9e947 100644 --- a/src/Elasticsearch/Endpoints/Ml/ResetJob.php +++ b/src/Elasticsearch/Endpoints/Ml/ResetJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.reset_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ResetJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php b/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php index e0b7babaa..98061af55 100644 --- a/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.revert_model_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class RevertModelSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php b/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php index 5c4bcd292..24a4b4049 100644 --- a/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php +++ b/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.set_upgrade_mode * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class SetUpgradeMode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php index 016e33e08..0a739ad31 100644 --- a/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.start_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class StartDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php b/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php index c52a028d9..236c1ab3c 100644 --- a/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.start_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class StartDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php index ccffacf8a..43597016f 100644 --- a/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.stop_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class StopDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php b/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php index 2437a6d65..4719b534d 100644 --- a/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.stop_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class StopDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php index c9e7ee9f6..ac770a0ae 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class UpdateDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php b/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php index 40f588cd5..600ba1548 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class UpdateDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php b/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php index ffc16fdf1..1fcef771a 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_filter * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class UpdateFilter extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateJob.php b/src/Elasticsearch/Endpoints/Ml/UpdateJob.php index b02e3bf24..21d9eaaee 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateJob.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class UpdateJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php b/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php index 4c658b7fb..92dc70431 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_model_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class UpdateModelSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php b/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php index 057e6d004..7eb568470 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.upgrade_job_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class UpgradeJobSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/Validate.php b/src/Elasticsearch/Endpoints/Ml/Validate.php index e8f7ae1ba..2a72d74da 100644 --- a/src/Elasticsearch/Endpoints/Ml/Validate.php +++ b/src/Elasticsearch/Endpoints/Ml/Validate.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.validate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Validate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php b/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php index c454fca72..a9997e5c7 100644 --- a/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php +++ b/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.validate_detector * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ValidateDetector extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Monitoring/Bulk.php b/src/Elasticsearch/Endpoints/Monitoring/Bulk.php index f7cff0f3e..063f2bc59 100644 --- a/src/Elasticsearch/Endpoints/Monitoring/Bulk.php +++ b/src/Elasticsearch/Endpoints/Monitoring/Bulk.php @@ -26,7 +26,7 @@ * Elasticsearch API name monitoring.bulk * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Bulk extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Msearch.php b/src/Elasticsearch/Endpoints/Msearch.php index c823d9842..08a654588 100644 --- a/src/Elasticsearch/Endpoints/Msearch.php +++ b/src/Elasticsearch/Endpoints/Msearch.php @@ -26,7 +26,7 @@ * Elasticsearch API name msearch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Msearch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/MsearchTemplate.php b/src/Elasticsearch/Endpoints/MsearchTemplate.php index 9ea3eecf7..2af8f9b6a 100644 --- a/src/Elasticsearch/Endpoints/MsearchTemplate.php +++ b/src/Elasticsearch/Endpoints/MsearchTemplate.php @@ -26,7 +26,7 @@ * Elasticsearch API name msearch_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class MsearchTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/ClearRepositoriesMeteringArchive.php b/src/Elasticsearch/Endpoints/Nodes/ClearRepositoriesMeteringArchive.php index c8f9b1b88..10b3515e6 100644 --- a/src/Elasticsearch/Endpoints/Nodes/ClearRepositoriesMeteringArchive.php +++ b/src/Elasticsearch/Endpoints/Nodes/ClearRepositoriesMeteringArchive.php @@ -24,7 +24,7 @@ * Elasticsearch API name nodes.clear_repositories_metering_archive * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ClearRepositoriesMeteringArchive extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/GetRepositoriesMeteringInfo.php b/src/Elasticsearch/Endpoints/Nodes/GetRepositoriesMeteringInfo.php index 6b00f502f..b8377e359 100644 --- a/src/Elasticsearch/Endpoints/Nodes/GetRepositoriesMeteringInfo.php +++ b/src/Elasticsearch/Endpoints/Nodes/GetRepositoriesMeteringInfo.php @@ -24,7 +24,7 @@ * Elasticsearch API name nodes.get_repositories_metering_info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetRepositoriesMeteringInfo extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/HotThreads.php b/src/Elasticsearch/Endpoints/Nodes/HotThreads.php index 49d52597a..c7b190cda 100644 --- a/src/Elasticsearch/Endpoints/Nodes/HotThreads.php +++ b/src/Elasticsearch/Endpoints/Nodes/HotThreads.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.hot_threads * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class HotThreads extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/Info.php b/src/Elasticsearch/Endpoints/Nodes/Info.php index 6b891591e..19910822d 100644 --- a/src/Elasticsearch/Endpoints/Nodes/Info.php +++ b/src/Elasticsearch/Endpoints/Nodes/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php b/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php index 05a52bb13..00c8d0d49 100644 --- a/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php +++ b/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.reload_secure_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ReloadSecureSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/Stats.php b/src/Elasticsearch/Endpoints/Nodes/Stats.php index dcbc85ad0..b9528df08 100644 --- a/src/Elasticsearch/Endpoints/Nodes/Stats.php +++ b/src/Elasticsearch/Endpoints/Nodes/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/Usage.php b/src/Elasticsearch/Endpoints/Nodes/Usage.php index f5edeea93..e4a5f5676 100644 --- a/src/Elasticsearch/Endpoints/Nodes/Usage.php +++ b/src/Elasticsearch/Endpoints/Nodes/Usage.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.usage * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Usage extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/OpenPointInTime.php b/src/Elasticsearch/Endpoints/OpenPointInTime.php index e565d8b05..c7d15ad0e 100644 --- a/src/Elasticsearch/Endpoints/OpenPointInTime.php +++ b/src/Elasticsearch/Endpoints/OpenPointInTime.php @@ -24,7 +24,7 @@ * Elasticsearch API name open_point_in_time * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class OpenPointInTime extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ping.php b/src/Elasticsearch/Endpoints/Ping.php index 71b0d38b6..d2cc179d3 100644 --- a/src/Elasticsearch/Endpoints/Ping.php +++ b/src/Elasticsearch/Endpoints/Ping.php @@ -23,7 +23,7 @@ * Elasticsearch API name ping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Ping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/PutScript.php b/src/Elasticsearch/Endpoints/PutScript.php index 19e0a5218..4f84544f5 100644 --- a/src/Elasticsearch/Endpoints/PutScript.php +++ b/src/Elasticsearch/Endpoints/PutScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name put_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/RankEval.php b/src/Elasticsearch/Endpoints/RankEval.php index d5d13c1e8..01b985443 100644 --- a/src/Elasticsearch/Endpoints/RankEval.php +++ b/src/Elasticsearch/Endpoints/RankEval.php @@ -23,7 +23,7 @@ * Elasticsearch API name rank_eval * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class RankEval extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Reindex.php b/src/Elasticsearch/Endpoints/Reindex.php index e7adcccd8..3dfb6ac59 100644 --- a/src/Elasticsearch/Endpoints/Reindex.php +++ b/src/Elasticsearch/Endpoints/Reindex.php @@ -23,7 +23,7 @@ * Elasticsearch API name reindex * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Reindex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ReindexRethrottle.php b/src/Elasticsearch/Endpoints/ReindexRethrottle.php index 87a079f28..b6daf637c 100644 --- a/src/Elasticsearch/Endpoints/ReindexRethrottle.php +++ b/src/Elasticsearch/Endpoints/ReindexRethrottle.php @@ -24,7 +24,7 @@ * Elasticsearch API name reindex_rethrottle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ReindexRethrottle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/RenderSearchTemplate.php b/src/Elasticsearch/Endpoints/RenderSearchTemplate.php index d83ec44ea..ffbaf2ccc 100644 --- a/src/Elasticsearch/Endpoints/RenderSearchTemplate.php +++ b/src/Elasticsearch/Endpoints/RenderSearchTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name render_search_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class RenderSearchTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php b/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php index c079cfcbd..f9513b698 100644 --- a/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.delete_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/GetJobs.php b/src/Elasticsearch/Endpoints/Rollup/GetJobs.php index 115a0db85..89b3d8d32 100644 --- a/src/Elasticsearch/Endpoints/Rollup/GetJobs.php +++ b/src/Elasticsearch/Endpoints/Rollup/GetJobs.php @@ -23,7 +23,7 @@ * Elasticsearch API name rollup.get_jobs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetJobs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php b/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php index 7feb2777d..2ac15b3a0 100644 --- a/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php +++ b/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php @@ -23,7 +23,7 @@ * Elasticsearch API name rollup.get_rollup_caps * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetRollupCaps extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php b/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php index db8b23c4c..599161e93 100644 --- a/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php +++ b/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.get_rollup_index_caps * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetRollupIndexCaps extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/PutJob.php b/src/Elasticsearch/Endpoints/Rollup/PutJob.php index 52fbbc6f2..bfc39d701 100644 --- a/src/Elasticsearch/Endpoints/Rollup/PutJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/PutJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.put_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/Rollup.php b/src/Elasticsearch/Endpoints/Rollup/Rollup.php index 64603e298..edb18ad46 100644 --- a/src/Elasticsearch/Endpoints/Rollup/Rollup.php +++ b/src/Elasticsearch/Endpoints/Rollup/Rollup.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.rollup * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Rollup extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php b/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php index 9968a6d8c..1d07c4779 100644 --- a/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php +++ b/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.rollup_search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class RollupSearch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/StartJob.php b/src/Elasticsearch/Endpoints/Rollup/StartJob.php index 89f885d88..ac9a6ab03 100644 --- a/src/Elasticsearch/Endpoints/Rollup/StartJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/StartJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.start_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class StartJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/StopJob.php b/src/Elasticsearch/Endpoints/Rollup/StopJob.php index cbce9e7bb..5cb6e8329 100644 --- a/src/Elasticsearch/Endpoints/Rollup/StopJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/StopJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.stop_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class StopJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php b/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php index 33710f4a8..6a89b93ee 100644 --- a/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php +++ b/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php @@ -23,7 +23,7 @@ * Elasticsearch API name scripts_painless_execute * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ScriptsPainlessExecute extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Scroll.php b/src/Elasticsearch/Endpoints/Scroll.php index 66ddf8538..9e153ae4c 100644 --- a/src/Elasticsearch/Endpoints/Scroll.php +++ b/src/Elasticsearch/Endpoints/Scroll.php @@ -23,7 +23,7 @@ * Elasticsearch API name scroll * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Scroll extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Search.php b/src/Elasticsearch/Endpoints/Search.php index 817b44e43..053dd7aca 100644 --- a/src/Elasticsearch/Endpoints/Search.php +++ b/src/Elasticsearch/Endpoints/Search.php @@ -23,7 +23,7 @@ * Elasticsearch API name search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Search extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchMvt.php b/src/Elasticsearch/Endpoints/SearchMvt.php index ea41e31ee..46de3e7dc 100644 --- a/src/Elasticsearch/Endpoints/SearchMvt.php +++ b/src/Elasticsearch/Endpoints/SearchMvt.php @@ -24,7 +24,7 @@ * Elasticsearch API name search_mvt * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class SearchMvt extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchShards.php b/src/Elasticsearch/Endpoints/SearchShards.php index 5bec14df6..3e853bf38 100644 --- a/src/Elasticsearch/Endpoints/SearchShards.php +++ b/src/Elasticsearch/Endpoints/SearchShards.php @@ -23,7 +23,7 @@ * Elasticsearch API name search_shards * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class SearchShards extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchTemplate.php b/src/Elasticsearch/Endpoints/SearchTemplate.php index 502a32d96..16bbecd64 100644 --- a/src/Elasticsearch/Endpoints/SearchTemplate.php +++ b/src/Elasticsearch/Endpoints/SearchTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name search_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class SearchTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php index c9d0c374c..e2fb5772d 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name searchable_snapshots.cache_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class CacheStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php index 2cdad9ed9..cdccaffbc 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php @@ -23,7 +23,7 @@ * Elasticsearch API name searchable_snapshots.clear_cache * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ClearCache extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php index e39ffa8fd..d1f6d67df 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php @@ -24,7 +24,7 @@ * Elasticsearch API name searchable_snapshots.mount * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Mount extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php index e81ffab46..d39db7499 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name searchable_snapshots.repository_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class RepositoryStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php index 0c04493a3..9142a66c2 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name searchable_snapshots.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/Authenticate.php b/src/Elasticsearch/Endpoints/Security/Authenticate.php index c409b244c..3635b3002 100644 --- a/src/Elasticsearch/Endpoints/Security/Authenticate.php +++ b/src/Elasticsearch/Endpoints/Security/Authenticate.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.authenticate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Authenticate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ChangePassword.php b/src/Elasticsearch/Endpoints/Security/ChangePassword.php index a37951df5..b8779ee07 100644 --- a/src/Elasticsearch/Endpoints/Security/ChangePassword.php +++ b/src/Elasticsearch/Endpoints/Security/ChangePassword.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.change_password * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ChangePassword extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php b/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php index a2a129dcc..7464f071a 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php +++ b/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_api_key_cache * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ClearApiKeyCache extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php b/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php index fd5db527d..e39dd1ceb 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ClearCachedPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php b/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php index e70291387..2028db35c 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_realms * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ClearCachedRealms extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php b/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php index 72e109862..332f5df5f 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_roles * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ClearCachedRoles extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php b/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php index 8a7bb8b58..cf6c1ddaa 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_service_tokens * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ClearCachedServiceTokens extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/CreateApiKey.php b/src/Elasticsearch/Endpoints/Security/CreateApiKey.php index 01a962c4a..c9e50799f 100644 --- a/src/Elasticsearch/Endpoints/Security/CreateApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/CreateApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.create_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class CreateApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php b/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php index 1ce972233..b48d55f52 100644 --- a/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php +++ b/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.create_service_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class CreateServiceToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php b/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php index 736b6f85b..9c0a3533a 100644 --- a/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeletePrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteRole.php b/src/Elasticsearch/Endpoints/Security/DeleteRole.php index f340312bd..0f3419aba 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteRole.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteRole.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_role * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteRole extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php b/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php index b718a0c16..be3dedde3 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_role_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteRoleMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php b/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php index eb7f88cab..fef180ed0 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_service_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteServiceToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteUser.php b/src/Elasticsearch/Endpoints/Security/DeleteUser.php index f95ef5c65..41224cd5d 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteUser.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DisableUser.php b/src/Elasticsearch/Endpoints/Security/DisableUser.php index 9bbcf6652..eb99838d6 100644 --- a/src/Elasticsearch/Endpoints/Security/DisableUser.php +++ b/src/Elasticsearch/Endpoints/Security/DisableUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.disable_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DisableUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/EnableUser.php b/src/Elasticsearch/Endpoints/Security/EnableUser.php index bc7d229ac..6e25fbf0a 100644 --- a/src/Elasticsearch/Endpoints/Security/EnableUser.php +++ b/src/Elasticsearch/Endpoints/Security/EnableUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.enable_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class EnableUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetApiKey.php b/src/Elasticsearch/Endpoints/Security/GetApiKey.php index 23e88bc92..500e78cc2 100644 --- a/src/Elasticsearch/Endpoints/Security/GetApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/GetApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php b/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php index a783d0050..674358f96 100644 --- a/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_builtin_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetBuiltinPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetPrivileges.php b/src/Elasticsearch/Endpoints/Security/GetPrivileges.php index 23a6ea20c..1d5012208 100644 --- a/src/Elasticsearch/Endpoints/Security/GetPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/GetPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetRole.php b/src/Elasticsearch/Endpoints/Security/GetRole.php index cf43acd6f..c2f6dafc8 100644 --- a/src/Elasticsearch/Endpoints/Security/GetRole.php +++ b/src/Elasticsearch/Endpoints/Security/GetRole.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_role * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetRole extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php b/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php index 809e2c919..e8490fcc8 100644 --- a/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php +++ b/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_role_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetRoleMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php b/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php index e29cad5fd..f6ca479f2 100644 --- a/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php +++ b/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_service_accounts * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetServiceAccounts extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php b/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php index 78dc4580b..e4dc66d73 100644 --- a/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php +++ b/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.get_service_credentials * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetServiceCredentials extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetToken.php b/src/Elasticsearch/Endpoints/Security/GetToken.php index 417da4101..7ce2d6187 100644 --- a/src/Elasticsearch/Endpoints/Security/GetToken.php +++ b/src/Elasticsearch/Endpoints/Security/GetToken.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetUser.php b/src/Elasticsearch/Endpoints/Security/GetUser.php index efc9c57b2..e5c7e9960 100644 --- a/src/Elasticsearch/Endpoints/Security/GetUser.php +++ b/src/Elasticsearch/Endpoints/Security/GetUser.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php b/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php index cb130a0df..4a177c434 100644 --- a/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_user_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetUserPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GrantApiKey.php b/src/Elasticsearch/Endpoints/Security/GrantApiKey.php index 480f565aa..b6a761d9f 100644 --- a/src/Elasticsearch/Endpoints/Security/GrantApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/GrantApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.grant_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GrantApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/HasPrivileges.php b/src/Elasticsearch/Endpoints/Security/HasPrivileges.php index 615c36b3c..d5a60876f 100644 --- a/src/Elasticsearch/Endpoints/Security/HasPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/HasPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.has_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class HasPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php b/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php index 17cb4c961..ea22d24b9 100644 --- a/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.invalidate_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class InvalidateApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/InvalidateToken.php b/src/Elasticsearch/Endpoints/Security/InvalidateToken.php index 6b6c0e4d2..20ebd0846 100644 --- a/src/Elasticsearch/Endpoints/Security/InvalidateToken.php +++ b/src/Elasticsearch/Endpoints/Security/InvalidateToken.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.invalidate_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class InvalidateToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutPrivileges.php b/src/Elasticsearch/Endpoints/Security/PutPrivileges.php index c46e474b7..e92b94875 100644 --- a/src/Elasticsearch/Endpoints/Security/PutPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/PutPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.put_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutRole.php b/src/Elasticsearch/Endpoints/Security/PutRole.php index 06077d5ee..013fda761 100644 --- a/src/Elasticsearch/Endpoints/Security/PutRole.php +++ b/src/Elasticsearch/Endpoints/Security/PutRole.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.put_role * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutRole extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php b/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php index 7653352a9..8deb0a9f2 100644 --- a/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php +++ b/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.put_role_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutRoleMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutUser.php b/src/Elasticsearch/Endpoints/Security/PutUser.php index 87d7f7587..0562aa73d 100644 --- a/src/Elasticsearch/Endpoints/Security/PutUser.php +++ b/src/Elasticsearch/Endpoints/Security/PutUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.put_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/QueryApiKeys.php b/src/Elasticsearch/Endpoints/Security/QueryApiKeys.php index 3d6942390..b4d123e26 100644 --- a/src/Elasticsearch/Endpoints/Security/QueryApiKeys.php +++ b/src/Elasticsearch/Endpoints/Security/QueryApiKeys.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.query_api_keys * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class QueryApiKeys extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php b/src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php index 0b884e8d2..77179979b 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php +++ b/src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_authenticate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class SamlAuthenticate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php b/src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php index cfaa6cfd0..9c0bcf13f 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php +++ b/src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_complete_logout * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class SamlCompleteLogout extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlInvalidate.php b/src/Elasticsearch/Endpoints/Security/SamlInvalidate.php index 15c7279ea..358c186da 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlInvalidate.php +++ b/src/Elasticsearch/Endpoints/Security/SamlInvalidate.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_invalidate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class SamlInvalidate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlLogout.php b/src/Elasticsearch/Endpoints/Security/SamlLogout.php index aa75f9815..67f2372f7 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlLogout.php +++ b/src/Elasticsearch/Endpoints/Security/SamlLogout.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_logout * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class SamlLogout extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php b/src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php index c8e61fb6d..3de390ebb 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php +++ b/src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_prepare_authentication * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class SamlPrepareAuthentication extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php b/src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php index e7a487e4a..d3841d215 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php +++ b/src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.saml_service_provider_metadata * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class SamlServiceProviderMetadata extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php b/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php index b9d034063..41f36f141 100644 --- a/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php +++ b/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php @@ -24,7 +24,7 @@ * Elasticsearch API name shutdown.delete_node * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteNode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Shutdown/GetNode.php b/src/Elasticsearch/Endpoints/Shutdown/GetNode.php index 875bda520..5ba9b0738 100644 --- a/src/Elasticsearch/Endpoints/Shutdown/GetNode.php +++ b/src/Elasticsearch/Endpoints/Shutdown/GetNode.php @@ -23,7 +23,7 @@ * Elasticsearch API name shutdown.get_node * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetNode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Shutdown/PutNode.php b/src/Elasticsearch/Endpoints/Shutdown/PutNode.php index b1ed00a4b..b1868caaa 100644 --- a/src/Elasticsearch/Endpoints/Shutdown/PutNode.php +++ b/src/Elasticsearch/Endpoints/Shutdown/PutNode.php @@ -24,7 +24,7 @@ * Elasticsearch API name shutdown.put_node * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutNode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php b/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php index 49705cd00..72b8d981d 100644 --- a/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name slm.delete_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php b/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php index 695a42b2f..0187812f3 100644 --- a/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name slm.execute_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ExecuteLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php b/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php index ec19f074b..3c1503bc4 100644 --- a/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php +++ b/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.execute_retention * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ExecuteRetention extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php b/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php index 98cf9de4e..fcc373c8f 100644 --- a/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.get_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/GetStats.php b/src/Elasticsearch/Endpoints/Slm/GetStats.php index f3c275da5..7cd1cf0ae 100644 --- a/src/Elasticsearch/Endpoints/Slm/GetStats.php +++ b/src/Elasticsearch/Endpoints/Slm/GetStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.get_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/GetStatus.php b/src/Elasticsearch/Endpoints/Slm/GetStatus.php index fd8157a89..d0f0e5b2e 100644 --- a/src/Elasticsearch/Endpoints/Slm/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Slm/GetStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php b/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php index 29efd6ddb..4a7964c7f 100644 --- a/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name slm.put_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/Start.php b/src/Elasticsearch/Endpoints/Slm/Start.php index f277b166c..10856fa89 100644 --- a/src/Elasticsearch/Endpoints/Slm/Start.php +++ b/src/Elasticsearch/Endpoints/Slm/Start.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.start * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Start extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/Stop.php b/src/Elasticsearch/Endpoints/Slm/Stop.php index 96919a4ef..a9538f22f 100644 --- a/src/Elasticsearch/Endpoints/Slm/Stop.php +++ b/src/Elasticsearch/Endpoints/Slm/Stop.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.stop * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Stop extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php b/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php index 5f21a2989..31057d335 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.cleanup_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class CleanupRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php b/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php index 8069ad0d8..605f1501e 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php +++ b/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.clone * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class CloneSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Create.php b/src/Elasticsearch/Endpoints/Snapshot/Create.php index 400793671..5dbc4966e 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Create.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php b/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php index e47902068..af10e513f 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.create_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class CreateRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Delete.php b/src/Elasticsearch/Endpoints/Snapshot/Delete.php index cfc4f9f05..64089e255 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Delete.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php b/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php index b5ef92e71..5d2a1522a 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.delete_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Get.php b/src/Elasticsearch/Endpoints/Snapshot/Get.php index a86b99a3f..0e9915182 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Get.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php b/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php index 2cd43df1c..76f016c32 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php @@ -23,7 +23,7 @@ * Elasticsearch API name snapshot.get_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php b/src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php index b49f8b387..f584cf871 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php +++ b/src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.repository_analyze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class RepositoryAnalyze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Restore.php b/src/Elasticsearch/Endpoints/Snapshot/Restore.php index 132c4da29..d53dc73fe 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Restore.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Restore.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.restore * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Restore extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Status.php b/src/Elasticsearch/Endpoints/Snapshot/Status.php index 9fd2acc90..b970a3ccb 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Status.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Status.php @@ -23,7 +23,7 @@ * Elasticsearch API name snapshot.status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Status extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php b/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php index af69834de..7ae73dcdb 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.verify_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class VerifyRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/ClearCursor.php b/src/Elasticsearch/Endpoints/Sql/ClearCursor.php index a49c6e9e1..b1385cc83 100644 --- a/src/Elasticsearch/Endpoints/Sql/ClearCursor.php +++ b/src/Elasticsearch/Endpoints/Sql/ClearCursor.php @@ -23,7 +23,7 @@ * Elasticsearch API name sql.clear_cursor * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ClearCursor extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/DeleteAsync.php b/src/Elasticsearch/Endpoints/Sql/DeleteAsync.php index 8fd2a927f..22e10e142 100644 --- a/src/Elasticsearch/Endpoints/Sql/DeleteAsync.php +++ b/src/Elasticsearch/Endpoints/Sql/DeleteAsync.php @@ -24,7 +24,7 @@ * Elasticsearch API name sql.delete_async * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteAsync extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/GetAsync.php b/src/Elasticsearch/Endpoints/Sql/GetAsync.php index 32645fd88..aaf0fa0ea 100644 --- a/src/Elasticsearch/Endpoints/Sql/GetAsync.php +++ b/src/Elasticsearch/Endpoints/Sql/GetAsync.php @@ -24,7 +24,7 @@ * Elasticsearch API name sql.get_async * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetAsync extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php b/src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php index b9a22740b..95928774c 100644 --- a/src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php +++ b/src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php @@ -24,7 +24,7 @@ * Elasticsearch API name sql.get_async_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetAsyncStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/Query.php b/src/Elasticsearch/Endpoints/Sql/Query.php index f50c6a6eb..1b4da6cbc 100644 --- a/src/Elasticsearch/Endpoints/Sql/Query.php +++ b/src/Elasticsearch/Endpoints/Sql/Query.php @@ -23,7 +23,7 @@ * Elasticsearch API name sql.query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Query extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/Translate.php b/src/Elasticsearch/Endpoints/Sql/Translate.php index 46e746d13..d18f05440 100644 --- a/src/Elasticsearch/Endpoints/Sql/Translate.php +++ b/src/Elasticsearch/Endpoints/Sql/Translate.php @@ -23,7 +23,7 @@ * Elasticsearch API name sql.translate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Translate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ssl/Certificates.php b/src/Elasticsearch/Endpoints/Ssl/Certificates.php index 60311b1ea..6aaf14e0e 100644 --- a/src/Elasticsearch/Endpoints/Ssl/Certificates.php +++ b/src/Elasticsearch/Endpoints/Ssl/Certificates.php @@ -23,7 +23,7 @@ * Elasticsearch API name ssl.certificates * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Certificates extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Tasks/Cancel.php b/src/Elasticsearch/Endpoints/Tasks/Cancel.php index a10cd92c9..65fc04681 100644 --- a/src/Elasticsearch/Endpoints/Tasks/Cancel.php +++ b/src/Elasticsearch/Endpoints/Tasks/Cancel.php @@ -23,7 +23,7 @@ * Elasticsearch API name tasks.cancel * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Cancel extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Tasks/Get.php b/src/Elasticsearch/Endpoints/Tasks/Get.php index 874901b16..ac92b4026 100644 --- a/src/Elasticsearch/Endpoints/Tasks/Get.php +++ b/src/Elasticsearch/Endpoints/Tasks/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name tasks.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Tasks/ListTasks.php b/src/Elasticsearch/Endpoints/Tasks/ListTasks.php index 9b095629b..0dea218a8 100644 --- a/src/Elasticsearch/Endpoints/Tasks/ListTasks.php +++ b/src/Elasticsearch/Endpoints/Tasks/ListTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name tasks.list * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ListTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/TermVectors.php b/src/Elasticsearch/Endpoints/TermVectors.php index e256d073e..8f7ee279e 100644 --- a/src/Elasticsearch/Endpoints/TermVectors.php +++ b/src/Elasticsearch/Endpoints/TermVectors.php @@ -24,7 +24,7 @@ * Elasticsearch API name termvectors * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class TermVectors extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/TermsEnum.php b/src/Elasticsearch/Endpoints/TermsEnum.php index 32a9000de..5cb003bd1 100644 --- a/src/Elasticsearch/Endpoints/TermsEnum.php +++ b/src/Elasticsearch/Endpoints/TermsEnum.php @@ -24,7 +24,7 @@ * Elasticsearch API name terms_enum * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class TermsEnum extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php b/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php index 38de4762f..9324b9160 100644 --- a/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php +++ b/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php @@ -26,7 +26,7 @@ * Elasticsearch API name text_structure.find_structure * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class FindStructure extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php b/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php index 421bb41ec..91cd23da8 100644 --- a/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.delete_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteTransform extends AbstractEndpoint { @@ -43,8 +43,7 @@ public function getURI(): string public function getParamWhitelist(): array { return [ - 'force', - 'timeout' + 'force' ]; } diff --git a/src/Elasticsearch/Endpoints/Transform/GetTransform.php b/src/Elasticsearch/Endpoints/Transform/GetTransform.php index 53b401b63..1ae8de159 100644 --- a/src/Elasticsearch/Endpoints/Transform/GetTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/GetTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name transform.get_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php b/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php index 4104690fa..df131551d 100644 --- a/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php +++ b/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.get_transform_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetTransformStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php b/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php index 330152816..47542a1db 100644 --- a/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name transform.preview_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PreviewTransform extends AbstractEndpoint { @@ -41,9 +41,7 @@ public function getURI(): string public function getParamWhitelist(): array { - return [ - 'timeout' - ]; + return []; } public function getMethod(): string diff --git a/src/Elasticsearch/Endpoints/Transform/PutTransform.php b/src/Elasticsearch/Endpoints/Transform/PutTransform.php index b05bdae47..0b1269a9b 100644 --- a/src/Elasticsearch/Endpoints/Transform/PutTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/PutTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.put_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutTransform extends AbstractEndpoint { @@ -43,8 +43,7 @@ public function getURI(): string public function getParamWhitelist(): array { return [ - 'defer_validation', - 'timeout' + 'defer_validation' ]; } diff --git a/src/Elasticsearch/Endpoints/Transform/StartTransform.php b/src/Elasticsearch/Endpoints/Transform/StartTransform.php index 4a019e40d..8f65514a2 100644 --- a/src/Elasticsearch/Endpoints/Transform/StartTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/StartTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.start_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class StartTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/StopTransform.php b/src/Elasticsearch/Endpoints/Transform/StopTransform.php index 0cf2093d3..7bff6ddee 100644 --- a/src/Elasticsearch/Endpoints/Transform/StopTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/StopTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.stop_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class StopTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php b/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php index d00e24764..e7fc03810 100644 --- a/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.update_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class UpdateTransform extends AbstractEndpoint { @@ -43,8 +43,7 @@ public function getURI(): string public function getParamWhitelist(): array { return [ - 'defer_validation', - 'timeout' + 'defer_validation' ]; } diff --git a/src/Elasticsearch/Endpoints/Transform/UpgradeTransforms.php b/src/Elasticsearch/Endpoints/Transform/UpgradeTransforms.php index 123abad53..2398491c8 100644 --- a/src/Elasticsearch/Endpoints/Transform/UpgradeTransforms.php +++ b/src/Elasticsearch/Endpoints/Transform/UpgradeTransforms.php @@ -23,7 +23,7 @@ * Elasticsearch API name transform.upgrade_transforms * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class UpgradeTransforms extends AbstractEndpoint { @@ -37,8 +37,7 @@ public function getURI(): string public function getParamWhitelist(): array { return [ - 'dry_run', - 'timeout' + 'dry_run' ]; } diff --git a/src/Elasticsearch/Endpoints/Update.php b/src/Elasticsearch/Endpoints/Update.php index a89f060f4..d84af9ee4 100644 --- a/src/Elasticsearch/Endpoints/Update.php +++ b/src/Elasticsearch/Endpoints/Update.php @@ -24,7 +24,7 @@ * Elasticsearch API name update * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Update extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/UpdateByQuery.php b/src/Elasticsearch/Endpoints/UpdateByQuery.php index 12677fd06..509e44c46 100644 --- a/src/Elasticsearch/Endpoints/UpdateByQuery.php +++ b/src/Elasticsearch/Endpoints/UpdateByQuery.php @@ -24,7 +24,7 @@ * Elasticsearch API name update_by_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class UpdateByQuery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php b/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php index 095840db5..983738b28 100644 --- a/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php +++ b/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php @@ -24,7 +24,7 @@ * Elasticsearch API name update_by_query_rethrottle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class UpdateByQueryRethrottle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/AckWatch.php b/src/Elasticsearch/Endpoints/Watcher/AckWatch.php index 7f01d7d93..8e2653306 100644 --- a/src/Elasticsearch/Endpoints/Watcher/AckWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/AckWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.ack_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class AckWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php b/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php index b70450449..1509ab054 100644 --- a/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.activate_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ActivateWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php b/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php index afcb55727..3559af307 100644 --- a/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.deactivate_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeactivateWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php b/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php index adb39caa8..dd28aa405 100644 --- a/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.delete_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DeleteWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php b/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php index 20d2c1249..5d06b9ff5 100644 --- a/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.execute_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ExecuteWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/GetWatch.php b/src/Elasticsearch/Endpoints/Watcher/GetWatch.php index fb53aa35f..d640a20db 100644 --- a/src/Elasticsearch/Endpoints/Watcher/GetWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/GetWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.get_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GetWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/PutWatch.php b/src/Elasticsearch/Endpoints/Watcher/PutWatch.php index 9a9a931fb..24d669b25 100644 --- a/src/Elasticsearch/Endpoints/Watcher/PutWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/PutWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.put_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class PutWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php b/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php index a69fc5c71..94adf87f4 100644 --- a/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php +++ b/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.query_watches * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class QueryWatches extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/Start.php b/src/Elasticsearch/Endpoints/Watcher/Start.php index 10baef7a3..67b8c0254 100644 --- a/src/Elasticsearch/Endpoints/Watcher/Start.php +++ b/src/Elasticsearch/Endpoints/Watcher/Start.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.start * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Start extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/Stats.php b/src/Elasticsearch/Endpoints/Watcher/Stats.php index 3cbd3407b..945b4e274 100644 --- a/src/Elasticsearch/Endpoints/Watcher/Stats.php +++ b/src/Elasticsearch/Endpoints/Watcher/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/Stop.php b/src/Elasticsearch/Endpoints/Watcher/Stop.php index 276d6f00c..561ac96e8 100644 --- a/src/Elasticsearch/Endpoints/Watcher/Stop.php +++ b/src/Elasticsearch/Endpoints/Watcher/Stop.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.stop * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Stop extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Xpack/Info.php b/src/Elasticsearch/Endpoints/Xpack/Info.php index acda6cb93..6b2cb6a12 100644 --- a/src/Elasticsearch/Endpoints/Xpack/Info.php +++ b/src/Elasticsearch/Endpoints/Xpack/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name xpack.info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Xpack/Usage.php b/src/Elasticsearch/Endpoints/Xpack/Usage.php index 0b64e260c..c183d634f 100644 --- a/src/Elasticsearch/Endpoints/Xpack/Usage.php +++ b/src/Elasticsearch/Endpoints/Xpack/Usage.php @@ -23,7 +23,7 @@ * Elasticsearch API name xpack.usage * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class Usage extends AbstractEndpoint { diff --git a/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php b/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php index 7810245de..8c9158322 100644 --- a/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php +++ b/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php @@ -22,7 +22,7 @@ * Class AsyncSearchNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class AsyncSearchNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/AutoscalingNamespace.php b/src/Elasticsearch/Namespaces/AutoscalingNamespace.php index cc467f74e..13782915c 100644 --- a/src/Elasticsearch/Namespaces/AutoscalingNamespace.php +++ b/src/Elasticsearch/Namespaces/AutoscalingNamespace.php @@ -22,7 +22,7 @@ * Class AutoscalingNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class AutoscalingNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/CatNamespace.php b/src/Elasticsearch/Namespaces/CatNamespace.php index d3c438286..73f6569fe 100644 --- a/src/Elasticsearch/Namespaces/CatNamespace.php +++ b/src/Elasticsearch/Namespaces/CatNamespace.php @@ -22,7 +22,7 @@ * Class CatNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class CatNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/CcrNamespace.php b/src/Elasticsearch/Namespaces/CcrNamespace.php index c5f5a538f..e150d5ac9 100644 --- a/src/Elasticsearch/Namespaces/CcrNamespace.php +++ b/src/Elasticsearch/Namespaces/CcrNamespace.php @@ -22,7 +22,7 @@ * Class CcrNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class CcrNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/ClusterNamespace.php b/src/Elasticsearch/Namespaces/ClusterNamespace.php index d1a9ac573..395f94923 100644 --- a/src/Elasticsearch/Namespaces/ClusterNamespace.php +++ b/src/Elasticsearch/Namespaces/ClusterNamespace.php @@ -22,7 +22,7 @@ * Class ClusterNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ClusterNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php b/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php index 42eeb4a25..82dbf57bd 100644 --- a/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php +++ b/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php @@ -22,7 +22,7 @@ * Class DanglingIndicesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DanglingIndicesNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php b/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php index 77fa4a8e6..a44d8fb64 100644 --- a/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php +++ b/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php @@ -22,7 +22,7 @@ * Class DataFrameTransformDeprecatedNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class DataFrameTransformDeprecatedNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/EnrichNamespace.php b/src/Elasticsearch/Namespaces/EnrichNamespace.php index 802e22768..3a53b7f96 100644 --- a/src/Elasticsearch/Namespaces/EnrichNamespace.php +++ b/src/Elasticsearch/Namespaces/EnrichNamespace.php @@ -22,7 +22,7 @@ * Class EnrichNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class EnrichNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/EqlNamespace.php b/src/Elasticsearch/Namespaces/EqlNamespace.php index c6725e12c..875d42da0 100644 --- a/src/Elasticsearch/Namespaces/EqlNamespace.php +++ b/src/Elasticsearch/Namespaces/EqlNamespace.php @@ -22,7 +22,7 @@ * Class EqlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class EqlNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/FeaturesNamespace.php b/src/Elasticsearch/Namespaces/FeaturesNamespace.php index a3e39baa9..cf5dc9a2e 100644 --- a/src/Elasticsearch/Namespaces/FeaturesNamespace.php +++ b/src/Elasticsearch/Namespaces/FeaturesNamespace.php @@ -22,7 +22,7 @@ * Class FeaturesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class FeaturesNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/FleetNamespace.php b/src/Elasticsearch/Namespaces/FleetNamespace.php index 17479f919..cb927a0ac 100644 --- a/src/Elasticsearch/Namespaces/FleetNamespace.php +++ b/src/Elasticsearch/Namespaces/FleetNamespace.php @@ -22,7 +22,7 @@ * Class FleetNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class FleetNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/GraphNamespace.php b/src/Elasticsearch/Namespaces/GraphNamespace.php index 3b69edc40..56b3901cd 100644 --- a/src/Elasticsearch/Namespaces/GraphNamespace.php +++ b/src/Elasticsearch/Namespaces/GraphNamespace.php @@ -22,7 +22,7 @@ * Class GraphNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class GraphNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/IlmNamespace.php b/src/Elasticsearch/Namespaces/IlmNamespace.php index f68d9b471..9e65cb040 100644 --- a/src/Elasticsearch/Namespaces/IlmNamespace.php +++ b/src/Elasticsearch/Namespaces/IlmNamespace.php @@ -22,7 +22,7 @@ * Class IlmNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class IlmNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/IndicesNamespace.php b/src/Elasticsearch/Namespaces/IndicesNamespace.php index 4c8ea248d..6081a2e16 100644 --- a/src/Elasticsearch/Namespaces/IndicesNamespace.php +++ b/src/Elasticsearch/Namespaces/IndicesNamespace.php @@ -22,7 +22,7 @@ * Class IndicesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class IndicesNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/IngestNamespace.php b/src/Elasticsearch/Namespaces/IngestNamespace.php index 33075c075..569f0a5cc 100644 --- a/src/Elasticsearch/Namespaces/IngestNamespace.php +++ b/src/Elasticsearch/Namespaces/IngestNamespace.php @@ -22,7 +22,7 @@ * Class IngestNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class IngestNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/LicenseNamespace.php b/src/Elasticsearch/Namespaces/LicenseNamespace.php index 2b38f569b..1aa394f9b 100644 --- a/src/Elasticsearch/Namespaces/LicenseNamespace.php +++ b/src/Elasticsearch/Namespaces/LicenseNamespace.php @@ -22,7 +22,7 @@ * Class LicenseNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class LicenseNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/LogstashNamespace.php b/src/Elasticsearch/Namespaces/LogstashNamespace.php index 546013f13..58e09efb5 100644 --- a/src/Elasticsearch/Namespaces/LogstashNamespace.php +++ b/src/Elasticsearch/Namespaces/LogstashNamespace.php @@ -22,7 +22,7 @@ * Class LogstashNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class LogstashNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/MigrationNamespace.php b/src/Elasticsearch/Namespaces/MigrationNamespace.php index e4e91c870..437f41346 100644 --- a/src/Elasticsearch/Namespaces/MigrationNamespace.php +++ b/src/Elasticsearch/Namespaces/MigrationNamespace.php @@ -22,7 +22,7 @@ * Class MigrationNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class MigrationNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/MlNamespace.php b/src/Elasticsearch/Namespaces/MlNamespace.php index 372e2a63c..c162fa53e 100644 --- a/src/Elasticsearch/Namespaces/MlNamespace.php +++ b/src/Elasticsearch/Namespaces/MlNamespace.php @@ -22,7 +22,7 @@ * Class MlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class MlNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/MonitoringNamespace.php b/src/Elasticsearch/Namespaces/MonitoringNamespace.php index ccbe441e6..b69f93929 100644 --- a/src/Elasticsearch/Namespaces/MonitoringNamespace.php +++ b/src/Elasticsearch/Namespaces/MonitoringNamespace.php @@ -22,7 +22,7 @@ * Class MonitoringNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class MonitoringNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/NodesNamespace.php b/src/Elasticsearch/Namespaces/NodesNamespace.php index 46fdce612..cada4d1cb 100644 --- a/src/Elasticsearch/Namespaces/NodesNamespace.php +++ b/src/Elasticsearch/Namespaces/NodesNamespace.php @@ -22,7 +22,7 @@ * Class NodesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class NodesNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/RollupNamespace.php b/src/Elasticsearch/Namespaces/RollupNamespace.php index 54efce7e3..925785d40 100644 --- a/src/Elasticsearch/Namespaces/RollupNamespace.php +++ b/src/Elasticsearch/Namespaces/RollupNamespace.php @@ -22,7 +22,7 @@ * Class RollupNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class RollupNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php b/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php index 08d2361ab..10d71503e 100644 --- a/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php +++ b/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php @@ -22,7 +22,7 @@ * Class SearchableSnapshotsNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class SearchableSnapshotsNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SecurityNamespace.php b/src/Elasticsearch/Namespaces/SecurityNamespace.php index 7fe4b7364..b0aeb4ee0 100644 --- a/src/Elasticsearch/Namespaces/SecurityNamespace.php +++ b/src/Elasticsearch/Namespaces/SecurityNamespace.php @@ -22,7 +22,7 @@ * Class SecurityNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class SecurityNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/ShutdownNamespace.php b/src/Elasticsearch/Namespaces/ShutdownNamespace.php index 45b0319e8..98e03604f 100644 --- a/src/Elasticsearch/Namespaces/ShutdownNamespace.php +++ b/src/Elasticsearch/Namespaces/ShutdownNamespace.php @@ -22,7 +22,7 @@ * Class ShutdownNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class ShutdownNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SlmNamespace.php b/src/Elasticsearch/Namespaces/SlmNamespace.php index dc35f072c..f3f274ef4 100644 --- a/src/Elasticsearch/Namespaces/SlmNamespace.php +++ b/src/Elasticsearch/Namespaces/SlmNamespace.php @@ -22,7 +22,7 @@ * Class SlmNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class SlmNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SnapshotNamespace.php b/src/Elasticsearch/Namespaces/SnapshotNamespace.php index ce8c2e8e8..9ad397cbf 100644 --- a/src/Elasticsearch/Namespaces/SnapshotNamespace.php +++ b/src/Elasticsearch/Namespaces/SnapshotNamespace.php @@ -22,7 +22,7 @@ * Class SnapshotNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class SnapshotNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SqlNamespace.php b/src/Elasticsearch/Namespaces/SqlNamespace.php index 862ab0773..92cb6cc65 100644 --- a/src/Elasticsearch/Namespaces/SqlNamespace.php +++ b/src/Elasticsearch/Namespaces/SqlNamespace.php @@ -22,7 +22,7 @@ * Class SqlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class SqlNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SslNamespace.php b/src/Elasticsearch/Namespaces/SslNamespace.php index 92c8e49b2..e098070e6 100644 --- a/src/Elasticsearch/Namespaces/SslNamespace.php +++ b/src/Elasticsearch/Namespaces/SslNamespace.php @@ -22,7 +22,7 @@ * Class SslNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class SslNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/TasksNamespace.php b/src/Elasticsearch/Namespaces/TasksNamespace.php index e0b4eaf29..81c4a367c 100644 --- a/src/Elasticsearch/Namespaces/TasksNamespace.php +++ b/src/Elasticsearch/Namespaces/TasksNamespace.php @@ -22,7 +22,7 @@ * Class TasksNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class TasksNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/TextStructureNamespace.php b/src/Elasticsearch/Namespaces/TextStructureNamespace.php index 698137e45..8710bd619 100644 --- a/src/Elasticsearch/Namespaces/TextStructureNamespace.php +++ b/src/Elasticsearch/Namespaces/TextStructureNamespace.php @@ -22,7 +22,7 @@ * Class TextStructureNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class TextStructureNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/TransformNamespace.php b/src/Elasticsearch/Namespaces/TransformNamespace.php index 465b94de4..48c31b28f 100644 --- a/src/Elasticsearch/Namespaces/TransformNamespace.php +++ b/src/Elasticsearch/Namespaces/TransformNamespace.php @@ -22,7 +22,7 @@ * Class TransformNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class TransformNamespace extends AbstractNamespace { @@ -32,7 +32,6 @@ class TransformNamespace extends AbstractNamespace * * $params['transform_id'] = (string) The id of the transform to delete * $params['force'] = (boolean) When `true`, the transform is deleted regardless of its current state. The default value is `false`, meaning that the transform must be `stopped` before it can be deleted. - * $params['timeout'] = (time) Controls the time to wait for the transform deletion * * @param array $params Associative array of parameters * @return array @@ -100,7 +99,6 @@ public function getTransformStats(array $params = []) * Previews a transform. * * $params['transform_id'] = (string) The id of the transform to preview. - * $params['timeout'] = (time) Controls the time to wait for the preview * $params['body'] = (array) The definition for the transform to preview * * @param array $params Associative array of parameters @@ -125,7 +123,6 @@ public function previewTransform(array $params = []) * * $params['transform_id'] = (string) The id of the new transform. * $params['defer_validation'] = (boolean) If validations should be deferred until transform starts, defaults to false. - * $params['timeout'] = (time) Controls the time to wait for the transform to start * $params['body'] = (array) The transform definition (Required) * * @param array $params Associative array of parameters @@ -196,7 +193,6 @@ public function stopTransform(array $params = []) * * $params['transform_id'] = (string) The id of the transform. * $params['defer_validation'] = (boolean) If validations should be deferred until transform starts, defaults to false. - * $params['timeout'] = (time) Controls the time to wait for the update * $params['body'] = (array) The update transform definition (Required) * * @param array $params Associative array of parameters @@ -220,7 +216,6 @@ public function updateTransform(array $params = []) * Upgrades all transforms. * * $params['dry_run'] = (boolean) Whether to only check for updates but don't execute - * $params['timeout'] = (time) Controls the time to wait for the upgrade * * @param array $params Associative array of parameters * @return array diff --git a/src/Elasticsearch/Namespaces/WatcherNamespace.php b/src/Elasticsearch/Namespaces/WatcherNamespace.php index 3c00d55b7..90111766f 100644 --- a/src/Elasticsearch/Namespaces/WatcherNamespace.php +++ b/src/Elasticsearch/Namespaces/WatcherNamespace.php @@ -22,7 +22,7 @@ * Class WatcherNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class WatcherNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/XpackNamespace.php b/src/Elasticsearch/Namespaces/XpackNamespace.php index 3364c1d0a..7e937c386 100644 --- a/src/Elasticsearch/Namespaces/XpackNamespace.php +++ b/src/Elasticsearch/Namespaces/XpackNamespace.php @@ -22,7 +22,7 @@ * Class XpackNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0-SNAPSHOT (77a65eb1c87e755ec61b0c01175566f0c8ba1494) + * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) */ class XpackNamespace extends AbstractNamespace { From 148c12e17c24bc920ee5f0272648dbe6e20f0f31 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 9 Dec 2021 14:51:32 +0100 Subject: [PATCH 57/81] Added PHP 8.1 and ES 7.16.0 in Github Actions --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b4f96fc7d..6da272082 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,9 +9,9 @@ jobs: strategy: matrix: - php-version: [7.3, 7.4, 8.0] + php-version: [7.3, 7.4, 8.0, 8.1] os: [ubuntu-latest] - es-version: [7.x-SNAPSHOT] + es-version: [7.16.0] steps: - name: Checkout From 359f226c08b5ec4f880e877c6a061378666b8d3c Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 9 Dec 2021 15:28:49 +0100 Subject: [PATCH 58/81] Trying to improve the resources for ML jobs --- .ci/run-elasticsearch.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.ci/run-elasticsearch.sh b/.ci/run-elasticsearch.sh index 3f4e2f1da..22e16b845 100755 --- a/.ci/run-elasticsearch.sh +++ b/.ci/run-elasticsearch.sh @@ -63,6 +63,8 @@ if [[ "$TEST_SUITE" == "platinum" ]]; then --env xpack.security.transport.ssl.key=certs/testnode.key --env xpack.security.transport.ssl.certificate=certs/testnode.crt --env xpack.security.transport.ssl.certificate_authorities=certs/ca.crt + --env xpack.ml.max_machine_memory_percent=50 + --env xpack.ml.node_concurrent_job_allocations=50 END )) volumes+=($(cat <<-END From 9d8de441578e5406587c5329ed7910d7aaa00dbe Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 9 Dec 2021 18:05:39 +0100 Subject: [PATCH 59/81] Reapplied deleteAllTasks in cleanup YAML tests --- tests/Elasticsearch/Tests/Utility.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/Elasticsearch/Tests/Utility.php b/tests/Elasticsearch/Tests/Utility.php index 134bf7985..15e2609c6 100644 --- a/tests/Elasticsearch/Tests/Utility.php +++ b/tests/Elasticsearch/Tests/Utility.php @@ -220,7 +220,10 @@ private static function wipeCluster(Client $client): void if (self::$hasXPack) { self::deleteAllAutoFollowPatterns($client); } - + if (self::$hasXPack) { + self::deleteAllTasks($client); + } + self::deleteAllNodeShutdownMetadata($client); } From 12e953e23cc43a6f77f7f97db67a5ad066f64ddf Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 9 Dec 2021 20:54:40 +0100 Subject: [PATCH 60/81] Updated CHANGELOG to 7.15.0 --- CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c56afc2e..6b3633389 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## Release 7.15.0 + +- Updated endpoints for Elasticsearch 7.15.0 + [995f6d4](https://github.com/elastic/elasticsearch-php/commit/995f6d4bde7de76004e95d7a434b1d59da7a7e75) + +## Release 7.14.0 + +- Usage of psr/log version 2 + [#1154](https://github.com/elastic/elasticsearch-php/pull/1154) +- Update search iterators to send `scroll_id` inside the request body + [#1134](https://github.com/elastic/elasticsearch-php/pull/1134) +- Added the `ingest.geoip.downloader.enabled=false` setting for ES + [5867351](https://github.com/elastic/elasticsearch-php/commit/586735109dc18f22bfdf3b73ab0621b37e857be1) +- Removed phpcs for autogenerated files (endpoints) + [651c57b](https://github.com/elastic/elasticsearch-php/commit/651c57b2e6bf98a0fd48220949966e630e5a804a) + ## Release 7.13.1 - Added port in url for trace and logger messages From 4f0117ed8dbbd09137dcabe215ec6abdcdd0cbcb Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 9 Dec 2021 20:58:41 +0100 Subject: [PATCH 61/81] Added LGPL 2.1 license in composer --- composer.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 327b7ba0d..8122c5c20 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,10 @@ "description": "PHP Client for Elasticsearch", "keywords": ["search","client", "elasticsearch"], "type": "library", - "license": "Apache-2.0", + "license": [ + "Apache-2.0", + "LGPL-2.1-only" + ], "authors": [ { "name": "Zachary Tong" From f87f93f71f564d4bbdc5f008d296d1c37d828e10 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 9 Dec 2021 21:04:01 +0100 Subject: [PATCH 62/81] Added 7.16.0 in CHANGELOG --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b3633389..d9f772b98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## Release 7.16.0 + +- Added support of includePortInHostHeader in ClientBuilder::fromConfig + [#1181](https://github.com/elastic/elasticsearch-php/pull/1181) +- Fixed UTF-16 issue in SmartSerializer with single unpaired surrogate in unicode escape + [#1179](https://github.com/elastic/elasticsearch-php/pull/1179) +- Replace trait with abstract class to avoid Deprecated Functionality issue in PHP 8.1 + [#1175](https://github.com/elastic/elasticsearch-php/pull/1175) + ## Release 7.15.0 - Updated endpoints for Elasticsearch 7.15.0 From a81779969276e0608500ef335de2ef7a86f04067 Mon Sep 17 00:00:00 2001 From: Ruud Kamphuis Date: Wed, 15 Dec 2021 09:52:06 +0100 Subject: [PATCH 63/81] Allow psr/log v3 --- composer.json | 2 +- src/Elasticsearch/Common/EmptyLogger.php | 2 +- .../Tests/ClientBuilder/ArrayLogger.php | 47 ++----------------- 3 files changed, 5 insertions(+), 46 deletions(-) diff --git a/composer.json b/composer.json index 8122c5c20..c49a8113f 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ "php": "^7.3 || ^8.0", "ext-json": ">=1.3.7", "ezimuel/ringphp": "^1.1.2", - "psr/log": "^1|^2" + "psr/log": "^1|^2|^3" }, "require-dev": { "ext-yaml": "*", diff --git a/src/Elasticsearch/Common/EmptyLogger.php b/src/Elasticsearch/Common/EmptyLogger.php index 938a4e51b..2acde2944 100644 --- a/src/Elasticsearch/Common/EmptyLogger.php +++ b/src/Elasticsearch/Common/EmptyLogger.php @@ -32,7 +32,7 @@ class EmptyLogger extends AbstractLogger implements LoggerInterface /** * {@inheritDoc} */ - public function log($level, $message, array $context = []) + public function log($level, $message, array $context = []): void { return; } diff --git a/tests/Elasticsearch/Tests/ClientBuilder/ArrayLogger.php b/tests/Elasticsearch/Tests/ClientBuilder/ArrayLogger.php index bd31a9177..91652f3e0 100644 --- a/tests/Elasticsearch/Tests/ClientBuilder/ArrayLogger.php +++ b/tests/Elasticsearch/Tests/ClientBuilder/ArrayLogger.php @@ -17,57 +17,16 @@ namespace Elasticsearch\Tests\ClientBuilder; -use Psr\Log\LoggerInterface; -use Psr\Log\LogLevel; +use Psr\Log\AbstractLogger; -class ArrayLogger implements LoggerInterface +class ArrayLogger extends AbstractLogger { /** * @var mixed[] */ public $output = []; - public function emergency($message, array $context = array()) - { - $this->log(LogLevel::EMERGENCY, $message, $context); - } - - public function alert($message, array $context = array()) - { - $this->log(LogLevel::ALERT, $message, $context); - } - - public function critical($message, array $context = array()) - { - $this->log(LogLevel::CRITICAL, $message, $context); - } - - public function error($message, array $context = array()) - { - $this->log(LogLevel::ERROR, $message, $context); - } - - public function warning($message, array $context = array()) - { - $this->log(LogLevel::WARNING, $message, $context); - } - - public function notice($message, array $context = array()) - { - $this->log(LogLevel::NOTICE, $message, $context); - } - - public function info($message, array $context = array()) - { - $this->log(LogLevel::INFO, $message, $context); - } - - public function debug($message, array $context = array()) - { - $this->log(LogLevel::DEBUG, $message, $context); - } - - public function log($level, $message, array $context = array()) + public function log($level, $message, array $context = array()): void { $this->output[] = sprintf("%s: %s %s", $level, $message, json_encode($context)); } From aa6c8cb30391ec24dad69e0c785efc7cb5c7b001 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 27 Jan 2022 11:01:11 +0100 Subject: [PATCH 64/81] Updated PHP version matrix in README --- README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index e1e6bd724..d0030923a 100755 --- a/README.md +++ b/README.md @@ -70,20 +70,20 @@ Features Version Matrix -------------- -| Elasticsearch Version | Elasticsearch-PHP Branch | -| --------------------- | ------------------------ | -| >= 7.x | 7.x | -| >= 6.6, < 7.0 | 6.7.x | -| >= 6.0, < 6.6 | 6.5.x | -| >= 5.0, < 6.0 | 5.0 | -| >= 2.0, < 5.0 | 1.0 or 2.0 | -| >= 1.0, < 2.0 | 1.0 or 2.0 | -| <= 0.90.x | 0.4 | - - - If you are using Elasticsearch 7.x you can use Elasticsearch-PHP 7.x branch - - If you are using Elasticsearch 6.6 to 6.7, use Elasticsearch-PHP 6.7.x branch. - - If you are using Elasticsearch 6.0 to 6.5, use Elasticsearch-PHP 6.5.x branch. - - If you are using Elasticsearch 5.x, use Elasticsearch-PHP 5.0 branch. +| Elasticsearch-PHP Branch | PHP Version | +| ----------- | ------------------------ | +| >= 7.16.0, < 8.0.0 | >= 7.3.0, <= 8.1.99 | +| >= 7.12.0, < 8.0.0 | >= 7.3.0, <= 8.0.99 | +| >= 7.11.0, < 8.0.0 | >= 7.1.0, <= 8.0.99 | +| >= 7.0.0, < 7.11.0 | >= 7.1.0, < 8.0.0 | +| 6.x | >= 7.0.0, < 8.0.0 | +| 5.x | >= 5.6.6, < 8.0.0 | +| 2.x | >= 5.4.0, < 7.0.0 | +| 0.4, 1.x | >= 5.3.9, < 7.0.0 | + + - If you are using Elasticsearch 7.x, you can use Elasticsearch-PHP 7.x branch. + - If you are using Elasticsearch 6.x, you can use Elasticsearch-PHP 6.x branch. + - If you are using Elasticsearch 5.x, you can use Elasticsearch-PHP 6.x branch. - If you are using Elasticsearch 1.x or 2.x, prefer using the Elasticsearch-PHP 2.0 branch. The 1.0 branch is compatible however. - If you are using a version older than 1.0, you must install the `0.4` Elasticsearch-PHP branch. Since ES 0.90.x and below is now EOL, the corresponding `0.4` branch will not receive any more development or bugfixes. Please upgrade. - You should never use Elasticsearch-PHP Master branch, as it tracks Elasticsearch master and may contain incomplete features or breaks in backwards compatibility. Only use ES-PHP master if you are developing against ES master for some reason. From 22f6b8231bf4956c83a2f0819cc25acc0141d435 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 27 Jan 2022 11:04:36 +0100 Subject: [PATCH 65/81] Updated CI and github action to 7.17 --- .ci/test-matrix.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/test-matrix.yml b/.ci/test-matrix.yml index c380ba43d..466decd0f 100644 --- a/.ci/test-matrix.yml +++ b/.ci/test-matrix.yml @@ -1,6 +1,6 @@ --- STACK_VERSION: - - 7.16-SNAPSHOT + - 7.17-SNAPSHOT PHP_VERSION: - 8.1-cli diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6da272082..95a8291b6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: matrix: php-version: [7.3, 7.4, 8.0, 8.1] os: [ubuntu-latest] - es-version: [7.16.0] + es-version: [7.17-SNAPSHOT] steps: - name: Checkout From 275de8d9542881c05e944ad786773d441db852bb Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 2 Feb 2022 18:33:13 +0100 Subject: [PATCH 66/81] Updated APIs to 7.17.0 --- src/Elasticsearch/Client.php | 4 +- .../Endpoints/AsyncSearch/Delete.php | 2 +- .../Endpoints/AsyncSearch/Get.php | 2 +- .../Endpoints/AsyncSearch/Status.php | 2 +- .../Endpoints/AsyncSearch/Submit.php | 2 +- .../Autoscaling/DeleteAutoscalingPolicy.php | 2 +- .../Autoscaling/GetAutoscalingCapacity.php | 2 +- .../Autoscaling/GetAutoscalingPolicy.php | 2 +- .../Autoscaling/PutAutoscalingPolicy.php | 2 +- src/Elasticsearch/Endpoints/Bulk.php | 2 +- src/Elasticsearch/Endpoints/Cat/Aliases.php | 2 +- .../Endpoints/Cat/Allocation.php | 2 +- src/Elasticsearch/Endpoints/Cat/Count.php | 2 +- src/Elasticsearch/Endpoints/Cat/Fielddata.php | 2 +- src/Elasticsearch/Endpoints/Cat/Health.php | 2 +- src/Elasticsearch/Endpoints/Cat/Help.php | 2 +- src/Elasticsearch/Endpoints/Cat/Indices.php | 2 +- src/Elasticsearch/Endpoints/Cat/Master.php | 2 +- .../Endpoints/Cat/MlDataFrameAnalytics.php | 2 +- .../Endpoints/Cat/MlDatafeeds.php | 2 +- src/Elasticsearch/Endpoints/Cat/MlJobs.php | 2 +- .../Endpoints/Cat/MlTrainedModels.php | 2 +- src/Elasticsearch/Endpoints/Cat/NodeAttrs.php | 2 +- src/Elasticsearch/Endpoints/Cat/Nodes.php | 2 +- .../Endpoints/Cat/PendingTasks.php | 2 +- src/Elasticsearch/Endpoints/Cat/Plugins.php | 2 +- src/Elasticsearch/Endpoints/Cat/Recovery.php | 2 +- .../Endpoints/Cat/Repositories.php | 2 +- src/Elasticsearch/Endpoints/Cat/Segments.php | 2 +- src/Elasticsearch/Endpoints/Cat/Shards.php | 2 +- src/Elasticsearch/Endpoints/Cat/Snapshots.php | 2 +- src/Elasticsearch/Endpoints/Cat/Tasks.php | 2 +- src/Elasticsearch/Endpoints/Cat/Templates.php | 2 +- .../Endpoints/Cat/ThreadPool.php | 2 +- .../Endpoints/Cat/Transforms.php | 2 +- .../Endpoints/Ccr/DeleteAutoFollowPattern.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Follow.php | 2 +- .../Endpoints/Ccr/FollowInfo.php | 2 +- .../Endpoints/Ccr/FollowStats.php | 2 +- .../Endpoints/Ccr/ForgetFollower.php | 2 +- .../Endpoints/Ccr/GetAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/PauseAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/PauseFollow.php | 2 +- .../Endpoints/Ccr/PutAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/ResumeAutoFollowPattern.php | 2 +- .../Endpoints/Ccr/ResumeFollow.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Stats.php | 2 +- src/Elasticsearch/Endpoints/Ccr/Unfollow.php | 2 +- src/Elasticsearch/Endpoints/ClearScroll.php | 2 +- .../Endpoints/ClosePointInTime.php | 2 +- .../Endpoints/Cluster/AllocationExplain.php | 2 +- .../Cluster/DeleteComponentTemplate.php | 2 +- .../Cluster/DeleteVotingConfigExclusions.php | 2 +- .../Cluster/ExistsComponentTemplate.php | 2 +- .../Cluster/GetComponentTemplate.php | 2 +- .../Endpoints/Cluster/GetSettings.php | 2 +- .../Endpoints/Cluster/Health.php | 2 +- .../Endpoints/Cluster/PendingTasks.php | 2 +- .../Cluster/PostVotingConfigExclusions.php | 2 +- .../Cluster/PutComponentTemplate.php | 2 +- .../Endpoints/Cluster/PutSettings.php | 2 +- .../Endpoints/Cluster/RemoteInfo.php | 2 +- .../Endpoints/Cluster/Reroute.php | 2 +- src/Elasticsearch/Endpoints/Cluster/State.php | 2 +- src/Elasticsearch/Endpoints/Cluster/Stats.php | 2 +- src/Elasticsearch/Endpoints/Count.php | 2 +- src/Elasticsearch/Endpoints/Create.php | 2 +- .../DanglingIndices/DeleteDanglingIndex.php | 2 +- .../DanglingIndices/ImportDanglingIndex.php | 2 +- .../DanglingIndices/ListDanglingIndices.php | 2 +- .../DeleteTransform.php | 2 +- .../GetTransform.php | 2 +- .../GetTransformStats.php | 2 +- .../PreviewTransform.php | 2 +- .../PutTransform.php | 2 +- .../StartTransform.php | 2 +- .../StopTransform.php | 2 +- .../UpdateTransform.php | 2 +- src/Elasticsearch/Endpoints/Delete.php | 2 +- src/Elasticsearch/Endpoints/DeleteByQuery.php | 2 +- .../Endpoints/DeleteByQueryRethrottle.php | 2 +- src/Elasticsearch/Endpoints/DeleteScript.php | 2 +- .../Endpoints/Enrich/DeletePolicy.php | 2 +- .../Endpoints/Enrich/ExecutePolicy.php | 2 +- .../Endpoints/Enrich/GetPolicy.php | 2 +- .../Endpoints/Enrich/PutPolicy.php | 2 +- src/Elasticsearch/Endpoints/Enrich/Stats.php | 2 +- src/Elasticsearch/Endpoints/Eql/Delete.php | 2 +- src/Elasticsearch/Endpoints/Eql/Get.php | 2 +- src/Elasticsearch/Endpoints/Eql/GetStatus.php | 2 +- src/Elasticsearch/Endpoints/Eql/Search.php | 2 +- src/Elasticsearch/Endpoints/Exists.php | 2 +- src/Elasticsearch/Endpoints/ExistsSource.php | 2 +- src/Elasticsearch/Endpoints/Explain.php | 2 +- .../Endpoints/Features/GetFeatures.php | 2 +- .../Endpoints/Features/ResetFeatures.php | 2 +- src/Elasticsearch/Endpoints/FieldCaps.php | 2 +- .../Endpoints/Fleet/GlobalCheckpoints.php | 2 +- src/Elasticsearch/Endpoints/Fleet/Msearch.php | 2 +- src/Elasticsearch/Endpoints/Fleet/Search.php | 2 +- src/Elasticsearch/Endpoints/Get.php | 2 +- src/Elasticsearch/Endpoints/GetScript.php | 2 +- .../Endpoints/GetScriptContext.php | 2 +- .../Endpoints/GetScriptLanguages.php | 2 +- src/Elasticsearch/Endpoints/GetSource.php | 2 +- src/Elasticsearch/Endpoints/Graph/Explore.php | 2 +- .../Endpoints/Ilm/DeleteLifecycle.php | 2 +- .../Endpoints/Ilm/ExplainLifecycle.php | 2 +- .../Endpoints/Ilm/GetLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Ilm/GetStatus.php | 2 +- .../Endpoints/Ilm/MigrateToDataTiers.php | 2 +- .../Endpoints/Ilm/MoveToStep.php | 2 +- .../Endpoints/Ilm/PutLifecycle.php | 2 +- .../Endpoints/Ilm/RemovePolicy.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Retry.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Start.php | 2 +- src/Elasticsearch/Endpoints/Ilm/Stop.php | 2 +- src/Elasticsearch/Endpoints/Index.php | 2 +- .../Endpoints/Indices/AddBlock.php | 2 +- .../Endpoints/Indices/Analyze.php | 2 +- .../Endpoints/Indices/ClearCache.php | 2 +- .../Endpoints/Indices/CloneIndices.php | 2 +- src/Elasticsearch/Endpoints/Indices/Close.php | 2 +- .../Endpoints/Indices/Create.php | 2 +- .../Endpoints/Indices/CreateDataStream.php | 2 +- .../Endpoints/Indices/DataStreamsStats.php | 2 +- .../Endpoints/Indices/Delete.php | 2 +- .../Endpoints/Indices/DeleteAlias.php | 2 +- .../Endpoints/Indices/DeleteDataStream.php | 2 +- .../Endpoints/Indices/DeleteIndexTemplate.php | 2 +- .../Endpoints/Indices/DeleteTemplate.php | 2 +- .../Endpoints/Indices/DiskUsage.php | 2 +- .../Endpoints/Indices/Exists.php | 2 +- .../Endpoints/Indices/ExistsAlias.php | 2 +- .../Endpoints/Indices/ExistsIndexTemplate.php | 2 +- .../Endpoints/Indices/ExistsTemplate.php | 2 +- .../Endpoints/Indices/ExistsType.php | 2 +- .../Endpoints/Indices/FieldUsageStats.php | 2 +- src/Elasticsearch/Endpoints/Indices/Flush.php | 2 +- .../Endpoints/Indices/FlushSynced.php | 2 +- .../Endpoints/Indices/ForceMerge.php | 2 +- .../Endpoints/Indices/Freeze.php | 2 +- src/Elasticsearch/Endpoints/Indices/Get.php | 2 +- .../Endpoints/Indices/GetAlias.php | 2 +- .../Endpoints/Indices/GetDataStream.php | 2 +- .../Endpoints/Indices/GetFieldMapping.php | 2 +- .../Endpoints/Indices/GetIndexTemplate.php | 2 +- .../Endpoints/Indices/GetMapping.php | 2 +- .../Endpoints/Indices/GetSettings.php | 2 +- .../Endpoints/Indices/GetTemplate.php | 2 +- .../Endpoints/Indices/GetUpgrade.php | 2 +- .../Endpoints/Indices/MigrateToDataStream.php | 2 +- .../Endpoints/Indices/ModifyDataStream.php | 2 +- src/Elasticsearch/Endpoints/Indices/Open.php | 2 +- .../Endpoints/Indices/PromoteDataStream.php | 2 +- .../Endpoints/Indices/PutAlias.php | 2 +- .../Endpoints/Indices/PutIndexTemplate.php | 2 +- .../Endpoints/Indices/PutMapping.php | 2 +- .../Endpoints/Indices/PutSettings.php | 2 +- .../Endpoints/Indices/PutTemplate.php | 2 +- .../Endpoints/Indices/Recovery.php | 2 +- .../Endpoints/Indices/Refresh.php | 2 +- .../Indices/ReloadSearchAnalyzers.php | 2 +- .../Endpoints/Indices/ResolveIndex.php | 2 +- .../Endpoints/Indices/Rollover.php | 2 +- .../Endpoints/Indices/Segments.php | 2 +- .../Endpoints/Indices/ShardStores.php | 2 +- .../Endpoints/Indices/Shrink.php | 2 +- .../Indices/SimulateIndexTemplate.php | 2 +- .../Endpoints/Indices/SimulateTemplate.php | 2 +- src/Elasticsearch/Endpoints/Indices/Split.php | 2 +- src/Elasticsearch/Endpoints/Indices/Stats.php | 2 +- .../Endpoints/Indices/Unfreeze.php | 2 +- .../Endpoints/Indices/UpdateAliases.php | 2 +- .../Endpoints/Indices/Upgrade.php | 2 +- .../Endpoints/Indices/ValidateQuery.php | 2 +- src/Elasticsearch/Endpoints/Info.php | 2 +- .../Endpoints/Ingest/DeletePipeline.php | 2 +- .../Endpoints/Ingest/GeoIpStats.php | 2 +- .../Endpoints/Ingest/GetPipeline.php | 2 +- .../Endpoints/Ingest/ProcessorGrok.php | 2 +- .../Endpoints/Ingest/PutPipeline.php | 2 +- .../Endpoints/Ingest/Simulate.php | 2 +- .../Endpoints/License/Delete.php | 2 +- src/Elasticsearch/Endpoints/License/Get.php | 2 +- .../Endpoints/License/GetBasicStatus.php | 2 +- .../Endpoints/License/GetTrialStatus.php | 2 +- src/Elasticsearch/Endpoints/License/Post.php | 2 +- .../Endpoints/License/PostStartBasic.php | 2 +- .../Endpoints/License/PostStartTrial.php | 2 +- .../Endpoints/Logstash/DeletePipeline.php | 2 +- .../Endpoints/Logstash/GetPipeline.php | 2 +- .../Endpoints/Logstash/PutPipeline.php | 2 +- src/Elasticsearch/Endpoints/MTermVectors.php | 2 +- src/Elasticsearch/Endpoints/Mget.php | 2 +- .../Endpoints/Migration/Deprecations.php | 2 +- .../Migration/GetFeatureUpgradeStatus.php | 2 +- .../Migration/PostFeatureUpgrade.php | 2 +- src/Elasticsearch/Endpoints/Ml/CloseJob.php | 2 +- .../Endpoints/Ml/DeleteCalendar.php | 2 +- .../Endpoints/Ml/DeleteCalendarEvent.php | 2 +- .../Endpoints/Ml/DeleteCalendarJob.php | 2 +- .../Endpoints/Ml/DeleteDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/DeleteDatafeed.php | 2 +- .../Endpoints/Ml/DeleteExpiredData.php | 2 +- .../Endpoints/Ml/DeleteFilter.php | 2 +- .../Endpoints/Ml/DeleteForecast.php | 2 +- src/Elasticsearch/Endpoints/Ml/DeleteJob.php | 2 +- .../Endpoints/Ml/DeleteModelSnapshot.php | 2 +- .../Endpoints/Ml/DeleteTrainedModel.php | 2 +- .../Endpoints/Ml/DeleteTrainedModelAlias.php | 2 +- .../Endpoints/Ml/EstimateModelMemory.php | 2 +- .../Endpoints/Ml/EvaluateDataFrame.php | 2 +- .../Ml/ExplainDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/FindFileStructure.php | 2 +- src/Elasticsearch/Endpoints/Ml/FlushJob.php | 2 +- src/Elasticsearch/Endpoints/Ml/Forecast.php | 12 ++- src/Elasticsearch/Endpoints/Ml/GetBuckets.php | 2 +- .../Endpoints/Ml/GetCalendarEvents.php | 2 +- .../Endpoints/Ml/GetCalendars.php | 2 +- .../Endpoints/Ml/GetCategories.php | 2 +- .../Endpoints/Ml/GetDataFrameAnalytics.php | 2 +- .../Ml/GetDataFrameAnalyticsStats.php | 2 +- .../Endpoints/Ml/GetDatafeedStats.php | 2 +- .../Endpoints/Ml/GetDatafeeds.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetFilters.php | 2 +- .../Endpoints/Ml/GetInfluencers.php | 2 +- .../Endpoints/Ml/GetJobStats.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetJobs.php | 2 +- .../Ml/GetModelSnapshotUpgradeStats.php | 76 +++++++++++++++++++ .../Endpoints/Ml/GetModelSnapshots.php | 2 +- .../Endpoints/Ml/GetOverallBuckets.php | 2 +- src/Elasticsearch/Endpoints/Ml/GetRecords.php | 2 +- .../Endpoints/Ml/GetTrainedModels.php | 2 +- .../Endpoints/Ml/GetTrainedModelsStats.php | 2 +- src/Elasticsearch/Endpoints/Ml/Info.php | 2 +- src/Elasticsearch/Endpoints/Ml/OpenJob.php | 12 ++- .../Endpoints/Ml/PostCalendarEvents.php | 2 +- src/Elasticsearch/Endpoints/Ml/PostData.php | 2 +- .../Ml/PreviewDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/PreviewDatafeed.php | 2 +- .../Endpoints/Ml/PutCalendar.php | 2 +- .../Endpoints/Ml/PutCalendarJob.php | 2 +- .../Endpoints/Ml/PutDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/PutDatafeed.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutFilter.php | 2 +- src/Elasticsearch/Endpoints/Ml/PutJob.php | 2 +- .../Endpoints/Ml/PutTrainedModel.php | 2 +- .../Endpoints/Ml/PutTrainedModelAlias.php | 2 +- src/Elasticsearch/Endpoints/Ml/ResetJob.php | 2 +- .../Endpoints/Ml/RevertModelSnapshot.php | 2 +- .../Endpoints/Ml/SetUpgradeMode.php | 2 +- .../Endpoints/Ml/StartDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/StartDatafeed.php | 2 +- .../Endpoints/Ml/StopDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/StopDatafeed.php | 2 +- .../Endpoints/Ml/UpdateDataFrameAnalytics.php | 2 +- .../Endpoints/Ml/UpdateDatafeed.php | 2 +- .../Endpoints/Ml/UpdateFilter.php | 2 +- src/Elasticsearch/Endpoints/Ml/UpdateJob.php | 2 +- .../Endpoints/Ml/UpdateModelSnapshot.php | 2 +- .../Endpoints/Ml/UpgradeJobSnapshot.php | 2 +- src/Elasticsearch/Endpoints/Ml/Validate.php | 2 +- .../Endpoints/Ml/ValidateDetector.php | 2 +- .../Endpoints/Monitoring/Bulk.php | 2 +- src/Elasticsearch/Endpoints/Msearch.php | 2 +- .../Endpoints/MsearchTemplate.php | 2 +- .../ClearRepositoriesMeteringArchive.php | 2 +- .../Nodes/GetRepositoriesMeteringInfo.php | 2 +- .../Endpoints/Nodes/HotThreads.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Info.php | 2 +- .../Endpoints/Nodes/ReloadSecureSettings.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Stats.php | 2 +- src/Elasticsearch/Endpoints/Nodes/Usage.php | 2 +- .../Endpoints/OpenPointInTime.php | 2 +- src/Elasticsearch/Endpoints/Ping.php | 2 +- src/Elasticsearch/Endpoints/PutScript.php | 2 +- src/Elasticsearch/Endpoints/RankEval.php | 2 +- src/Elasticsearch/Endpoints/Reindex.php | 2 +- .../Endpoints/ReindexRethrottle.php | 2 +- .../Endpoints/RenderSearchTemplate.php | 2 +- .../Endpoints/Rollup/DeleteJob.php | 2 +- .../Endpoints/Rollup/GetJobs.php | 2 +- .../Endpoints/Rollup/GetRollupCaps.php | 2 +- .../Endpoints/Rollup/GetRollupIndexCaps.php | 2 +- src/Elasticsearch/Endpoints/Rollup/PutJob.php | 2 +- src/Elasticsearch/Endpoints/Rollup/Rollup.php | 2 +- .../Endpoints/Rollup/RollupSearch.php | 2 +- .../Endpoints/Rollup/StartJob.php | 2 +- .../Endpoints/Rollup/StopJob.php | 2 +- .../Endpoints/ScriptsPainlessExecute.php | 2 +- src/Elasticsearch/Endpoints/Scroll.php | 2 +- src/Elasticsearch/Endpoints/Search.php | 2 +- src/Elasticsearch/Endpoints/SearchMvt.php | 2 +- src/Elasticsearch/Endpoints/SearchShards.php | 2 +- .../Endpoints/SearchTemplate.php | 2 +- .../SearchableSnapshots/CacheStats.php | 2 +- .../SearchableSnapshots/ClearCache.php | 2 +- .../Endpoints/SearchableSnapshots/Mount.php | 2 +- .../SearchableSnapshots/RepositoryStats.php | 2 +- .../Endpoints/SearchableSnapshots/Stats.php | 2 +- .../Endpoints/Security/Authenticate.php | 2 +- .../Endpoints/Security/ChangePassword.php | 2 +- .../Endpoints/Security/ClearApiKeyCache.php | 2 +- .../Security/ClearCachedPrivileges.php | 2 +- .../Endpoints/Security/ClearCachedRealms.php | 2 +- .../Endpoints/Security/ClearCachedRoles.php | 2 +- .../Security/ClearCachedServiceTokens.php | 2 +- .../Endpoints/Security/CreateApiKey.php | 2 +- .../Endpoints/Security/CreateServiceToken.php | 2 +- .../Endpoints/Security/DeletePrivileges.php | 2 +- .../Endpoints/Security/DeleteRole.php | 2 +- .../Endpoints/Security/DeleteRoleMapping.php | 2 +- .../Endpoints/Security/DeleteServiceToken.php | 2 +- .../Endpoints/Security/DeleteUser.php | 2 +- .../Endpoints/Security/DisableUser.php | 2 +- .../Endpoints/Security/EnableUser.php | 2 +- .../Endpoints/Security/GetApiKey.php | 2 +- .../Security/GetBuiltinPrivileges.php | 2 +- .../Endpoints/Security/GetPrivileges.php | 2 +- .../Endpoints/Security/GetRole.php | 2 +- .../Endpoints/Security/GetRoleMapping.php | 2 +- .../Endpoints/Security/GetServiceAccounts.php | 2 +- .../Security/GetServiceCredentials.php | 2 +- .../Endpoints/Security/GetToken.php | 2 +- .../Endpoints/Security/GetUser.php | 2 +- .../Endpoints/Security/GetUserPrivileges.php | 2 +- .../Endpoints/Security/GrantApiKey.php | 2 +- .../Endpoints/Security/HasPrivileges.php | 2 +- .../Endpoints/Security/InvalidateApiKey.php | 2 +- .../Endpoints/Security/InvalidateToken.php | 2 +- .../Endpoints/Security/PutPrivileges.php | 2 +- .../Endpoints/Security/PutRole.php | 2 +- .../Endpoints/Security/PutRoleMapping.php | 2 +- .../Endpoints/Security/PutUser.php | 2 +- .../Endpoints/Security/QueryApiKeys.php | 2 +- .../Endpoints/Security/SamlAuthenticate.php | 2 +- .../Endpoints/Security/SamlCompleteLogout.php | 2 +- .../Endpoints/Security/SamlInvalidate.php | 2 +- .../Endpoints/Security/SamlLogout.php | 2 +- .../Security/SamlPrepareAuthentication.php | 2 +- .../Security/SamlServiceProviderMetadata.php | 2 +- .../Endpoints/Shutdown/DeleteNode.php | 2 +- .../Endpoints/Shutdown/GetNode.php | 2 +- .../Endpoints/Shutdown/PutNode.php | 2 +- .../Endpoints/Slm/DeleteLifecycle.php | 2 +- .../Endpoints/Slm/ExecuteLifecycle.php | 2 +- .../Endpoints/Slm/ExecuteRetention.php | 2 +- .../Endpoints/Slm/GetLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Slm/GetStats.php | 2 +- src/Elasticsearch/Endpoints/Slm/GetStatus.php | 2 +- .../Endpoints/Slm/PutLifecycle.php | 2 +- src/Elasticsearch/Endpoints/Slm/Start.php | 2 +- src/Elasticsearch/Endpoints/Slm/Stop.php | 2 +- .../Endpoints/Snapshot/CleanupRepository.php | 2 +- .../Endpoints/Snapshot/CloneSnapshot.php | 2 +- .../Endpoints/Snapshot/Create.php | 2 +- .../Endpoints/Snapshot/CreateRepository.php | 2 +- .../Endpoints/Snapshot/Delete.php | 2 +- .../Endpoints/Snapshot/DeleteRepository.php | 2 +- src/Elasticsearch/Endpoints/Snapshot/Get.php | 2 +- .../Endpoints/Snapshot/GetRepository.php | 2 +- .../Endpoints/Snapshot/RepositoryAnalyze.php | 2 +- .../Endpoints/Snapshot/Restore.php | 2 +- .../Endpoints/Snapshot/Status.php | 2 +- .../Endpoints/Snapshot/VerifyRepository.php | 2 +- .../Endpoints/Sql/ClearCursor.php | 2 +- .../Endpoints/Sql/DeleteAsync.php | 2 +- src/Elasticsearch/Endpoints/Sql/GetAsync.php | 2 +- .../Endpoints/Sql/GetAsyncStatus.php | 2 +- src/Elasticsearch/Endpoints/Sql/Query.php | 2 +- src/Elasticsearch/Endpoints/Sql/Translate.php | 2 +- .../Endpoints/Ssl/Certificates.php | 2 +- src/Elasticsearch/Endpoints/Tasks/Cancel.php | 2 +- src/Elasticsearch/Endpoints/Tasks/Get.php | 2 +- .../Endpoints/Tasks/ListTasks.php | 2 +- src/Elasticsearch/Endpoints/TermVectors.php | 2 +- src/Elasticsearch/Endpoints/TermsEnum.php | 2 +- .../Endpoints/TextStructure/FindStructure.php | 2 +- .../Endpoints/Transform/DeleteTransform.php | 5 +- .../Endpoints/Transform/GetTransform.php | 2 +- .../Endpoints/Transform/GetTransformStats.php | 2 +- .../Endpoints/Transform/PreviewTransform.php | 6 +- .../Endpoints/Transform/PutTransform.php | 5 +- .../Endpoints/Transform/StartTransform.php | 2 +- .../Endpoints/Transform/StopTransform.php | 2 +- .../Endpoints/Transform/UpdateTransform.php | 5 +- .../Endpoints/Transform/UpgradeTransforms.php | 5 +- src/Elasticsearch/Endpoints/Update.php | 2 +- src/Elasticsearch/Endpoints/UpdateByQuery.php | 2 +- .../Endpoints/UpdateByQueryRethrottle.php | 2 +- .../Endpoints/Watcher/AckWatch.php | 2 +- .../Endpoints/Watcher/ActivateWatch.php | 2 +- .../Endpoints/Watcher/DeactivateWatch.php | 2 +- .../Endpoints/Watcher/DeleteWatch.php | 2 +- .../Endpoints/Watcher/ExecuteWatch.php | 2 +- .../Endpoints/Watcher/GetWatch.php | 2 +- .../Endpoints/Watcher/PutWatch.php | 2 +- .../Endpoints/Watcher/QueryWatches.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Start.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Stats.php | 2 +- src/Elasticsearch/Endpoints/Watcher/Stop.php | 2 +- src/Elasticsearch/Endpoints/Xpack/Info.php | 2 +- src/Elasticsearch/Endpoints/Xpack/Usage.php | 2 +- .../Namespaces/AsyncSearchNamespace.php | 2 +- .../Namespaces/AutoscalingNamespace.php | 2 +- src/Elasticsearch/Namespaces/CatNamespace.php | 2 +- src/Elasticsearch/Namespaces/CcrNamespace.php | 2 +- .../Namespaces/ClusterNamespace.php | 2 +- .../Namespaces/DanglingIndicesNamespace.php | 2 +- .../DataFrameTransformDeprecatedNamespace.php | 2 +- .../Namespaces/EnrichNamespace.php | 2 +- src/Elasticsearch/Namespaces/EqlNamespace.php | 2 +- .../Namespaces/FeaturesNamespace.php | 2 +- .../Namespaces/FleetNamespace.php | 2 +- .../Namespaces/GraphNamespace.php | 2 +- src/Elasticsearch/Namespaces/IlmNamespace.php | 2 +- .../Namespaces/IndicesNamespace.php | 2 +- .../Namespaces/IngestNamespace.php | 2 +- .../Namespaces/LicenseNamespace.php | 2 +- .../Namespaces/LogstashNamespace.php | 2 +- .../Namespaces/MigrationNamespace.php | 2 +- src/Elasticsearch/Namespaces/MlNamespace.php | 32 +++++++- .../Namespaces/MonitoringNamespace.php | 2 +- .../Namespaces/NodesNamespace.php | 2 +- .../Namespaces/RollupNamespace.php | 2 +- .../SearchableSnapshotsNamespace.php | 2 +- .../Namespaces/SecurityNamespace.php | 2 +- .../Namespaces/ShutdownNamespace.php | 2 +- src/Elasticsearch/Namespaces/SlmNamespace.php | 2 +- .../Namespaces/SnapshotNamespace.php | 2 +- src/Elasticsearch/Namespaces/SqlNamespace.php | 2 +- src/Elasticsearch/Namespaces/SslNamespace.php | 2 +- .../Namespaces/TasksNamespace.php | 2 +- .../Namespaces/TextStructureNamespace.php | 2 +- .../Namespaces/TransformNamespace.php | 7 +- .../Namespaces/WatcherNamespace.php | 2 +- .../Namespaces/XpackNamespace.php | 2 +- 438 files changed, 580 insertions(+), 443 deletions(-) create mode 100644 src/Elasticsearch/Endpoints/Ml/GetModelSnapshotUpgradeStats.php diff --git a/src/Elasticsearch/Client.php b/src/Elasticsearch/Client.php index 3ff330179..904da7ac1 100644 --- a/src/Elasticsearch/Client.php +++ b/src/Elasticsearch/Client.php @@ -65,11 +65,11 @@ * Class Client * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Client { - const VERSION = '7.16.0'; + const VERSION = '7.17.0'; /** * @var Transport diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php b/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php index ee2a3f8a2..d6cba5d3f 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Get.php b/src/Elasticsearch/Endpoints/AsyncSearch/Get.php index e6e73251a..330f4d96a 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Get.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Status.php b/src/Elasticsearch/Endpoints/AsyncSearch/Status.php index c4c79b6ef..2b77ab467 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Status.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Status.php @@ -24,7 +24,7 @@ * Elasticsearch API name async_search.status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Status extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php b/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php index 4e1925694..b8964b84b 100644 --- a/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php +++ b/src/Elasticsearch/Endpoints/AsyncSearch/Submit.php @@ -23,7 +23,7 @@ * Elasticsearch API name async_search.submit * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Submit extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php index bfaee44eb..34a309289 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.delete_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php index 02890bba5..a5cded290 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php @@ -23,7 +23,7 @@ * Elasticsearch API name autoscaling.get_autoscaling_capacity * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetAutoscalingCapacity extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php index c326b9002..9b789b1af 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.get_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php b/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php index 78d187eb3..df7517ce0 100644 --- a/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php +++ b/src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name autoscaling.put_autoscaling_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutAutoscalingPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Bulk.php b/src/Elasticsearch/Endpoints/Bulk.php index 568a39253..08c213f57 100644 --- a/src/Elasticsearch/Endpoints/Bulk.php +++ b/src/Elasticsearch/Endpoints/Bulk.php @@ -26,7 +26,7 @@ * Elasticsearch API name bulk * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Bulk extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Aliases.php b/src/Elasticsearch/Endpoints/Cat/Aliases.php index 64c5e7d19..7f302f3d8 100644 --- a/src/Elasticsearch/Endpoints/Cat/Aliases.php +++ b/src/Elasticsearch/Endpoints/Cat/Aliases.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.aliases * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Aliases extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Allocation.php b/src/Elasticsearch/Endpoints/Cat/Allocation.php index a8451473a..f8fa02a3c 100644 --- a/src/Elasticsearch/Endpoints/Cat/Allocation.php +++ b/src/Elasticsearch/Endpoints/Cat/Allocation.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.allocation * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Allocation extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Count.php b/src/Elasticsearch/Endpoints/Cat/Count.php index d98bd8ad7..d4ed8f2b8 100644 --- a/src/Elasticsearch/Endpoints/Cat/Count.php +++ b/src/Elasticsearch/Endpoints/Cat/Count.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.count * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Count extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Fielddata.php b/src/Elasticsearch/Endpoints/Cat/Fielddata.php index 8b79ea7df..1c74ed007 100644 --- a/src/Elasticsearch/Endpoints/Cat/Fielddata.php +++ b/src/Elasticsearch/Endpoints/Cat/Fielddata.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.fielddata * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Fielddata extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Health.php b/src/Elasticsearch/Endpoints/Cat/Health.php index a0ebbaed7..a38c306d0 100644 --- a/src/Elasticsearch/Endpoints/Cat/Health.php +++ b/src/Elasticsearch/Endpoints/Cat/Health.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.health * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Health extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Help.php b/src/Elasticsearch/Endpoints/Cat/Help.php index d3c5a97bf..ed393d235 100644 --- a/src/Elasticsearch/Endpoints/Cat/Help.php +++ b/src/Elasticsearch/Endpoints/Cat/Help.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.help * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Help extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Indices.php b/src/Elasticsearch/Endpoints/Cat/Indices.php index 10b3d51d1..5359f5480 100644 --- a/src/Elasticsearch/Endpoints/Cat/Indices.php +++ b/src/Elasticsearch/Endpoints/Cat/Indices.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.indices * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Indices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Master.php b/src/Elasticsearch/Endpoints/Cat/Master.php index 995670127..32e285f56 100644 --- a/src/Elasticsearch/Endpoints/Cat/Master.php +++ b/src/Elasticsearch/Endpoints/Cat/Master.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.master * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Master extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php index 425816d56..30095dcd9 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class MlDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php b/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php index d7186a063..abd383b84 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php +++ b/src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_datafeeds * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class MlDatafeeds extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlJobs.php b/src/Elasticsearch/Endpoints/Cat/MlJobs.php index aa0bbba8f..d782746a8 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlJobs.php +++ b/src/Elasticsearch/Endpoints/Cat/MlJobs.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_jobs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class MlJobs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php b/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php index c1ac582fa..712c53850 100644 --- a/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php +++ b/src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.ml_trained_models * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class MlTrainedModels extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php b/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php index 5d2ff8626..736b0381c 100644 --- a/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php +++ b/src/Elasticsearch/Endpoints/Cat/NodeAttrs.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.nodeattrs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class NodeAttrs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Nodes.php b/src/Elasticsearch/Endpoints/Cat/Nodes.php index da003c3b7..642fccd7f 100644 --- a/src/Elasticsearch/Endpoints/Cat/Nodes.php +++ b/src/Elasticsearch/Endpoints/Cat/Nodes.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.nodes * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Nodes extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/PendingTasks.php b/src/Elasticsearch/Endpoints/Cat/PendingTasks.php index f8730db68..7f85b0c26 100644 --- a/src/Elasticsearch/Endpoints/Cat/PendingTasks.php +++ b/src/Elasticsearch/Endpoints/Cat/PendingTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.pending_tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PendingTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Plugins.php b/src/Elasticsearch/Endpoints/Cat/Plugins.php index b2c55d596..d5450606b 100644 --- a/src/Elasticsearch/Endpoints/Cat/Plugins.php +++ b/src/Elasticsearch/Endpoints/Cat/Plugins.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.plugins * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Plugins extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Recovery.php b/src/Elasticsearch/Endpoints/Cat/Recovery.php index 8f1bf3b37..3d0c55778 100644 --- a/src/Elasticsearch/Endpoints/Cat/Recovery.php +++ b/src/Elasticsearch/Endpoints/Cat/Recovery.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.recovery * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Recovery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Repositories.php b/src/Elasticsearch/Endpoints/Cat/Repositories.php index 9653829fd..36dfbc45b 100644 --- a/src/Elasticsearch/Endpoints/Cat/Repositories.php +++ b/src/Elasticsearch/Endpoints/Cat/Repositories.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.repositories * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Repositories extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Segments.php b/src/Elasticsearch/Endpoints/Cat/Segments.php index a8e7cd350..d03c7d44c 100644 --- a/src/Elasticsearch/Endpoints/Cat/Segments.php +++ b/src/Elasticsearch/Endpoints/Cat/Segments.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.segments * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Segments extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Shards.php b/src/Elasticsearch/Endpoints/Cat/Shards.php index 5dd59069b..2b36f5ac9 100644 --- a/src/Elasticsearch/Endpoints/Cat/Shards.php +++ b/src/Elasticsearch/Endpoints/Cat/Shards.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.shards * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Shards extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Snapshots.php b/src/Elasticsearch/Endpoints/Cat/Snapshots.php index 0bc14d07b..8232c9b23 100644 --- a/src/Elasticsearch/Endpoints/Cat/Snapshots.php +++ b/src/Elasticsearch/Endpoints/Cat/Snapshots.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.snapshots * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Snapshots extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Tasks.php b/src/Elasticsearch/Endpoints/Cat/Tasks.php index ba6ef0539..89009da75 100644 --- a/src/Elasticsearch/Endpoints/Cat/Tasks.php +++ b/src/Elasticsearch/Endpoints/Cat/Tasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Tasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Templates.php b/src/Elasticsearch/Endpoints/Cat/Templates.php index 8784ccb4f..bdfb03e91 100644 --- a/src/Elasticsearch/Endpoints/Cat/Templates.php +++ b/src/Elasticsearch/Endpoints/Cat/Templates.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.templates * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Templates extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/ThreadPool.php b/src/Elasticsearch/Endpoints/Cat/ThreadPool.php index f852421b2..20137f155 100644 --- a/src/Elasticsearch/Endpoints/Cat/ThreadPool.php +++ b/src/Elasticsearch/Endpoints/Cat/ThreadPool.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.thread_pool * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ThreadPool extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cat/Transforms.php b/src/Elasticsearch/Endpoints/Cat/Transforms.php index 8b296ac80..0ac689c33 100644 --- a/src/Elasticsearch/Endpoints/Cat/Transforms.php +++ b/src/Elasticsearch/Endpoints/Cat/Transforms.php @@ -23,7 +23,7 @@ * Elasticsearch API name cat.transforms * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Transforms extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php index 984a3411b..f62e4f360 100644 --- a/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/DeleteAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.delete_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Follow.php b/src/Elasticsearch/Endpoints/Ccr/Follow.php index 1d132daef..3abc157f5 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Follow.php +++ b/src/Elasticsearch/Endpoints/Ccr/Follow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Follow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php b/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php index e2942d6f1..8f1733555 100644 --- a/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php +++ b/src/Elasticsearch/Endpoints/Ccr/FollowInfo.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow_info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class FollowInfo extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/FollowStats.php b/src/Elasticsearch/Endpoints/Ccr/FollowStats.php index d4ed81c4b..cf8368476 100644 --- a/src/Elasticsearch/Endpoints/Ccr/FollowStats.php +++ b/src/Elasticsearch/Endpoints/Ccr/FollowStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.follow_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class FollowStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php b/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php index cf224ca16..3c3198b7d 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php +++ b/src/Elasticsearch/Endpoints/Ccr/ForgetFollower.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.forget_follower * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ForgetFollower extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php index 0cc15321d..1a19542dd 100644 --- a/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/GetAutoFollowPattern.php @@ -23,7 +23,7 @@ * Elasticsearch API name ccr.get_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php index 709126f23..d01cf35ea 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/PauseAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.pause_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PauseAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php b/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php index c669c15e0..2a7c5b18a 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/PauseFollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.pause_follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PauseFollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php index 53e39950c..0685aa9eb 100644 --- a/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/PutAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.put_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php b/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php index 9da491a89..450075b57 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php +++ b/src/Elasticsearch/Endpoints/Ccr/ResumeAutoFollowPattern.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.resume_auto_follow_pattern * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ResumeAutoFollowPattern extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php b/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php index 7f369be0a..3ad4331ac 100644 --- a/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/ResumeFollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.resume_follow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ResumeFollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Stats.php b/src/Elasticsearch/Endpoints/Ccr/Stats.php index 5566ce123..c9e6aef20 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Stats.php +++ b/src/Elasticsearch/Endpoints/Ccr/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ccr.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ccr/Unfollow.php b/src/Elasticsearch/Endpoints/Ccr/Unfollow.php index 4b5e8790c..c053c32fb 100644 --- a/src/Elasticsearch/Endpoints/Ccr/Unfollow.php +++ b/src/Elasticsearch/Endpoints/Ccr/Unfollow.php @@ -24,7 +24,7 @@ * Elasticsearch API name ccr.unfollow * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Unfollow extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ClearScroll.php b/src/Elasticsearch/Endpoints/ClearScroll.php index c32c783b7..cad073ccf 100644 --- a/src/Elasticsearch/Endpoints/ClearScroll.php +++ b/src/Elasticsearch/Endpoints/ClearScroll.php @@ -23,7 +23,7 @@ * Elasticsearch API name clear_scroll * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ClearScroll extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ClosePointInTime.php b/src/Elasticsearch/Endpoints/ClosePointInTime.php index 898ded698..c4b7cab8e 100644 --- a/src/Elasticsearch/Endpoints/ClosePointInTime.php +++ b/src/Elasticsearch/Endpoints/ClosePointInTime.php @@ -23,7 +23,7 @@ * Elasticsearch API name close_point_in_time * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ClosePointInTime extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php b/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php index ef61d271d..4d7a8d420 100644 --- a/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php +++ b/src/Elasticsearch/Endpoints/Cluster/AllocationExplain.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.allocation_explain * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class AllocationExplain extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php index beb672161..4281ea90f 100644 --- a/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/DeleteComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.delete_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php b/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php index c53fea8e9..c0ef53f1a 100644 --- a/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php +++ b/src/Elasticsearch/Endpoints/Cluster/DeleteVotingConfigExclusions.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.delete_voting_config_exclusions * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteVotingConfigExclusions extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php index 0f5852397..ae668d509 100644 --- a/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/ExistsComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.exists_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ExistsComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php index 3d345b733..267439f6e 100644 --- a/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/GetComponentTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.get_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/GetSettings.php b/src/Elasticsearch/Endpoints/Cluster/GetSettings.php index c079ca26c..a47baadc9 100644 --- a/src/Elasticsearch/Endpoints/Cluster/GetSettings.php +++ b/src/Elasticsearch/Endpoints/Cluster/GetSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.get_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Health.php b/src/Elasticsearch/Endpoints/Cluster/Health.php index a71ddac86..f17ca8188 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Health.php +++ b/src/Elasticsearch/Endpoints/Cluster/Health.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.health * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Health extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php b/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php index 831a6f1d4..07dca2e0b 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php +++ b/src/Elasticsearch/Endpoints/Cluster/PendingTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.pending_tasks * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PendingTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php b/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php index 65121ce75..5f6b20447 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php +++ b/src/Elasticsearch/Endpoints/Cluster/PostVotingConfigExclusions.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.post_voting_config_exclusions * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PostVotingConfigExclusions extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php b/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php index a35be6a3f..59f1877cc 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php +++ b/src/Elasticsearch/Endpoints/Cluster/PutComponentTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name cluster.put_component_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutComponentTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/PutSettings.php b/src/Elasticsearch/Endpoints/Cluster/PutSettings.php index 5f75ddb30..2e00728d0 100644 --- a/src/Elasticsearch/Endpoints/Cluster/PutSettings.php +++ b/src/Elasticsearch/Endpoints/Cluster/PutSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.put_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php b/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php index e187a56a0..cc2195877 100644 --- a/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php +++ b/src/Elasticsearch/Endpoints/Cluster/RemoteInfo.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.remote_info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class RemoteInfo extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Reroute.php b/src/Elasticsearch/Endpoints/Cluster/Reroute.php index 010ed2dec..189816aab 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Reroute.php +++ b/src/Elasticsearch/Endpoints/Cluster/Reroute.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.reroute * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Reroute extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/State.php b/src/Elasticsearch/Endpoints/Cluster/State.php index 5657bb662..a4fc0ef6b 100644 --- a/src/Elasticsearch/Endpoints/Cluster/State.php +++ b/src/Elasticsearch/Endpoints/Cluster/State.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.state * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class State extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Cluster/Stats.php b/src/Elasticsearch/Endpoints/Cluster/Stats.php index 29f201e7d..ea861e39b 100644 --- a/src/Elasticsearch/Endpoints/Cluster/Stats.php +++ b/src/Elasticsearch/Endpoints/Cluster/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name cluster.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Count.php b/src/Elasticsearch/Endpoints/Count.php index b5a7cadde..00652bcef 100644 --- a/src/Elasticsearch/Endpoints/Count.php +++ b/src/Elasticsearch/Endpoints/Count.php @@ -23,7 +23,7 @@ * Elasticsearch API name count * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Count extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Create.php b/src/Elasticsearch/Endpoints/Create.php index 36c95c941..c2a158e52 100644 --- a/src/Elasticsearch/Endpoints/Create.php +++ b/src/Elasticsearch/Endpoints/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php b/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php index e13a2ca09..d908ac096 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/DeleteDanglingIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name dangling_indices.delete_dangling_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteDanglingIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php b/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php index ef5d75a7a..2590ccdb0 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/ImportDanglingIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name dangling_indices.import_dangling_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ImportDanglingIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php b/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php index 2e77cf144..5e9e3df61 100644 --- a/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php +++ b/src/Elasticsearch/Endpoints/DanglingIndices/ListDanglingIndices.php @@ -23,7 +23,7 @@ * Elasticsearch API name dangling_indices.list_dangling_indices * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ListDanglingIndices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php index 150616dca..93f770eda 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/DeleteTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.delete_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php index 064e59391..e376ac31c 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name data_frame_transform_deprecated.get_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php index e6314ccdf..b07a1f29d 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/GetTransformStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.get_transform_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetTransformStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php index 2708441c1..9aaaea9f3 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PreviewTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name data_frame_transform_deprecated.preview_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PreviewTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php index 4a4254003..80d7e5523 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/PutTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.put_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php index ad2f602d1..17366cfa7 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StartTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.start_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class StartTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php index 98fafff61..30fdfacb0 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/StopTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.stop_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class StopTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php index 46a3bafde..8a881ba5d 100644 --- a/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php +++ b/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/UpdateTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name data_frame_transform_deprecated.update_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class UpdateTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Delete.php b/src/Elasticsearch/Endpoints/Delete.php index 47ce9edaa..aa0bbd16a 100644 --- a/src/Elasticsearch/Endpoints/Delete.php +++ b/src/Elasticsearch/Endpoints/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteByQuery.php b/src/Elasticsearch/Endpoints/DeleteByQuery.php index 373981660..b78f22e33 100644 --- a/src/Elasticsearch/Endpoints/DeleteByQuery.php +++ b/src/Elasticsearch/Endpoints/DeleteByQuery.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_by_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteByQuery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php b/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php index 3bc9a5a4b..cd92586ef 100644 --- a/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php +++ b/src/Elasticsearch/Endpoints/DeleteByQueryRethrottle.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_by_query_rethrottle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteByQueryRethrottle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/DeleteScript.php b/src/Elasticsearch/Endpoints/DeleteScript.php index 2fd8707f4..33c3264af 100644 --- a/src/Elasticsearch/Endpoints/DeleteScript.php +++ b/src/Elasticsearch/Endpoints/DeleteScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name delete_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php b/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php index 4f9f5bacd..a16c0ee4c 100644 --- a/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/DeletePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.delete_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeletePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php b/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php index f8af6da1d..81a73c0f1 100644 --- a/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/ExecutePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.execute_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ExecutePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php b/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php index 18b825427..66736f564 100644 --- a/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/GetPolicy.php @@ -23,7 +23,7 @@ * Elasticsearch API name enrich.get_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php b/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php index fe9ebf747..8e3ba8310 100644 --- a/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php +++ b/src/Elasticsearch/Endpoints/Enrich/PutPolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name enrich.put_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutPolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Enrich/Stats.php b/src/Elasticsearch/Endpoints/Enrich/Stats.php index f6f5d31fd..03901c6ac 100644 --- a/src/Elasticsearch/Endpoints/Enrich/Stats.php +++ b/src/Elasticsearch/Endpoints/Enrich/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name enrich.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Delete.php b/src/Elasticsearch/Endpoints/Eql/Delete.php index 3c846af0c..abe28be38 100644 --- a/src/Elasticsearch/Endpoints/Eql/Delete.php +++ b/src/Elasticsearch/Endpoints/Eql/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Get.php b/src/Elasticsearch/Endpoints/Eql/Get.php index c92a60b3c..cf53ab0b5 100644 --- a/src/Elasticsearch/Endpoints/Eql/Get.php +++ b/src/Elasticsearch/Endpoints/Eql/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/GetStatus.php b/src/Elasticsearch/Endpoints/Eql/GetStatus.php index c39a2d0ee..0ce414284 100644 --- a/src/Elasticsearch/Endpoints/Eql/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Eql/GetStatus.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Eql/Search.php b/src/Elasticsearch/Endpoints/Eql/Search.php index f64d167fa..7ed57c264 100644 --- a/src/Elasticsearch/Endpoints/Eql/Search.php +++ b/src/Elasticsearch/Endpoints/Eql/Search.php @@ -24,7 +24,7 @@ * Elasticsearch API name eql.search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Search extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Exists.php b/src/Elasticsearch/Endpoints/Exists.php index 53e8c53ec..b8ae3c6d2 100644 --- a/src/Elasticsearch/Endpoints/Exists.php +++ b/src/Elasticsearch/Endpoints/Exists.php @@ -24,7 +24,7 @@ * Elasticsearch API name exists * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Exists extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ExistsSource.php b/src/Elasticsearch/Endpoints/ExistsSource.php index 40a2523ee..e51e8c4c9 100644 --- a/src/Elasticsearch/Endpoints/ExistsSource.php +++ b/src/Elasticsearch/Endpoints/ExistsSource.php @@ -24,7 +24,7 @@ * Elasticsearch API name exists_source * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ExistsSource extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Explain.php b/src/Elasticsearch/Endpoints/Explain.php index 92f5133aa..078c4ae7b 100644 --- a/src/Elasticsearch/Endpoints/Explain.php +++ b/src/Elasticsearch/Endpoints/Explain.php @@ -24,7 +24,7 @@ * Elasticsearch API name explain * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Explain extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Features/GetFeatures.php b/src/Elasticsearch/Endpoints/Features/GetFeatures.php index e261df964..6dc54a36e 100644 --- a/src/Elasticsearch/Endpoints/Features/GetFeatures.php +++ b/src/Elasticsearch/Endpoints/Features/GetFeatures.php @@ -23,7 +23,7 @@ * Elasticsearch API name features.get_features * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetFeatures extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Features/ResetFeatures.php b/src/Elasticsearch/Endpoints/Features/ResetFeatures.php index 383a59ef5..7585c2f67 100644 --- a/src/Elasticsearch/Endpoints/Features/ResetFeatures.php +++ b/src/Elasticsearch/Endpoints/Features/ResetFeatures.php @@ -23,7 +23,7 @@ * Elasticsearch API name features.reset_features * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ResetFeatures extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/FieldCaps.php b/src/Elasticsearch/Endpoints/FieldCaps.php index b53a859fe..413f04a92 100644 --- a/src/Elasticsearch/Endpoints/FieldCaps.php +++ b/src/Elasticsearch/Endpoints/FieldCaps.php @@ -23,7 +23,7 @@ * Elasticsearch API name field_caps * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class FieldCaps extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php b/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php index df149c1b4..80b0a903e 100644 --- a/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php +++ b/src/Elasticsearch/Endpoints/Fleet/GlobalCheckpoints.php @@ -24,7 +24,7 @@ * Elasticsearch API name fleet.global_checkpoints * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GlobalCheckpoints extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Fleet/Msearch.php b/src/Elasticsearch/Endpoints/Fleet/Msearch.php index 59f48add9..21dcde0e8 100644 --- a/src/Elasticsearch/Endpoints/Fleet/Msearch.php +++ b/src/Elasticsearch/Endpoints/Fleet/Msearch.php @@ -26,7 +26,7 @@ * Elasticsearch API name fleet.msearch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Msearch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Fleet/Search.php b/src/Elasticsearch/Endpoints/Fleet/Search.php index a1eb3f23d..1bea62e4f 100644 --- a/src/Elasticsearch/Endpoints/Fleet/Search.php +++ b/src/Elasticsearch/Endpoints/Fleet/Search.php @@ -24,7 +24,7 @@ * Elasticsearch API name fleet.search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Search extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Get.php b/src/Elasticsearch/Endpoints/Get.php index 3e9fe913d..400363323 100644 --- a/src/Elasticsearch/Endpoints/Get.php +++ b/src/Elasticsearch/Endpoints/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScript.php b/src/Elasticsearch/Endpoints/GetScript.php index 9979e0872..d7f851e99 100644 --- a/src/Elasticsearch/Endpoints/GetScript.php +++ b/src/Elasticsearch/Endpoints/GetScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name get_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScriptContext.php b/src/Elasticsearch/Endpoints/GetScriptContext.php index 55e477da4..cf099e6d4 100644 --- a/src/Elasticsearch/Endpoints/GetScriptContext.php +++ b/src/Elasticsearch/Endpoints/GetScriptContext.php @@ -23,7 +23,7 @@ * Elasticsearch API name get_script_context * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetScriptContext extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetScriptLanguages.php b/src/Elasticsearch/Endpoints/GetScriptLanguages.php index 675f2774d..cb70adc2c 100644 --- a/src/Elasticsearch/Endpoints/GetScriptLanguages.php +++ b/src/Elasticsearch/Endpoints/GetScriptLanguages.php @@ -23,7 +23,7 @@ * Elasticsearch API name get_script_languages * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetScriptLanguages extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/GetSource.php b/src/Elasticsearch/Endpoints/GetSource.php index 7a0dfcca2..37534af86 100644 --- a/src/Elasticsearch/Endpoints/GetSource.php +++ b/src/Elasticsearch/Endpoints/GetSource.php @@ -24,7 +24,7 @@ * Elasticsearch API name get_source * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetSource extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Graph/Explore.php b/src/Elasticsearch/Endpoints/Graph/Explore.php index 984c081e8..5416942cd 100644 --- a/src/Elasticsearch/Endpoints/Graph/Explore.php +++ b/src/Elasticsearch/Endpoints/Graph/Explore.php @@ -24,7 +24,7 @@ * Elasticsearch API name graph.explore * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Explore extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php index 20bf00d90..94d11f7de 100644 --- a/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/DeleteLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.delete_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php index a73a55151..449898484 100644 --- a/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/ExplainLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.explain_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ExplainLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php index 03325eb99..f07f15087 100644 --- a/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/GetLifecycle.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.get_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/GetStatus.php b/src/Elasticsearch/Endpoints/Ilm/GetStatus.php index 86148304a..b86d2a223 100644 --- a/src/Elasticsearch/Endpoints/Ilm/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Ilm/GetStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php b/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php index 19342eb10..8bef001c7 100644 --- a/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php +++ b/src/Elasticsearch/Endpoints/Ilm/MigrateToDataTiers.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.migrate_to_data_tiers * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class MigrateToDataTiers extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php b/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php index fdd30bad4..985da2d50 100644 --- a/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php +++ b/src/Elasticsearch/Endpoints/Ilm/MoveToStep.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.move_to_step * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class MoveToStep extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php b/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php index cd12ef957..0f774095b 100644 --- a/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php +++ b/src/Elasticsearch/Endpoints/Ilm/PutLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.put_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php b/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php index 93d343c76..73ba949cd 100644 --- a/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php +++ b/src/Elasticsearch/Endpoints/Ilm/RemovePolicy.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.remove_policy * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class RemovePolicy extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Retry.php b/src/Elasticsearch/Endpoints/Ilm/Retry.php index 59407e11b..8a54aaef8 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Retry.php +++ b/src/Elasticsearch/Endpoints/Ilm/Retry.php @@ -24,7 +24,7 @@ * Elasticsearch API name ilm.retry * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Retry extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Start.php b/src/Elasticsearch/Endpoints/Ilm/Start.php index ad097c590..c2f072e66 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Start.php +++ b/src/Elasticsearch/Endpoints/Ilm/Start.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.start * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Start extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ilm/Stop.php b/src/Elasticsearch/Endpoints/Ilm/Stop.php index 2819ab088..7db1d077d 100644 --- a/src/Elasticsearch/Endpoints/Ilm/Stop.php +++ b/src/Elasticsearch/Endpoints/Ilm/Stop.php @@ -23,7 +23,7 @@ * Elasticsearch API name ilm.stop * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Stop extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Index.php b/src/Elasticsearch/Endpoints/Index.php index cd43c7621..9e6d2df0c 100644 --- a/src/Elasticsearch/Endpoints/Index.php +++ b/src/Elasticsearch/Endpoints/Index.php @@ -24,7 +24,7 @@ * Elasticsearch API name index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Index extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/AddBlock.php b/src/Elasticsearch/Endpoints/Indices/AddBlock.php index e5b3e0427..9250f651b 100644 --- a/src/Elasticsearch/Endpoints/Indices/AddBlock.php +++ b/src/Elasticsearch/Endpoints/Indices/AddBlock.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.add_block * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class AddBlock extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Analyze.php b/src/Elasticsearch/Endpoints/Indices/Analyze.php index e870881aa..283cddc9e 100644 --- a/src/Elasticsearch/Endpoints/Indices/Analyze.php +++ b/src/Elasticsearch/Endpoints/Indices/Analyze.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.analyze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Analyze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ClearCache.php b/src/Elasticsearch/Endpoints/Indices/ClearCache.php index 5e912cf1d..e101ac575 100644 --- a/src/Elasticsearch/Endpoints/Indices/ClearCache.php +++ b/src/Elasticsearch/Endpoints/Indices/ClearCache.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.clear_cache * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ClearCache extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/CloneIndices.php b/src/Elasticsearch/Endpoints/Indices/CloneIndices.php index ee8bf36b0..b3e59f305 100644 --- a/src/Elasticsearch/Endpoints/Indices/CloneIndices.php +++ b/src/Elasticsearch/Endpoints/Indices/CloneIndices.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.clone * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class CloneIndices extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Close.php b/src/Elasticsearch/Endpoints/Indices/Close.php index d7c14b28c..7ca4dcde7 100644 --- a/src/Elasticsearch/Endpoints/Indices/Close.php +++ b/src/Elasticsearch/Endpoints/Indices/Close.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.close * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Close extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Create.php b/src/Elasticsearch/Endpoints/Indices/Create.php index 8f20c022f..ca4614634 100644 --- a/src/Elasticsearch/Endpoints/Indices/Create.php +++ b/src/Elasticsearch/Endpoints/Indices/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php b/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php index 61dd34486..a7737dbdd 100644 --- a/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/CreateDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.create_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class CreateDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php b/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php index 50e5a8777..ef73ea69f 100644 --- a/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php +++ b/src/Elasticsearch/Endpoints/Indices/DataStreamsStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.data_streams_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DataStreamsStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Delete.php b/src/Elasticsearch/Endpoints/Indices/Delete.php index fdf179662..a0a607eff 100644 --- a/src/Elasticsearch/Endpoints/Indices/Delete.php +++ b/src/Elasticsearch/Endpoints/Indices/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php b/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php index 1f0630bda..a869e8c65 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php b/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php index 7a3996277..b4848b4e1 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php index 0484daa03..57d95a3e2 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php b/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php index 43680da44..29e92a20b 100644 --- a/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/DeleteTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.delete_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/DiskUsage.php b/src/Elasticsearch/Endpoints/Indices/DiskUsage.php index e81cd5539..e66278167 100644 --- a/src/Elasticsearch/Endpoints/Indices/DiskUsage.php +++ b/src/Elasticsearch/Endpoints/Indices/DiskUsage.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.disk_usage * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DiskUsage extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Exists.php b/src/Elasticsearch/Endpoints/Indices/Exists.php index f9cc323c4..b5857c5d1 100644 --- a/src/Elasticsearch/Endpoints/Indices/Exists.php +++ b/src/Elasticsearch/Endpoints/Indices/Exists.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Exists extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php b/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php index deb6b1f41..39c536cf8 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ExistsAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php index 9a61f1045..186bbb85e 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ExistsIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php b/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php index f1dfe752e..31b9b3416 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ExistsTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ExistsType.php b/src/Elasticsearch/Endpoints/Indices/ExistsType.php index 9fc43fa0e..a81a52e03 100644 --- a/src/Elasticsearch/Endpoints/Indices/ExistsType.php +++ b/src/Elasticsearch/Endpoints/Indices/ExistsType.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.exists_type * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ExistsType extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php b/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php index b0d14f138..4a41b3986 100644 --- a/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php +++ b/src/Elasticsearch/Endpoints/Indices/FieldUsageStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.field_usage_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class FieldUsageStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Flush.php b/src/Elasticsearch/Endpoints/Indices/Flush.php index c6e998f3d..26dd5478c 100644 --- a/src/Elasticsearch/Endpoints/Indices/Flush.php +++ b/src/Elasticsearch/Endpoints/Indices/Flush.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.flush * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Flush extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/FlushSynced.php b/src/Elasticsearch/Endpoints/Indices/FlushSynced.php index 62bb1c236..0328caf87 100644 --- a/src/Elasticsearch/Endpoints/Indices/FlushSynced.php +++ b/src/Elasticsearch/Endpoints/Indices/FlushSynced.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.flush_synced * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class FlushSynced extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ForceMerge.php b/src/Elasticsearch/Endpoints/Indices/ForceMerge.php index 2452d1eb4..cacb341a8 100644 --- a/src/Elasticsearch/Endpoints/Indices/ForceMerge.php +++ b/src/Elasticsearch/Endpoints/Indices/ForceMerge.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.forcemerge * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ForceMerge extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Freeze.php b/src/Elasticsearch/Endpoints/Indices/Freeze.php index 806af5e9b..a74d0c9f7 100644 --- a/src/Elasticsearch/Endpoints/Indices/Freeze.php +++ b/src/Elasticsearch/Endpoints/Indices/Freeze.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.freeze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Freeze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Get.php b/src/Elasticsearch/Endpoints/Indices/Get.php index e379805ae..b2ffcf8c1 100644 --- a/src/Elasticsearch/Endpoints/Indices/Get.php +++ b/src/Elasticsearch/Endpoints/Indices/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetAlias.php b/src/Elasticsearch/Endpoints/Indices/GetAlias.php index 598ad5fdd..30e4c9b02 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/GetAlias.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetDataStream.php b/src/Elasticsearch/Endpoints/Indices/GetDataStream.php index 66652e73a..cfeabbd35 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/GetDataStream.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php b/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php index e0328894d..8503dbb5d 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/GetFieldMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.get_field_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetFieldMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php index 3c88fd487..26ac8746f 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/GetIndexTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetMapping.php b/src/Elasticsearch/Endpoints/Indices/GetMapping.php index cd6200a2c..ae26bd96b 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/GetMapping.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetSettings.php b/src/Elasticsearch/Endpoints/Indices/GetSettings.php index e02bb73fd..c06b20ea9 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetSettings.php +++ b/src/Elasticsearch/Endpoints/Indices/GetSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetTemplate.php b/src/Elasticsearch/Endpoints/Indices/GetTemplate.php index bf9769425..71394a2f8 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/GetTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php b/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php index c9503ce5e..05618fe41 100644 --- a/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php +++ b/src/Elasticsearch/Endpoints/Indices/GetUpgrade.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.get_upgrade * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetUpgrade extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php b/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php index b7571338c..e98c4425f 100644 --- a/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/MigrateToDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.migrate_to_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class MigrateToDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ModifyDataStream.php b/src/Elasticsearch/Endpoints/Indices/ModifyDataStream.php index 7e1e69f6e..7d9aa70e5 100644 --- a/src/Elasticsearch/Endpoints/Indices/ModifyDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/ModifyDataStream.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.modify_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ModifyDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Open.php b/src/Elasticsearch/Endpoints/Indices/Open.php index bf9fbef58..66e6eff5b 100644 --- a/src/Elasticsearch/Endpoints/Indices/Open.php +++ b/src/Elasticsearch/Endpoints/Indices/Open.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.open * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Open extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php b/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php index 6988bdf04..f794ace6d 100644 --- a/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php +++ b/src/Elasticsearch/Endpoints/Indices/PromoteDataStream.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.promote_data_stream * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PromoteDataStream extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutAlias.php b/src/Elasticsearch/Endpoints/Indices/PutAlias.php index a4e7552f8..5528e2a5d 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutAlias.php +++ b/src/Elasticsearch/Endpoints/Indices/PutAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php index 9a9d5b015..0d5b2f738 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/PutIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutMapping.php b/src/Elasticsearch/Endpoints/Indices/PutMapping.php index fafc5c30b..5c7f613ca 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutMapping.php +++ b/src/Elasticsearch/Endpoints/Indices/PutMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutSettings.php b/src/Elasticsearch/Endpoints/Indices/PutSettings.php index b013e00eb..187f2a794 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutSettings.php +++ b/src/Elasticsearch/Endpoints/Indices/PutSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.put_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/PutTemplate.php b/src/Elasticsearch/Endpoints/Indices/PutTemplate.php index f0b0477bb..76f8c0b49 100644 --- a/src/Elasticsearch/Endpoints/Indices/PutTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/PutTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.put_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Recovery.php b/src/Elasticsearch/Endpoints/Indices/Recovery.php index d09571c7d..c847745f3 100644 --- a/src/Elasticsearch/Endpoints/Indices/Recovery.php +++ b/src/Elasticsearch/Endpoints/Indices/Recovery.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.recovery * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Recovery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Refresh.php b/src/Elasticsearch/Endpoints/Indices/Refresh.php index b929d56ed..aa9922405 100644 --- a/src/Elasticsearch/Endpoints/Indices/Refresh.php +++ b/src/Elasticsearch/Endpoints/Indices/Refresh.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.refresh * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Refresh extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php b/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php index b192e411e..9e9895adb 100644 --- a/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php +++ b/src/Elasticsearch/Endpoints/Indices/ReloadSearchAnalyzers.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.reload_search_analyzers * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ReloadSearchAnalyzers extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php b/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php index ddf08abb3..de8a69aea 100644 --- a/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php +++ b/src/Elasticsearch/Endpoints/Indices/ResolveIndex.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.resolve_index * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ResolveIndex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Rollover.php b/src/Elasticsearch/Endpoints/Indices/Rollover.php index 2c9ca86a3..b2edca5bf 100644 --- a/src/Elasticsearch/Endpoints/Indices/Rollover.php +++ b/src/Elasticsearch/Endpoints/Indices/Rollover.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.rollover * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Rollover extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Segments.php b/src/Elasticsearch/Endpoints/Indices/Segments.php index e4b0e56f1..b3e032c6a 100644 --- a/src/Elasticsearch/Endpoints/Indices/Segments.php +++ b/src/Elasticsearch/Endpoints/Indices/Segments.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.segments * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Segments extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ShardStores.php b/src/Elasticsearch/Endpoints/Indices/ShardStores.php index b6f8b7970..c24bbb177 100644 --- a/src/Elasticsearch/Endpoints/Indices/ShardStores.php +++ b/src/Elasticsearch/Endpoints/Indices/ShardStores.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.shard_stores * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ShardStores extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Shrink.php b/src/Elasticsearch/Endpoints/Indices/Shrink.php index 1f367cdc6..1697d1b46 100644 --- a/src/Elasticsearch/Endpoints/Indices/Shrink.php +++ b/src/Elasticsearch/Endpoints/Indices/Shrink.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.shrink * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Shrink extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php b/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php index 7fc782654..3c35e7452 100644 --- a/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/SimulateIndexTemplate.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.simulate_index_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class SimulateIndexTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php b/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php index 4b9fe1075..662de9ef8 100644 --- a/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php +++ b/src/Elasticsearch/Endpoints/Indices/SimulateTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.simulate_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class SimulateTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Split.php b/src/Elasticsearch/Endpoints/Indices/Split.php index 34ab164f9..e5e29ca28 100644 --- a/src/Elasticsearch/Endpoints/Indices/Split.php +++ b/src/Elasticsearch/Endpoints/Indices/Split.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.split * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Split extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Stats.php b/src/Elasticsearch/Endpoints/Indices/Stats.php index 3003de77b..8aa11f942 100644 --- a/src/Elasticsearch/Endpoints/Indices/Stats.php +++ b/src/Elasticsearch/Endpoints/Indices/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Unfreeze.php b/src/Elasticsearch/Endpoints/Indices/Unfreeze.php index fe1092041..7835ed143 100644 --- a/src/Elasticsearch/Endpoints/Indices/Unfreeze.php +++ b/src/Elasticsearch/Endpoints/Indices/Unfreeze.php @@ -24,7 +24,7 @@ * Elasticsearch API name indices.unfreeze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Unfreeze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php b/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php index 3daf5d1c4..dc0f75396 100644 --- a/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php +++ b/src/Elasticsearch/Endpoints/Indices/UpdateAliases.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.update_aliases * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class UpdateAliases extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/Upgrade.php b/src/Elasticsearch/Endpoints/Indices/Upgrade.php index 8d59db83c..a7f8b33cc 100644 --- a/src/Elasticsearch/Endpoints/Indices/Upgrade.php +++ b/src/Elasticsearch/Endpoints/Indices/Upgrade.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.upgrade * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Upgrade extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php b/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php index cdcbfd910..a09c9115f 100644 --- a/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php +++ b/src/Elasticsearch/Endpoints/Indices/ValidateQuery.php @@ -23,7 +23,7 @@ * Elasticsearch API name indices.validate_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ValidateQuery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Info.php b/src/Elasticsearch/Endpoints/Info.php index a66cbbc50..9482792a2 100644 --- a/src/Elasticsearch/Endpoints/Info.php +++ b/src/Elasticsearch/Endpoints/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php b/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php index 721c2baa3..d068f6f81 100644 --- a/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/DeletePipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name ingest.delete_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeletePipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php b/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php index 150129bc9..dc64dacd2 100644 --- a/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php +++ b/src/Elasticsearch/Endpoints/Ingest/GeoIpStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.geo_ip_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GeoIpStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php b/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php index c47b8c3bc..d9ba9732f 100644 --- a/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/GetPipeline.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.get_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php b/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php index 1614ee600..aefd0197d 100644 --- a/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php +++ b/src/Elasticsearch/Endpoints/Ingest/ProcessorGrok.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.processor_grok * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ProcessorGrok extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php b/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php index c80ff7a96..d40856aa9 100644 --- a/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php +++ b/src/Elasticsearch/Endpoints/Ingest/PutPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name ingest.put_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ingest/Simulate.php b/src/Elasticsearch/Endpoints/Ingest/Simulate.php index c80be00fe..589198c5a 100644 --- a/src/Elasticsearch/Endpoints/Ingest/Simulate.php +++ b/src/Elasticsearch/Endpoints/Ingest/Simulate.php @@ -23,7 +23,7 @@ * Elasticsearch API name ingest.simulate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Simulate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Delete.php b/src/Elasticsearch/Endpoints/License/Delete.php index 7753e99f2..b0f4afaae 100644 --- a/src/Elasticsearch/Endpoints/License/Delete.php +++ b/src/Elasticsearch/Endpoints/License/Delete.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Get.php b/src/Elasticsearch/Endpoints/License/Get.php index 5e7d2457f..9c3127697 100644 --- a/src/Elasticsearch/Endpoints/License/Get.php +++ b/src/Elasticsearch/Endpoints/License/Get.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/GetBasicStatus.php b/src/Elasticsearch/Endpoints/License/GetBasicStatus.php index 019eecb9b..4349063f6 100644 --- a/src/Elasticsearch/Endpoints/License/GetBasicStatus.php +++ b/src/Elasticsearch/Endpoints/License/GetBasicStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get_basic_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetBasicStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/GetTrialStatus.php b/src/Elasticsearch/Endpoints/License/GetTrialStatus.php index f02e26a87..2ab9d0ac4 100644 --- a/src/Elasticsearch/Endpoints/License/GetTrialStatus.php +++ b/src/Elasticsearch/Endpoints/License/GetTrialStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.get_trial_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetTrialStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/Post.php b/src/Elasticsearch/Endpoints/License/Post.php index 2a5db49dd..113aaa1c6 100644 --- a/src/Elasticsearch/Endpoints/License/Post.php +++ b/src/Elasticsearch/Endpoints/License/Post.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Post extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/PostStartBasic.php b/src/Elasticsearch/Endpoints/License/PostStartBasic.php index 55447a0c2..8d30ffba7 100644 --- a/src/Elasticsearch/Endpoints/License/PostStartBasic.php +++ b/src/Elasticsearch/Endpoints/License/PostStartBasic.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post_start_basic * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PostStartBasic extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/License/PostStartTrial.php b/src/Elasticsearch/Endpoints/License/PostStartTrial.php index 46cf94ebd..f77354c16 100644 --- a/src/Elasticsearch/Endpoints/License/PostStartTrial.php +++ b/src/Elasticsearch/Endpoints/License/PostStartTrial.php @@ -23,7 +23,7 @@ * Elasticsearch API name license.post_start_trial * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PostStartTrial extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php b/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php index 1dae221f6..5d30c9073 100644 --- a/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/DeletePipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.delete_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeletePipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php b/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php index 37b5fb133..a8d1cb815 100644 --- a/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/GetPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.get_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php b/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php index 075ebfe85..21bc8440d 100644 --- a/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php +++ b/src/Elasticsearch/Endpoints/Logstash/PutPipeline.php @@ -24,7 +24,7 @@ * Elasticsearch API name logstash.put_pipeline * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutPipeline extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/MTermVectors.php b/src/Elasticsearch/Endpoints/MTermVectors.php index 722c596ac..558db3d35 100644 --- a/src/Elasticsearch/Endpoints/MTermVectors.php +++ b/src/Elasticsearch/Endpoints/MTermVectors.php @@ -23,7 +23,7 @@ * Elasticsearch API name mtermvectors * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class MTermVectors extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Mget.php b/src/Elasticsearch/Endpoints/Mget.php index 0cb0ddee7..44a39472a 100644 --- a/src/Elasticsearch/Endpoints/Mget.php +++ b/src/Elasticsearch/Endpoints/Mget.php @@ -23,7 +23,7 @@ * Elasticsearch API name mget * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Mget extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Migration/Deprecations.php b/src/Elasticsearch/Endpoints/Migration/Deprecations.php index babe909cd..a2146643e 100644 --- a/src/Elasticsearch/Endpoints/Migration/Deprecations.php +++ b/src/Elasticsearch/Endpoints/Migration/Deprecations.php @@ -23,7 +23,7 @@ * Elasticsearch API name migration.deprecations * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Deprecations extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Migration/GetFeatureUpgradeStatus.php b/src/Elasticsearch/Endpoints/Migration/GetFeatureUpgradeStatus.php index f6d955b0b..bcf3d0918 100644 --- a/src/Elasticsearch/Endpoints/Migration/GetFeatureUpgradeStatus.php +++ b/src/Elasticsearch/Endpoints/Migration/GetFeatureUpgradeStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name migration.get_feature_upgrade_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetFeatureUpgradeStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Migration/PostFeatureUpgrade.php b/src/Elasticsearch/Endpoints/Migration/PostFeatureUpgrade.php index 18c52dc04..cdfb983c6 100644 --- a/src/Elasticsearch/Endpoints/Migration/PostFeatureUpgrade.php +++ b/src/Elasticsearch/Endpoints/Migration/PostFeatureUpgrade.php @@ -23,7 +23,7 @@ * Elasticsearch API name migration.post_feature_upgrade * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PostFeatureUpgrade extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/CloseJob.php b/src/Elasticsearch/Endpoints/Ml/CloseJob.php index efb507adb..f8c29877c 100644 --- a/src/Elasticsearch/Endpoints/Ml/CloseJob.php +++ b/src/Elasticsearch/Endpoints/Ml/CloseJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.close_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class CloseJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php b/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php index f8088d74d..72ef75a1d 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteCalendar.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_calendar * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteCalendar extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php index a3cbd8f02..add9a49df 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarEvent.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_calendar_event * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteCalendarEvent extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php index f116353d0..c37ae1b94 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteCalendarJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_calendar_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteCalendarJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php index 6bfa97a56..adad9d464 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php b/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php index ff88129dd..205336b7f 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php b/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php index 1bf0b9550..90d8b1ef8 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteExpiredData.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.delete_expired_data * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteExpiredData extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php b/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php index d5db19694..3afb5f43b 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteFilter.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_filter * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteFilter extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php b/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php index c3002af25..08c70a1f0 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteForecast.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_forecast * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteForecast extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteJob.php b/src/Elasticsearch/Endpoints/Ml/DeleteJob.php index e89ba0b27..fe971cbc2 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteJob.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php b/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php index 598cacec1..85281e979 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteModelSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_model_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteModelSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php index e045ff432..9b4a5a762 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModel.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_trained_model * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteTrainedModel extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php index 617fd40c8..f5f14e915 100644 --- a/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php +++ b/src/Elasticsearch/Endpoints/Ml/DeleteTrainedModelAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.delete_trained_model_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteTrainedModelAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php b/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php index e349d3609..58aec80b5 100644 --- a/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php +++ b/src/Elasticsearch/Endpoints/Ml/EstimateModelMemory.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.estimate_model_memory * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class EstimateModelMemory extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php b/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php index d8d7b3611..57c87161a 100644 --- a/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php +++ b/src/Elasticsearch/Endpoints/Ml/EvaluateDataFrame.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.evaluate_data_frame * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class EvaluateDataFrame extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php index c24516a6f..7ae685d92 100644 --- a/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/ExplainDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.explain_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ExplainDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php b/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php index 32cc2adb7..c9c948780 100644 --- a/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php +++ b/src/Elasticsearch/Endpoints/Ml/FindFileStructure.php @@ -26,7 +26,7 @@ * Elasticsearch API name ml.find_file_structure * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class FindFileStructure extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/FlushJob.php b/src/Elasticsearch/Endpoints/Ml/FlushJob.php index e557926e6..63e730fc5 100644 --- a/src/Elasticsearch/Endpoints/Ml/FlushJob.php +++ b/src/Elasticsearch/Endpoints/Ml/FlushJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.flush_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class FlushJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/Forecast.php b/src/Elasticsearch/Endpoints/Ml/Forecast.php index 85c56dfce..188dee92e 100644 --- a/src/Elasticsearch/Endpoints/Ml/Forecast.php +++ b/src/Elasticsearch/Endpoints/Ml/Forecast.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.forecast * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Forecast extends AbstractEndpoint { @@ -54,6 +54,16 @@ public function getMethod(): string return 'POST'; } + public function setBody($body): Forecast + { + if (isset($body) !== true) { + return $this; + } + $this->body = $body; + + return $this; + } + public function setJobId($job_id): Forecast { if (isset($job_id) !== true) { diff --git a/src/Elasticsearch/Endpoints/Ml/GetBuckets.php b/src/Elasticsearch/Endpoints/Ml/GetBuckets.php index 2765c01f0..7f79912d2 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetBuckets.php +++ b/src/Elasticsearch/Endpoints/Ml/GetBuckets.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_buckets * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetBuckets extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php b/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php index 10b4c399c..e36456da7 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php +++ b/src/Elasticsearch/Endpoints/Ml/GetCalendarEvents.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_calendar_events * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetCalendarEvents extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetCalendars.php b/src/Elasticsearch/Endpoints/Ml/GetCalendars.php index fe686efd2..8228119c9 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetCalendars.php +++ b/src/Elasticsearch/Endpoints/Ml/GetCalendars.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_calendars * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetCalendars extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetCategories.php b/src/Elasticsearch/Endpoints/Ml/GetCategories.php index 7921dcf7c..8f7974c27 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetCategories.php +++ b/src/Elasticsearch/Endpoints/Ml/GetCategories.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_categories * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetCategories extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php index 35b835a55..a6f0f5457 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php index dcea07371..75b217c80 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDataFrameAnalyticsStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_data_frame_analytics_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetDataFrameAnalyticsStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php b/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php index c73338df7..45e9492e0 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDatafeedStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_datafeed_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetDatafeedStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php b/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php index 5155a23ea..f28e0c01b 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php +++ b/src/Elasticsearch/Endpoints/Ml/GetDatafeeds.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_datafeeds * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetDatafeeds extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetFilters.php b/src/Elasticsearch/Endpoints/Ml/GetFilters.php index b25b2bc59..cbb7ed323 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetFilters.php +++ b/src/Elasticsearch/Endpoints/Ml/GetFilters.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_filters * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetFilters extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php b/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php index 7720d70f8..389224d60 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php +++ b/src/Elasticsearch/Endpoints/Ml/GetInfluencers.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_influencers * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetInfluencers extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetJobStats.php b/src/Elasticsearch/Endpoints/Ml/GetJobStats.php index 0d4c7deb4..902e838ad 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetJobStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetJobStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_job_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetJobStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetJobs.php b/src/Elasticsearch/Endpoints/Ml/GetJobs.php index 53c34455d..eb5e36a7e 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetJobs.php +++ b/src/Elasticsearch/Endpoints/Ml/GetJobs.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_jobs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetJobs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetModelSnapshotUpgradeStats.php b/src/Elasticsearch/Endpoints/Ml/GetModelSnapshotUpgradeStats.php new file mode 100644 index 000000000..09fa6031a --- /dev/null +++ b/src/Elasticsearch/Endpoints/Ml/GetModelSnapshotUpgradeStats.php @@ -0,0 +1,76 @@ +job_id ?? null; + $snapshot_id = $this->snapshot_id ?? null; + + if (isset($job_id) && isset($snapshot_id)) { + return "/_ml/anomaly_detectors/$job_id/model_snapshots/$snapshot_id/_upgrade/_stats"; + } + throw new RuntimeException('Missing parameter for the endpoint ml.get_model_snapshot_upgrade_stats'); + } + + public function getParamWhitelist(): array + { + return [ + 'allow_no_match' + ]; + } + + public function getMethod(): string + { + return 'GET'; + } + + public function setJobId($job_id): GetModelSnapshotUpgradeStats + { + if (isset($job_id) !== true) { + return $this; + } + $this->job_id = $job_id; + + return $this; + } + + public function setSnapshotId($snapshot_id): GetModelSnapshotUpgradeStats + { + if (isset($snapshot_id) !== true) { + return $this; + } + $this->snapshot_id = $snapshot_id; + + return $this; + } +} diff --git a/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php b/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php index 80b80dc8f..40be5d4e1 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php +++ b/src/Elasticsearch/Endpoints/Ml/GetModelSnapshots.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_model_snapshots * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetModelSnapshots extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php b/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php index 55e3f59fd..be639db4f 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php +++ b/src/Elasticsearch/Endpoints/Ml/GetOverallBuckets.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_overall_buckets * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetOverallBuckets extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetRecords.php b/src/Elasticsearch/Endpoints/Ml/GetRecords.php index b161c3455..6535de9d1 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetRecords.php +++ b/src/Elasticsearch/Endpoints/Ml/GetRecords.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.get_records * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetRecords extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php b/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php index 074c79a84..6b95c5eca 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php +++ b/src/Elasticsearch/Endpoints/Ml/GetTrainedModels.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_trained_models * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetTrainedModels extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php b/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php index d1c3171ee..91c067c1e 100644 --- a/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php +++ b/src/Elasticsearch/Endpoints/Ml/GetTrainedModelsStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.get_trained_models_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetTrainedModelsStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/Info.php b/src/Elasticsearch/Endpoints/Ml/Info.php index f9af2e414..ce42f5def 100644 --- a/src/Elasticsearch/Endpoints/Ml/Info.php +++ b/src/Elasticsearch/Endpoints/Ml/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/OpenJob.php b/src/Elasticsearch/Endpoints/Ml/OpenJob.php index 5b4d3bf35..5db2017be 100644 --- a/src/Elasticsearch/Endpoints/Ml/OpenJob.php +++ b/src/Elasticsearch/Endpoints/Ml/OpenJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.open_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class OpenJob extends AbstractEndpoint { @@ -50,6 +50,16 @@ public function getMethod(): string return 'POST'; } + public function setBody($body): OpenJob + { + if (isset($body) !== true) { + return $this; + } + $this->body = $body; + + return $this; + } + public function setJobId($job_id): OpenJob { if (isset($job_id) !== true) { diff --git a/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php b/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php index 5fa36eaa8..2016b2bac 100644 --- a/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php +++ b/src/Elasticsearch/Endpoints/Ml/PostCalendarEvents.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.post_calendar_events * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PostCalendarEvents extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PostData.php b/src/Elasticsearch/Endpoints/Ml/PostData.php index 55572f6c4..558037bfe 100644 --- a/src/Elasticsearch/Endpoints/Ml/PostData.php +++ b/src/Elasticsearch/Endpoints/Ml/PostData.php @@ -27,7 +27,7 @@ * Elasticsearch API name ml.post_data * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PostData extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php index 22acbd370..4d23a84ef 100644 --- a/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/PreviewDataFrameAnalytics.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.preview_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PreviewDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php b/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php index ae9e57e08..8c67f0b70 100644 --- a/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/PreviewDatafeed.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.preview_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PreviewDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutCalendar.php b/src/Elasticsearch/Endpoints/Ml/PutCalendar.php index 4ac887d36..73ea41733 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutCalendar.php +++ b/src/Elasticsearch/Endpoints/Ml/PutCalendar.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_calendar * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutCalendar extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php b/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php index b485306bd..4653d05fe 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php +++ b/src/Elasticsearch/Endpoints/Ml/PutCalendarJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_calendar_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutCalendarJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php index bf9feaae4..1566cff50 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/PutDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php b/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php index 9f6c6f1f5..c5a1e9e0d 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/PutDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutFilter.php b/src/Elasticsearch/Endpoints/Ml/PutFilter.php index cfbcf4f62..fa1ec5dba 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutFilter.php +++ b/src/Elasticsearch/Endpoints/Ml/PutFilter.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_filter * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutFilter extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutJob.php b/src/Elasticsearch/Endpoints/Ml/PutJob.php index bad40d275..a38ef3807 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutJob.php +++ b/src/Elasticsearch/Endpoints/Ml/PutJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php b/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php index 5062d1e91..dfc994e69 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php +++ b/src/Elasticsearch/Endpoints/Ml/PutTrainedModel.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_trained_model * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutTrainedModel extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php b/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php index 3ec013f52..11e4fc138 100644 --- a/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php +++ b/src/Elasticsearch/Endpoints/Ml/PutTrainedModelAlias.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.put_trained_model_alias * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutTrainedModelAlias extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/ResetJob.php b/src/Elasticsearch/Endpoints/Ml/ResetJob.php index 1cfe9e947..08cbf954c 100644 --- a/src/Elasticsearch/Endpoints/Ml/ResetJob.php +++ b/src/Elasticsearch/Endpoints/Ml/ResetJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.reset_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ResetJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php b/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php index 98061af55..b9194ae8b 100644 --- a/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/RevertModelSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.revert_model_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class RevertModelSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php b/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php index 24a4b4049..e69d917f2 100644 --- a/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php +++ b/src/Elasticsearch/Endpoints/Ml/SetUpgradeMode.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.set_upgrade_mode * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class SetUpgradeMode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php index 0a739ad31..49625833a 100644 --- a/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/StartDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.start_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class StartDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php b/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php index 236c1ab3c..c1e78921f 100644 --- a/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/StartDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.start_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class StartDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php index 43597016f..80467a094 100644 --- a/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/StopDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.stop_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class StopDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php b/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php index 4719b534d..0333a79d1 100644 --- a/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/StopDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.stop_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class StopDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php b/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php index ac770a0ae..fbcab06b0 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateDataFrameAnalytics.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_data_frame_analytics * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class UpdateDataFrameAnalytics extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php b/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php index 600ba1548..c16b783f0 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateDatafeed.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_datafeed * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class UpdateDatafeed extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php b/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php index 1fcef771a..6621479bb 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateFilter.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_filter * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class UpdateFilter extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateJob.php b/src/Elasticsearch/Endpoints/Ml/UpdateJob.php index 21d9eaaee..df29f5d5b 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateJob.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class UpdateJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php b/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php index 92dc70431..9b91ee371 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/UpdateModelSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.update_model_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class UpdateModelSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php b/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php index 7eb568470..a142ed655 100644 --- a/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php +++ b/src/Elasticsearch/Endpoints/Ml/UpgradeJobSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name ml.upgrade_job_snapshot * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class UpgradeJobSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/Validate.php b/src/Elasticsearch/Endpoints/Ml/Validate.php index 2a72d74da..146aa648e 100644 --- a/src/Elasticsearch/Endpoints/Ml/Validate.php +++ b/src/Elasticsearch/Endpoints/Ml/Validate.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.validate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Validate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php b/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php index a9997e5c7..ba5377104 100644 --- a/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php +++ b/src/Elasticsearch/Endpoints/Ml/ValidateDetector.php @@ -23,7 +23,7 @@ * Elasticsearch API name ml.validate_detector * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ValidateDetector extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Monitoring/Bulk.php b/src/Elasticsearch/Endpoints/Monitoring/Bulk.php index 063f2bc59..596fb6c3d 100644 --- a/src/Elasticsearch/Endpoints/Monitoring/Bulk.php +++ b/src/Elasticsearch/Endpoints/Monitoring/Bulk.php @@ -26,7 +26,7 @@ * Elasticsearch API name monitoring.bulk * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Bulk extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Msearch.php b/src/Elasticsearch/Endpoints/Msearch.php index 08a654588..0f4090d2c 100644 --- a/src/Elasticsearch/Endpoints/Msearch.php +++ b/src/Elasticsearch/Endpoints/Msearch.php @@ -26,7 +26,7 @@ * Elasticsearch API name msearch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Msearch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/MsearchTemplate.php b/src/Elasticsearch/Endpoints/MsearchTemplate.php index 2af8f9b6a..3c98866c7 100644 --- a/src/Elasticsearch/Endpoints/MsearchTemplate.php +++ b/src/Elasticsearch/Endpoints/MsearchTemplate.php @@ -26,7 +26,7 @@ * Elasticsearch API name msearch_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class MsearchTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/ClearRepositoriesMeteringArchive.php b/src/Elasticsearch/Endpoints/Nodes/ClearRepositoriesMeteringArchive.php index 10b3515e6..9fcc03c1b 100644 --- a/src/Elasticsearch/Endpoints/Nodes/ClearRepositoriesMeteringArchive.php +++ b/src/Elasticsearch/Endpoints/Nodes/ClearRepositoriesMeteringArchive.php @@ -24,7 +24,7 @@ * Elasticsearch API name nodes.clear_repositories_metering_archive * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ClearRepositoriesMeteringArchive extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/GetRepositoriesMeteringInfo.php b/src/Elasticsearch/Endpoints/Nodes/GetRepositoriesMeteringInfo.php index b8377e359..45a205d89 100644 --- a/src/Elasticsearch/Endpoints/Nodes/GetRepositoriesMeteringInfo.php +++ b/src/Elasticsearch/Endpoints/Nodes/GetRepositoriesMeteringInfo.php @@ -24,7 +24,7 @@ * Elasticsearch API name nodes.get_repositories_metering_info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetRepositoriesMeteringInfo extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/HotThreads.php b/src/Elasticsearch/Endpoints/Nodes/HotThreads.php index c7b190cda..4ce9c42fe 100644 --- a/src/Elasticsearch/Endpoints/Nodes/HotThreads.php +++ b/src/Elasticsearch/Endpoints/Nodes/HotThreads.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.hot_threads * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class HotThreads extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/Info.php b/src/Elasticsearch/Endpoints/Nodes/Info.php index 19910822d..e68f212d4 100644 --- a/src/Elasticsearch/Endpoints/Nodes/Info.php +++ b/src/Elasticsearch/Endpoints/Nodes/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php b/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php index 00c8d0d49..8d88272a2 100644 --- a/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php +++ b/src/Elasticsearch/Endpoints/Nodes/ReloadSecureSettings.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.reload_secure_settings * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ReloadSecureSettings extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/Stats.php b/src/Elasticsearch/Endpoints/Nodes/Stats.php index b9528df08..65323e399 100644 --- a/src/Elasticsearch/Endpoints/Nodes/Stats.php +++ b/src/Elasticsearch/Endpoints/Nodes/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Nodes/Usage.php b/src/Elasticsearch/Endpoints/Nodes/Usage.php index e4a5f5676..3adaebcef 100644 --- a/src/Elasticsearch/Endpoints/Nodes/Usage.php +++ b/src/Elasticsearch/Endpoints/Nodes/Usage.php @@ -23,7 +23,7 @@ * Elasticsearch API name nodes.usage * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Usage extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/OpenPointInTime.php b/src/Elasticsearch/Endpoints/OpenPointInTime.php index c7d15ad0e..78b9ddb80 100644 --- a/src/Elasticsearch/Endpoints/OpenPointInTime.php +++ b/src/Elasticsearch/Endpoints/OpenPointInTime.php @@ -24,7 +24,7 @@ * Elasticsearch API name open_point_in_time * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class OpenPointInTime extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ping.php b/src/Elasticsearch/Endpoints/Ping.php index d2cc179d3..d48fa5b26 100644 --- a/src/Elasticsearch/Endpoints/Ping.php +++ b/src/Elasticsearch/Endpoints/Ping.php @@ -23,7 +23,7 @@ * Elasticsearch API name ping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Ping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/PutScript.php b/src/Elasticsearch/Endpoints/PutScript.php index 4f84544f5..b942a9a1c 100644 --- a/src/Elasticsearch/Endpoints/PutScript.php +++ b/src/Elasticsearch/Endpoints/PutScript.php @@ -24,7 +24,7 @@ * Elasticsearch API name put_script * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutScript extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/RankEval.php b/src/Elasticsearch/Endpoints/RankEval.php index 01b985443..7c7825e2b 100644 --- a/src/Elasticsearch/Endpoints/RankEval.php +++ b/src/Elasticsearch/Endpoints/RankEval.php @@ -23,7 +23,7 @@ * Elasticsearch API name rank_eval * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class RankEval extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Reindex.php b/src/Elasticsearch/Endpoints/Reindex.php index 3dfb6ac59..3d52561cd 100644 --- a/src/Elasticsearch/Endpoints/Reindex.php +++ b/src/Elasticsearch/Endpoints/Reindex.php @@ -23,7 +23,7 @@ * Elasticsearch API name reindex * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Reindex extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ReindexRethrottle.php b/src/Elasticsearch/Endpoints/ReindexRethrottle.php index b6daf637c..60ef36adf 100644 --- a/src/Elasticsearch/Endpoints/ReindexRethrottle.php +++ b/src/Elasticsearch/Endpoints/ReindexRethrottle.php @@ -24,7 +24,7 @@ * Elasticsearch API name reindex_rethrottle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ReindexRethrottle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/RenderSearchTemplate.php b/src/Elasticsearch/Endpoints/RenderSearchTemplate.php index ffbaf2ccc..f32df7a89 100644 --- a/src/Elasticsearch/Endpoints/RenderSearchTemplate.php +++ b/src/Elasticsearch/Endpoints/RenderSearchTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name render_search_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class RenderSearchTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php b/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php index f9513b698..276b8a6bf 100644 --- a/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/DeleteJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.delete_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/GetJobs.php b/src/Elasticsearch/Endpoints/Rollup/GetJobs.php index 89b3d8d32..60f921de0 100644 --- a/src/Elasticsearch/Endpoints/Rollup/GetJobs.php +++ b/src/Elasticsearch/Endpoints/Rollup/GetJobs.php @@ -23,7 +23,7 @@ * Elasticsearch API name rollup.get_jobs * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetJobs extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php b/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php index 2ac15b3a0..ccbf25598 100644 --- a/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php +++ b/src/Elasticsearch/Endpoints/Rollup/GetRollupCaps.php @@ -23,7 +23,7 @@ * Elasticsearch API name rollup.get_rollup_caps * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetRollupCaps extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php b/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php index 599161e93..2518b26e3 100644 --- a/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php +++ b/src/Elasticsearch/Endpoints/Rollup/GetRollupIndexCaps.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.get_rollup_index_caps * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetRollupIndexCaps extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/PutJob.php b/src/Elasticsearch/Endpoints/Rollup/PutJob.php index bfc39d701..a9775a8d7 100644 --- a/src/Elasticsearch/Endpoints/Rollup/PutJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/PutJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.put_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/Rollup.php b/src/Elasticsearch/Endpoints/Rollup/Rollup.php index edb18ad46..22f55727e 100644 --- a/src/Elasticsearch/Endpoints/Rollup/Rollup.php +++ b/src/Elasticsearch/Endpoints/Rollup/Rollup.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.rollup * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Rollup extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php b/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php index 1d07c4779..5c481df30 100644 --- a/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php +++ b/src/Elasticsearch/Endpoints/Rollup/RollupSearch.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.rollup_search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class RollupSearch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/StartJob.php b/src/Elasticsearch/Endpoints/Rollup/StartJob.php index ac9a6ab03..caca384e7 100644 --- a/src/Elasticsearch/Endpoints/Rollup/StartJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/StartJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.start_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class StartJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Rollup/StopJob.php b/src/Elasticsearch/Endpoints/Rollup/StopJob.php index 5cb6e8329..2052c6ab1 100644 --- a/src/Elasticsearch/Endpoints/Rollup/StopJob.php +++ b/src/Elasticsearch/Endpoints/Rollup/StopJob.php @@ -24,7 +24,7 @@ * Elasticsearch API name rollup.stop_job * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class StopJob extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php b/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php index 6a89b93ee..0863aa6b7 100644 --- a/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php +++ b/src/Elasticsearch/Endpoints/ScriptsPainlessExecute.php @@ -23,7 +23,7 @@ * Elasticsearch API name scripts_painless_execute * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ScriptsPainlessExecute extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Scroll.php b/src/Elasticsearch/Endpoints/Scroll.php index 9e153ae4c..0fbeab89b 100644 --- a/src/Elasticsearch/Endpoints/Scroll.php +++ b/src/Elasticsearch/Endpoints/Scroll.php @@ -23,7 +23,7 @@ * Elasticsearch API name scroll * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Scroll extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Search.php b/src/Elasticsearch/Endpoints/Search.php index 053dd7aca..9e50a5543 100644 --- a/src/Elasticsearch/Endpoints/Search.php +++ b/src/Elasticsearch/Endpoints/Search.php @@ -23,7 +23,7 @@ * Elasticsearch API name search * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Search extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchMvt.php b/src/Elasticsearch/Endpoints/SearchMvt.php index 46de3e7dc..f37f843fe 100644 --- a/src/Elasticsearch/Endpoints/SearchMvt.php +++ b/src/Elasticsearch/Endpoints/SearchMvt.php @@ -24,7 +24,7 @@ * Elasticsearch API name search_mvt * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class SearchMvt extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchShards.php b/src/Elasticsearch/Endpoints/SearchShards.php index 3e853bf38..6295bf30f 100644 --- a/src/Elasticsearch/Endpoints/SearchShards.php +++ b/src/Elasticsearch/Endpoints/SearchShards.php @@ -23,7 +23,7 @@ * Elasticsearch API name search_shards * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class SearchShards extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchTemplate.php b/src/Elasticsearch/Endpoints/SearchTemplate.php index 16bbecd64..90fefa0b0 100644 --- a/src/Elasticsearch/Endpoints/SearchTemplate.php +++ b/src/Elasticsearch/Endpoints/SearchTemplate.php @@ -23,7 +23,7 @@ * Elasticsearch API name search_template * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class SearchTemplate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php index e2fb5772d..593eef1ae 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/CacheStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name searchable_snapshots.cache_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class CacheStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php index cdccaffbc..9bb63dda7 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/ClearCache.php @@ -23,7 +23,7 @@ * Elasticsearch API name searchable_snapshots.clear_cache * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ClearCache extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php index d1f6d67df..0b6c2d57d 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/Mount.php @@ -24,7 +24,7 @@ * Elasticsearch API name searchable_snapshots.mount * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Mount extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php index d39db7499..e7ae29d1b 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/RepositoryStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name searchable_snapshots.repository_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class RepositoryStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php b/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php index 9142a66c2..ef08d5f35 100644 --- a/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php +++ b/src/Elasticsearch/Endpoints/SearchableSnapshots/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name searchable_snapshots.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/Authenticate.php b/src/Elasticsearch/Endpoints/Security/Authenticate.php index 3635b3002..6f6d0ec0a 100644 --- a/src/Elasticsearch/Endpoints/Security/Authenticate.php +++ b/src/Elasticsearch/Endpoints/Security/Authenticate.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.authenticate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Authenticate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ChangePassword.php b/src/Elasticsearch/Endpoints/Security/ChangePassword.php index b8779ee07..c8250e5e8 100644 --- a/src/Elasticsearch/Endpoints/Security/ChangePassword.php +++ b/src/Elasticsearch/Endpoints/Security/ChangePassword.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.change_password * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ChangePassword extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php b/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php index 7464f071a..a84ef4f56 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php +++ b/src/Elasticsearch/Endpoints/Security/ClearApiKeyCache.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_api_key_cache * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ClearApiKeyCache extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php b/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php index e39dd1ceb..59c13d455 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedPrivileges.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ClearCachedPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php b/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php index 2028db35c..079d9e3ee 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedRealms.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_realms * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ClearCachedRealms extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php b/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php index 332f5df5f..fcf9590af 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedRoles.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_roles * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ClearCachedRoles extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php b/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php index cf6c1ddaa..88b6bf429 100644 --- a/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php +++ b/src/Elasticsearch/Endpoints/Security/ClearCachedServiceTokens.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.clear_cached_service_tokens * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ClearCachedServiceTokens extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/CreateApiKey.php b/src/Elasticsearch/Endpoints/Security/CreateApiKey.php index c9e50799f..8c85ecde1 100644 --- a/src/Elasticsearch/Endpoints/Security/CreateApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/CreateApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.create_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class CreateApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php b/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php index b48d55f52..e0bfdab2d 100644 --- a/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php +++ b/src/Elasticsearch/Endpoints/Security/CreateServiceToken.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.create_service_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class CreateServiceToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php b/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php index 9c0a3533a..7d9c1dafd 100644 --- a/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/DeletePrivileges.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeletePrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteRole.php b/src/Elasticsearch/Endpoints/Security/DeleteRole.php index 0f3419aba..e2af97729 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteRole.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteRole.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_role * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteRole extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php b/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php index be3dedde3..f1d10b8cd 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteRoleMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_role_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteRoleMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php b/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php index fef180ed0..ca2ae6675 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteServiceToken.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_service_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteServiceToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DeleteUser.php b/src/Elasticsearch/Endpoints/Security/DeleteUser.php index 41224cd5d..b264aa3f2 100644 --- a/src/Elasticsearch/Endpoints/Security/DeleteUser.php +++ b/src/Elasticsearch/Endpoints/Security/DeleteUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.delete_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/DisableUser.php b/src/Elasticsearch/Endpoints/Security/DisableUser.php index eb99838d6..8c7e2d8cf 100644 --- a/src/Elasticsearch/Endpoints/Security/DisableUser.php +++ b/src/Elasticsearch/Endpoints/Security/DisableUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.disable_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DisableUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/EnableUser.php b/src/Elasticsearch/Endpoints/Security/EnableUser.php index 6e25fbf0a..0ea89f62e 100644 --- a/src/Elasticsearch/Endpoints/Security/EnableUser.php +++ b/src/Elasticsearch/Endpoints/Security/EnableUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.enable_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class EnableUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetApiKey.php b/src/Elasticsearch/Endpoints/Security/GetApiKey.php index 500e78cc2..e332c0fca 100644 --- a/src/Elasticsearch/Endpoints/Security/GetApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/GetApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php b/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php index 674358f96..03f425116 100644 --- a/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/GetBuiltinPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_builtin_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetBuiltinPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetPrivileges.php b/src/Elasticsearch/Endpoints/Security/GetPrivileges.php index 1d5012208..b8628a9b6 100644 --- a/src/Elasticsearch/Endpoints/Security/GetPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/GetPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetRole.php b/src/Elasticsearch/Endpoints/Security/GetRole.php index c2f6dafc8..c98e67d0a 100644 --- a/src/Elasticsearch/Endpoints/Security/GetRole.php +++ b/src/Elasticsearch/Endpoints/Security/GetRole.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_role * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetRole extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php b/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php index e8490fcc8..5f60f4b3a 100644 --- a/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php +++ b/src/Elasticsearch/Endpoints/Security/GetRoleMapping.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_role_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetRoleMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php b/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php index f6ca479f2..3c185eff2 100644 --- a/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php +++ b/src/Elasticsearch/Endpoints/Security/GetServiceAccounts.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_service_accounts * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetServiceAccounts extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php b/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php index e4dc66d73..64d0538de 100644 --- a/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php +++ b/src/Elasticsearch/Endpoints/Security/GetServiceCredentials.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.get_service_credentials * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetServiceCredentials extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetToken.php b/src/Elasticsearch/Endpoints/Security/GetToken.php index 7ce2d6187..2af480419 100644 --- a/src/Elasticsearch/Endpoints/Security/GetToken.php +++ b/src/Elasticsearch/Endpoints/Security/GetToken.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetUser.php b/src/Elasticsearch/Endpoints/Security/GetUser.php index e5c7e9960..7411fff24 100644 --- a/src/Elasticsearch/Endpoints/Security/GetUser.php +++ b/src/Elasticsearch/Endpoints/Security/GetUser.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php b/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php index 4a177c434..ad6dd59fc 100644 --- a/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/GetUserPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.get_user_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetUserPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/GrantApiKey.php b/src/Elasticsearch/Endpoints/Security/GrantApiKey.php index b6a761d9f..166a45606 100644 --- a/src/Elasticsearch/Endpoints/Security/GrantApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/GrantApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.grant_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GrantApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/HasPrivileges.php b/src/Elasticsearch/Endpoints/Security/HasPrivileges.php index d5a60876f..4cffdeedf 100644 --- a/src/Elasticsearch/Endpoints/Security/HasPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/HasPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.has_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class HasPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php b/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php index ea22d24b9..9e71edf85 100644 --- a/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php +++ b/src/Elasticsearch/Endpoints/Security/InvalidateApiKey.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.invalidate_api_key * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class InvalidateApiKey extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/InvalidateToken.php b/src/Elasticsearch/Endpoints/Security/InvalidateToken.php index 20ebd0846..4a4e45bee 100644 --- a/src/Elasticsearch/Endpoints/Security/InvalidateToken.php +++ b/src/Elasticsearch/Endpoints/Security/InvalidateToken.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.invalidate_token * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class InvalidateToken extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutPrivileges.php b/src/Elasticsearch/Endpoints/Security/PutPrivileges.php index e92b94875..ea3b671a4 100644 --- a/src/Elasticsearch/Endpoints/Security/PutPrivileges.php +++ b/src/Elasticsearch/Endpoints/Security/PutPrivileges.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.put_privileges * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutPrivileges extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutRole.php b/src/Elasticsearch/Endpoints/Security/PutRole.php index 013fda761..969883992 100644 --- a/src/Elasticsearch/Endpoints/Security/PutRole.php +++ b/src/Elasticsearch/Endpoints/Security/PutRole.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.put_role * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutRole extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php b/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php index 8deb0a9f2..86b067747 100644 --- a/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php +++ b/src/Elasticsearch/Endpoints/Security/PutRoleMapping.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.put_role_mapping * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutRoleMapping extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/PutUser.php b/src/Elasticsearch/Endpoints/Security/PutUser.php index 0562aa73d..4285b0f1e 100644 --- a/src/Elasticsearch/Endpoints/Security/PutUser.php +++ b/src/Elasticsearch/Endpoints/Security/PutUser.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.put_user * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutUser extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/QueryApiKeys.php b/src/Elasticsearch/Endpoints/Security/QueryApiKeys.php index b4d123e26..2a4fa0de4 100644 --- a/src/Elasticsearch/Endpoints/Security/QueryApiKeys.php +++ b/src/Elasticsearch/Endpoints/Security/QueryApiKeys.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.query_api_keys * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class QueryApiKeys extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php b/src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php index 77179979b..6461fd3d9 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php +++ b/src/Elasticsearch/Endpoints/Security/SamlAuthenticate.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_authenticate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class SamlAuthenticate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php b/src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php index 9c0bcf13f..b20e24857 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php +++ b/src/Elasticsearch/Endpoints/Security/SamlCompleteLogout.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_complete_logout * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class SamlCompleteLogout extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlInvalidate.php b/src/Elasticsearch/Endpoints/Security/SamlInvalidate.php index 358c186da..fbee509ff 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlInvalidate.php +++ b/src/Elasticsearch/Endpoints/Security/SamlInvalidate.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_invalidate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class SamlInvalidate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlLogout.php b/src/Elasticsearch/Endpoints/Security/SamlLogout.php index 67f2372f7..6dcd82c1d 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlLogout.php +++ b/src/Elasticsearch/Endpoints/Security/SamlLogout.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_logout * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class SamlLogout extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php b/src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php index 3de390ebb..3070ad5b2 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php +++ b/src/Elasticsearch/Endpoints/Security/SamlPrepareAuthentication.php @@ -23,7 +23,7 @@ * Elasticsearch API name security.saml_prepare_authentication * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class SamlPrepareAuthentication extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php b/src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php index d3841d215..a72c9d218 100644 --- a/src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php +++ b/src/Elasticsearch/Endpoints/Security/SamlServiceProviderMetadata.php @@ -24,7 +24,7 @@ * Elasticsearch API name security.saml_service_provider_metadata * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class SamlServiceProviderMetadata extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php b/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php index 41f36f141..890920f6b 100644 --- a/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php +++ b/src/Elasticsearch/Endpoints/Shutdown/DeleteNode.php @@ -24,7 +24,7 @@ * Elasticsearch API name shutdown.delete_node * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteNode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Shutdown/GetNode.php b/src/Elasticsearch/Endpoints/Shutdown/GetNode.php index 5ba9b0738..785d102ef 100644 --- a/src/Elasticsearch/Endpoints/Shutdown/GetNode.php +++ b/src/Elasticsearch/Endpoints/Shutdown/GetNode.php @@ -23,7 +23,7 @@ * Elasticsearch API name shutdown.get_node * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetNode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Shutdown/PutNode.php b/src/Elasticsearch/Endpoints/Shutdown/PutNode.php index b1868caaa..2d75d6b4f 100644 --- a/src/Elasticsearch/Endpoints/Shutdown/PutNode.php +++ b/src/Elasticsearch/Endpoints/Shutdown/PutNode.php @@ -24,7 +24,7 @@ * Elasticsearch API name shutdown.put_node * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutNode extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php b/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php index 72b8d981d..7c252e918 100644 --- a/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/DeleteLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name slm.delete_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php b/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php index 0187812f3..cf4bef2c2 100644 --- a/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/ExecuteLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name slm.execute_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ExecuteLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php b/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php index 3c1503bc4..867baf2a3 100644 --- a/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php +++ b/src/Elasticsearch/Endpoints/Slm/ExecuteRetention.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.execute_retention * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ExecuteRetention extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php b/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php index fcc373c8f..4b7b2737e 100644 --- a/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/GetLifecycle.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.get_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/GetStats.php b/src/Elasticsearch/Endpoints/Slm/GetStats.php index 7cd1cf0ae..a250f8eb2 100644 --- a/src/Elasticsearch/Endpoints/Slm/GetStats.php +++ b/src/Elasticsearch/Endpoints/Slm/GetStats.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.get_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/GetStatus.php b/src/Elasticsearch/Endpoints/Slm/GetStatus.php index d0f0e5b2e..9d104b613 100644 --- a/src/Elasticsearch/Endpoints/Slm/GetStatus.php +++ b/src/Elasticsearch/Endpoints/Slm/GetStatus.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.get_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php b/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php index 4a7964c7f..11720e442 100644 --- a/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php +++ b/src/Elasticsearch/Endpoints/Slm/PutLifecycle.php @@ -24,7 +24,7 @@ * Elasticsearch API name slm.put_lifecycle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutLifecycle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/Start.php b/src/Elasticsearch/Endpoints/Slm/Start.php index 10856fa89..07886e634 100644 --- a/src/Elasticsearch/Endpoints/Slm/Start.php +++ b/src/Elasticsearch/Endpoints/Slm/Start.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.start * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Start extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Slm/Stop.php b/src/Elasticsearch/Endpoints/Slm/Stop.php index a9538f22f..aea229fe8 100644 --- a/src/Elasticsearch/Endpoints/Slm/Stop.php +++ b/src/Elasticsearch/Endpoints/Slm/Stop.php @@ -23,7 +23,7 @@ * Elasticsearch API name slm.stop * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Stop extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php b/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php index 31057d335..6e05063d9 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/CleanupRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.cleanup_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class CleanupRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php b/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php index 605f1501e..839831a1f 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php +++ b/src/Elasticsearch/Endpoints/Snapshot/CloneSnapshot.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.clone * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class CloneSnapshot extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Create.php b/src/Elasticsearch/Endpoints/Snapshot/Create.php index 5dbc4966e..42940c22c 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Create.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Create.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.create * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Create extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php b/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php index af10e513f..441760501 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/CreateRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.create_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class CreateRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Delete.php b/src/Elasticsearch/Endpoints/Snapshot/Delete.php index 64089e255..584147b2b 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Delete.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Delete.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.delete * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Delete extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php b/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php index 5d2a1522a..9d650d5b3 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/DeleteRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.delete_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Get.php b/src/Elasticsearch/Endpoints/Snapshot/Get.php index 0e9915182..d3ce2b42d 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Get.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php b/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php index 76f016c32..3e0f79661 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/GetRepository.php @@ -23,7 +23,7 @@ * Elasticsearch API name snapshot.get_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php b/src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php index f584cf871..ccb32da21 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php +++ b/src/Elasticsearch/Endpoints/Snapshot/RepositoryAnalyze.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.repository_analyze * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class RepositoryAnalyze extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Restore.php b/src/Elasticsearch/Endpoints/Snapshot/Restore.php index d53dc73fe..856172e66 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Restore.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Restore.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.restore * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Restore extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/Status.php b/src/Elasticsearch/Endpoints/Snapshot/Status.php index b970a3ccb..78bc17a1c 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/Status.php +++ b/src/Elasticsearch/Endpoints/Snapshot/Status.php @@ -23,7 +23,7 @@ * Elasticsearch API name snapshot.status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Status extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php b/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php index 7ae73dcdb..f9a2a8b37 100644 --- a/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php +++ b/src/Elasticsearch/Endpoints/Snapshot/VerifyRepository.php @@ -24,7 +24,7 @@ * Elasticsearch API name snapshot.verify_repository * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class VerifyRepository extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/ClearCursor.php b/src/Elasticsearch/Endpoints/Sql/ClearCursor.php index b1385cc83..f3721c31b 100644 --- a/src/Elasticsearch/Endpoints/Sql/ClearCursor.php +++ b/src/Elasticsearch/Endpoints/Sql/ClearCursor.php @@ -23,7 +23,7 @@ * Elasticsearch API name sql.clear_cursor * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ClearCursor extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/DeleteAsync.php b/src/Elasticsearch/Endpoints/Sql/DeleteAsync.php index 22e10e142..bb672cfe0 100644 --- a/src/Elasticsearch/Endpoints/Sql/DeleteAsync.php +++ b/src/Elasticsearch/Endpoints/Sql/DeleteAsync.php @@ -24,7 +24,7 @@ * Elasticsearch API name sql.delete_async * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteAsync extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/GetAsync.php b/src/Elasticsearch/Endpoints/Sql/GetAsync.php index aaf0fa0ea..dfbed9150 100644 --- a/src/Elasticsearch/Endpoints/Sql/GetAsync.php +++ b/src/Elasticsearch/Endpoints/Sql/GetAsync.php @@ -24,7 +24,7 @@ * Elasticsearch API name sql.get_async * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetAsync extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php b/src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php index 95928774c..a0c466989 100644 --- a/src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php +++ b/src/Elasticsearch/Endpoints/Sql/GetAsyncStatus.php @@ -24,7 +24,7 @@ * Elasticsearch API name sql.get_async_status * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetAsyncStatus extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/Query.php b/src/Elasticsearch/Endpoints/Sql/Query.php index 1b4da6cbc..ac8205b69 100644 --- a/src/Elasticsearch/Endpoints/Sql/Query.php +++ b/src/Elasticsearch/Endpoints/Sql/Query.php @@ -23,7 +23,7 @@ * Elasticsearch API name sql.query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Query extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Sql/Translate.php b/src/Elasticsearch/Endpoints/Sql/Translate.php index d18f05440..ddf71b5c2 100644 --- a/src/Elasticsearch/Endpoints/Sql/Translate.php +++ b/src/Elasticsearch/Endpoints/Sql/Translate.php @@ -23,7 +23,7 @@ * Elasticsearch API name sql.translate * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Translate extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Ssl/Certificates.php b/src/Elasticsearch/Endpoints/Ssl/Certificates.php index 6aaf14e0e..ad91139ae 100644 --- a/src/Elasticsearch/Endpoints/Ssl/Certificates.php +++ b/src/Elasticsearch/Endpoints/Ssl/Certificates.php @@ -23,7 +23,7 @@ * Elasticsearch API name ssl.certificates * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Certificates extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Tasks/Cancel.php b/src/Elasticsearch/Endpoints/Tasks/Cancel.php index 65fc04681..7455379e5 100644 --- a/src/Elasticsearch/Endpoints/Tasks/Cancel.php +++ b/src/Elasticsearch/Endpoints/Tasks/Cancel.php @@ -23,7 +23,7 @@ * Elasticsearch API name tasks.cancel * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Cancel extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Tasks/Get.php b/src/Elasticsearch/Endpoints/Tasks/Get.php index ac92b4026..0f627a005 100644 --- a/src/Elasticsearch/Endpoints/Tasks/Get.php +++ b/src/Elasticsearch/Endpoints/Tasks/Get.php @@ -24,7 +24,7 @@ * Elasticsearch API name tasks.get * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Get extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Tasks/ListTasks.php b/src/Elasticsearch/Endpoints/Tasks/ListTasks.php index 0dea218a8..82a3d660d 100644 --- a/src/Elasticsearch/Endpoints/Tasks/ListTasks.php +++ b/src/Elasticsearch/Endpoints/Tasks/ListTasks.php @@ -23,7 +23,7 @@ * Elasticsearch API name tasks.list * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ListTasks extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/TermVectors.php b/src/Elasticsearch/Endpoints/TermVectors.php index 8f7ee279e..7175432d1 100644 --- a/src/Elasticsearch/Endpoints/TermVectors.php +++ b/src/Elasticsearch/Endpoints/TermVectors.php @@ -24,7 +24,7 @@ * Elasticsearch API name termvectors * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class TermVectors extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/TermsEnum.php b/src/Elasticsearch/Endpoints/TermsEnum.php index 5cb003bd1..cb28f5864 100644 --- a/src/Elasticsearch/Endpoints/TermsEnum.php +++ b/src/Elasticsearch/Endpoints/TermsEnum.php @@ -24,7 +24,7 @@ * Elasticsearch API name terms_enum * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class TermsEnum extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php b/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php index 9324b9160..e635be4e7 100644 --- a/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php +++ b/src/Elasticsearch/Endpoints/TextStructure/FindStructure.php @@ -26,7 +26,7 @@ * Elasticsearch API name text_structure.find_structure * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class FindStructure extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php b/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php index 91cd23da8..507aab270 100644 --- a/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/DeleteTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.delete_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteTransform extends AbstractEndpoint { @@ -43,7 +43,8 @@ public function getURI(): string public function getParamWhitelist(): array { return [ - 'force' + 'force', + 'timeout' ]; } diff --git a/src/Elasticsearch/Endpoints/Transform/GetTransform.php b/src/Elasticsearch/Endpoints/Transform/GetTransform.php index 1ae8de159..415165a98 100644 --- a/src/Elasticsearch/Endpoints/Transform/GetTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/GetTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name transform.get_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php b/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php index df131551d..2730a19b1 100644 --- a/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php +++ b/src/Elasticsearch/Endpoints/Transform/GetTransformStats.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.get_transform_stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetTransformStats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php b/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php index 47542a1db..829532dc5 100644 --- a/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/PreviewTransform.php @@ -23,7 +23,7 @@ * Elasticsearch API name transform.preview_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PreviewTransform extends AbstractEndpoint { @@ -41,7 +41,9 @@ public function getURI(): string public function getParamWhitelist(): array { - return []; + return [ + 'timeout' + ]; } public function getMethod(): string diff --git a/src/Elasticsearch/Endpoints/Transform/PutTransform.php b/src/Elasticsearch/Endpoints/Transform/PutTransform.php index 0b1269a9b..772803f1f 100644 --- a/src/Elasticsearch/Endpoints/Transform/PutTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/PutTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.put_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutTransform extends AbstractEndpoint { @@ -43,7 +43,8 @@ public function getURI(): string public function getParamWhitelist(): array { return [ - 'defer_validation' + 'defer_validation', + 'timeout' ]; } diff --git a/src/Elasticsearch/Endpoints/Transform/StartTransform.php b/src/Elasticsearch/Endpoints/Transform/StartTransform.php index 8f65514a2..54bc87a78 100644 --- a/src/Elasticsearch/Endpoints/Transform/StartTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/StartTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.start_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class StartTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/StopTransform.php b/src/Elasticsearch/Endpoints/Transform/StopTransform.php index 7bff6ddee..2a379ad15 100644 --- a/src/Elasticsearch/Endpoints/Transform/StopTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/StopTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.stop_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class StopTransform extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php b/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php index e7fc03810..d65b0fd58 100644 --- a/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php +++ b/src/Elasticsearch/Endpoints/Transform/UpdateTransform.php @@ -24,7 +24,7 @@ * Elasticsearch API name transform.update_transform * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class UpdateTransform extends AbstractEndpoint { @@ -43,7 +43,8 @@ public function getURI(): string public function getParamWhitelist(): array { return [ - 'defer_validation' + 'defer_validation', + 'timeout' ]; } diff --git a/src/Elasticsearch/Endpoints/Transform/UpgradeTransforms.php b/src/Elasticsearch/Endpoints/Transform/UpgradeTransforms.php index 2398491c8..92f534bad 100644 --- a/src/Elasticsearch/Endpoints/Transform/UpgradeTransforms.php +++ b/src/Elasticsearch/Endpoints/Transform/UpgradeTransforms.php @@ -23,7 +23,7 @@ * Elasticsearch API name transform.upgrade_transforms * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class UpgradeTransforms extends AbstractEndpoint { @@ -37,7 +37,8 @@ public function getURI(): string public function getParamWhitelist(): array { return [ - 'dry_run' + 'dry_run', + 'timeout' ]; } diff --git a/src/Elasticsearch/Endpoints/Update.php b/src/Elasticsearch/Endpoints/Update.php index d84af9ee4..57e3623d1 100644 --- a/src/Elasticsearch/Endpoints/Update.php +++ b/src/Elasticsearch/Endpoints/Update.php @@ -24,7 +24,7 @@ * Elasticsearch API name update * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Update extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/UpdateByQuery.php b/src/Elasticsearch/Endpoints/UpdateByQuery.php index 509e44c46..36f49b7cc 100644 --- a/src/Elasticsearch/Endpoints/UpdateByQuery.php +++ b/src/Elasticsearch/Endpoints/UpdateByQuery.php @@ -24,7 +24,7 @@ * Elasticsearch API name update_by_query * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class UpdateByQuery extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php b/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php index 983738b28..3ed8b90e9 100644 --- a/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php +++ b/src/Elasticsearch/Endpoints/UpdateByQueryRethrottle.php @@ -24,7 +24,7 @@ * Elasticsearch API name update_by_query_rethrottle * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class UpdateByQueryRethrottle extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/AckWatch.php b/src/Elasticsearch/Endpoints/Watcher/AckWatch.php index 8e2653306..773b70383 100644 --- a/src/Elasticsearch/Endpoints/Watcher/AckWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/AckWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.ack_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class AckWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php b/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php index 1509ab054..9737effb6 100644 --- a/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/ActivateWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.activate_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ActivateWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php b/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php index 3559af307..0e2d1a956 100644 --- a/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/DeactivateWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.deactivate_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeactivateWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php b/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php index dd28aa405..b349bacd7 100644 --- a/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/DeleteWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.delete_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DeleteWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php b/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php index 5d06b9ff5..40936cc6d 100644 --- a/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/ExecuteWatch.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.execute_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ExecuteWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/GetWatch.php b/src/Elasticsearch/Endpoints/Watcher/GetWatch.php index d640a20db..ffd40741c 100644 --- a/src/Elasticsearch/Endpoints/Watcher/GetWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/GetWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.get_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GetWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/PutWatch.php b/src/Elasticsearch/Endpoints/Watcher/PutWatch.php index 24d669b25..66c00788a 100644 --- a/src/Elasticsearch/Endpoints/Watcher/PutWatch.php +++ b/src/Elasticsearch/Endpoints/Watcher/PutWatch.php @@ -24,7 +24,7 @@ * Elasticsearch API name watcher.put_watch * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class PutWatch extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php b/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php index 94adf87f4..304362f4b 100644 --- a/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php +++ b/src/Elasticsearch/Endpoints/Watcher/QueryWatches.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.query_watches * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class QueryWatches extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/Start.php b/src/Elasticsearch/Endpoints/Watcher/Start.php index 67b8c0254..30b12075f 100644 --- a/src/Elasticsearch/Endpoints/Watcher/Start.php +++ b/src/Elasticsearch/Endpoints/Watcher/Start.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.start * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Start extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/Stats.php b/src/Elasticsearch/Endpoints/Watcher/Stats.php index 945b4e274..5061c000b 100644 --- a/src/Elasticsearch/Endpoints/Watcher/Stats.php +++ b/src/Elasticsearch/Endpoints/Watcher/Stats.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.stats * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Stats extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Watcher/Stop.php b/src/Elasticsearch/Endpoints/Watcher/Stop.php index 561ac96e8..75b96a745 100644 --- a/src/Elasticsearch/Endpoints/Watcher/Stop.php +++ b/src/Elasticsearch/Endpoints/Watcher/Stop.php @@ -23,7 +23,7 @@ * Elasticsearch API name watcher.stop * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Stop extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Xpack/Info.php b/src/Elasticsearch/Endpoints/Xpack/Info.php index 6b2cb6a12..498aadcf8 100644 --- a/src/Elasticsearch/Endpoints/Xpack/Info.php +++ b/src/Elasticsearch/Endpoints/Xpack/Info.php @@ -23,7 +23,7 @@ * Elasticsearch API name xpack.info * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Info extends AbstractEndpoint { diff --git a/src/Elasticsearch/Endpoints/Xpack/Usage.php b/src/Elasticsearch/Endpoints/Xpack/Usage.php index c183d634f..9d125f373 100644 --- a/src/Elasticsearch/Endpoints/Xpack/Usage.php +++ b/src/Elasticsearch/Endpoints/Xpack/Usage.php @@ -23,7 +23,7 @@ * Elasticsearch API name xpack.usage * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class Usage extends AbstractEndpoint { diff --git a/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php b/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php index 8c9158322..7dd0f6806 100644 --- a/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php +++ b/src/Elasticsearch/Namespaces/AsyncSearchNamespace.php @@ -22,7 +22,7 @@ * Class AsyncSearchNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class AsyncSearchNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/AutoscalingNamespace.php b/src/Elasticsearch/Namespaces/AutoscalingNamespace.php index 13782915c..fe3e8acc5 100644 --- a/src/Elasticsearch/Namespaces/AutoscalingNamespace.php +++ b/src/Elasticsearch/Namespaces/AutoscalingNamespace.php @@ -22,7 +22,7 @@ * Class AutoscalingNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class AutoscalingNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/CatNamespace.php b/src/Elasticsearch/Namespaces/CatNamespace.php index 73f6569fe..85d59df14 100644 --- a/src/Elasticsearch/Namespaces/CatNamespace.php +++ b/src/Elasticsearch/Namespaces/CatNamespace.php @@ -22,7 +22,7 @@ * Class CatNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class CatNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/CcrNamespace.php b/src/Elasticsearch/Namespaces/CcrNamespace.php index e150d5ac9..efd762491 100644 --- a/src/Elasticsearch/Namespaces/CcrNamespace.php +++ b/src/Elasticsearch/Namespaces/CcrNamespace.php @@ -22,7 +22,7 @@ * Class CcrNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class CcrNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/ClusterNamespace.php b/src/Elasticsearch/Namespaces/ClusterNamespace.php index 395f94923..42c282e8b 100644 --- a/src/Elasticsearch/Namespaces/ClusterNamespace.php +++ b/src/Elasticsearch/Namespaces/ClusterNamespace.php @@ -22,7 +22,7 @@ * Class ClusterNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ClusterNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php b/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php index 82dbf57bd..c3bebeee5 100644 --- a/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php +++ b/src/Elasticsearch/Namespaces/DanglingIndicesNamespace.php @@ -22,7 +22,7 @@ * Class DanglingIndicesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DanglingIndicesNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php b/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php index a44d8fb64..78d941b8d 100644 --- a/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php +++ b/src/Elasticsearch/Namespaces/DataFrameTransformDeprecatedNamespace.php @@ -22,7 +22,7 @@ * Class DataFrameTransformDeprecatedNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class DataFrameTransformDeprecatedNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/EnrichNamespace.php b/src/Elasticsearch/Namespaces/EnrichNamespace.php index 3a53b7f96..4ae146dd1 100644 --- a/src/Elasticsearch/Namespaces/EnrichNamespace.php +++ b/src/Elasticsearch/Namespaces/EnrichNamespace.php @@ -22,7 +22,7 @@ * Class EnrichNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class EnrichNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/EqlNamespace.php b/src/Elasticsearch/Namespaces/EqlNamespace.php index 875d42da0..c6012e4ea 100644 --- a/src/Elasticsearch/Namespaces/EqlNamespace.php +++ b/src/Elasticsearch/Namespaces/EqlNamespace.php @@ -22,7 +22,7 @@ * Class EqlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class EqlNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/FeaturesNamespace.php b/src/Elasticsearch/Namespaces/FeaturesNamespace.php index cf5dc9a2e..d667d354b 100644 --- a/src/Elasticsearch/Namespaces/FeaturesNamespace.php +++ b/src/Elasticsearch/Namespaces/FeaturesNamespace.php @@ -22,7 +22,7 @@ * Class FeaturesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class FeaturesNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/FleetNamespace.php b/src/Elasticsearch/Namespaces/FleetNamespace.php index cb927a0ac..373b818ce 100644 --- a/src/Elasticsearch/Namespaces/FleetNamespace.php +++ b/src/Elasticsearch/Namespaces/FleetNamespace.php @@ -22,7 +22,7 @@ * Class FleetNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class FleetNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/GraphNamespace.php b/src/Elasticsearch/Namespaces/GraphNamespace.php index 56b3901cd..0fdeb6bd1 100644 --- a/src/Elasticsearch/Namespaces/GraphNamespace.php +++ b/src/Elasticsearch/Namespaces/GraphNamespace.php @@ -22,7 +22,7 @@ * Class GraphNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class GraphNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/IlmNamespace.php b/src/Elasticsearch/Namespaces/IlmNamespace.php index 9e65cb040..c8303f21f 100644 --- a/src/Elasticsearch/Namespaces/IlmNamespace.php +++ b/src/Elasticsearch/Namespaces/IlmNamespace.php @@ -22,7 +22,7 @@ * Class IlmNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class IlmNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/IndicesNamespace.php b/src/Elasticsearch/Namespaces/IndicesNamespace.php index 6081a2e16..9707d74b0 100644 --- a/src/Elasticsearch/Namespaces/IndicesNamespace.php +++ b/src/Elasticsearch/Namespaces/IndicesNamespace.php @@ -22,7 +22,7 @@ * Class IndicesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class IndicesNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/IngestNamespace.php b/src/Elasticsearch/Namespaces/IngestNamespace.php index 569f0a5cc..b98927654 100644 --- a/src/Elasticsearch/Namespaces/IngestNamespace.php +++ b/src/Elasticsearch/Namespaces/IngestNamespace.php @@ -22,7 +22,7 @@ * Class IngestNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class IngestNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/LicenseNamespace.php b/src/Elasticsearch/Namespaces/LicenseNamespace.php index 1aa394f9b..947365408 100644 --- a/src/Elasticsearch/Namespaces/LicenseNamespace.php +++ b/src/Elasticsearch/Namespaces/LicenseNamespace.php @@ -22,7 +22,7 @@ * Class LicenseNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class LicenseNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/LogstashNamespace.php b/src/Elasticsearch/Namespaces/LogstashNamespace.php index 58e09efb5..4e8b333a3 100644 --- a/src/Elasticsearch/Namespaces/LogstashNamespace.php +++ b/src/Elasticsearch/Namespaces/LogstashNamespace.php @@ -22,7 +22,7 @@ * Class LogstashNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class LogstashNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/MigrationNamespace.php b/src/Elasticsearch/Namespaces/MigrationNamespace.php index 437f41346..024440ec0 100644 --- a/src/Elasticsearch/Namespaces/MigrationNamespace.php +++ b/src/Elasticsearch/Namespaces/MigrationNamespace.php @@ -22,7 +22,7 @@ * Class MigrationNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class MigrationNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/MlNamespace.php b/src/Elasticsearch/Namespaces/MlNamespace.php index c162fa53e..6799daac1 100644 --- a/src/Elasticsearch/Namespaces/MlNamespace.php +++ b/src/Elasticsearch/Namespaces/MlNamespace.php @@ -22,7 +22,7 @@ * Class MlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class MlNamespace extends AbstractNamespace { @@ -456,6 +456,7 @@ public function flushJob(array $params = []) * $params['duration'] = (time) The duration of the forecast * $params['expires_in'] = (time) The time interval after which the forecast expires. Expired forecasts will be deleted at the first opportunity. * $params['max_model_memory'] = (string) The max memory able to be used by the forecast. Default is 20mb. + * $params['body'] = (array) Query parameters can be specified in the body * * @param array $params Associative array of parameters * @return array @@ -464,11 +465,13 @@ public function flushJob(array $params = []) public function forecast(array $params = []) { $job_id = $this->extractArgument($params, 'job_id'); + $body = $this->extractArgument($params, 'body'); $endpointBuilder = $this->endpoints; $endpoint = $endpointBuilder('Ml\Forecast'); $endpoint->setParams($params); $endpoint->setJobId($job_id); + $endpoint->setBody($body); return $this->performRequest($endpoint); } @@ -777,6 +780,30 @@ public function getJobs(array $params = []) return $this->performRequest($endpoint); } + /** + * Gets stats for anomaly detection job model snapshot upgrades that are in progress. + * + * $params['job_id'] = (string) The ID of the job. May be a wildcard, comma separated list or `_all`. + * $params['snapshot_id'] = (string) The ID of the snapshot. May be a wildcard, comma separated list or `_all`. + * $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no jobs or no snapshots. (This includes the `_all` string.) + * + * @param array $params Associative array of parameters + * @return array + * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-get-job-model-snapshot-upgrade-stats.html + */ + public function getModelSnapshotUpgradeStats(array $params = []) + { + $job_id = $this->extractArgument($params, 'job_id'); + $snapshot_id = $this->extractArgument($params, 'snapshot_id'); + + $endpointBuilder = $this->endpoints; + $endpoint = $endpointBuilder('Ml\GetModelSnapshotUpgradeStats'); + $endpoint->setParams($params); + $endpoint->setJobId($job_id); + $endpoint->setSnapshotId($snapshot_id); + + return $this->performRequest($endpoint); + } /** * Retrieves information about model snapshots. * @@ -943,6 +970,7 @@ public function info(array $params = []) * Opens one or more anomaly detection jobs. * * $params['job_id'] = (string) The ID of the job to open + * $params['body'] = (array) Query parameters can be specified in the body * * @param array $params Associative array of parameters * @return array @@ -951,11 +979,13 @@ public function info(array $params = []) public function openJob(array $params = []) { $job_id = $this->extractArgument($params, 'job_id'); + $body = $this->extractArgument($params, 'body'); $endpointBuilder = $this->endpoints; $endpoint = $endpointBuilder('Ml\OpenJob'); $endpoint->setParams($params); $endpoint->setJobId($job_id); + $endpoint->setBody($body); return $this->performRequest($endpoint); } diff --git a/src/Elasticsearch/Namespaces/MonitoringNamespace.php b/src/Elasticsearch/Namespaces/MonitoringNamespace.php index b69f93929..9d77711ac 100644 --- a/src/Elasticsearch/Namespaces/MonitoringNamespace.php +++ b/src/Elasticsearch/Namespaces/MonitoringNamespace.php @@ -22,7 +22,7 @@ * Class MonitoringNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class MonitoringNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/NodesNamespace.php b/src/Elasticsearch/Namespaces/NodesNamespace.php index cada4d1cb..2e81800fc 100644 --- a/src/Elasticsearch/Namespaces/NodesNamespace.php +++ b/src/Elasticsearch/Namespaces/NodesNamespace.php @@ -22,7 +22,7 @@ * Class NodesNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class NodesNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/RollupNamespace.php b/src/Elasticsearch/Namespaces/RollupNamespace.php index 925785d40..610f77f26 100644 --- a/src/Elasticsearch/Namespaces/RollupNamespace.php +++ b/src/Elasticsearch/Namespaces/RollupNamespace.php @@ -22,7 +22,7 @@ * Class RollupNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class RollupNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php b/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php index 10d71503e..3c0e68a60 100644 --- a/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php +++ b/src/Elasticsearch/Namespaces/SearchableSnapshotsNamespace.php @@ -22,7 +22,7 @@ * Class SearchableSnapshotsNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class SearchableSnapshotsNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SecurityNamespace.php b/src/Elasticsearch/Namespaces/SecurityNamespace.php index b0aeb4ee0..6ac187c0c 100644 --- a/src/Elasticsearch/Namespaces/SecurityNamespace.php +++ b/src/Elasticsearch/Namespaces/SecurityNamespace.php @@ -22,7 +22,7 @@ * Class SecurityNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class SecurityNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/ShutdownNamespace.php b/src/Elasticsearch/Namespaces/ShutdownNamespace.php index 98e03604f..39f7df008 100644 --- a/src/Elasticsearch/Namespaces/ShutdownNamespace.php +++ b/src/Elasticsearch/Namespaces/ShutdownNamespace.php @@ -22,7 +22,7 @@ * Class ShutdownNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class ShutdownNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SlmNamespace.php b/src/Elasticsearch/Namespaces/SlmNamespace.php index f3f274ef4..671b239a3 100644 --- a/src/Elasticsearch/Namespaces/SlmNamespace.php +++ b/src/Elasticsearch/Namespaces/SlmNamespace.php @@ -22,7 +22,7 @@ * Class SlmNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class SlmNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SnapshotNamespace.php b/src/Elasticsearch/Namespaces/SnapshotNamespace.php index 9ad397cbf..8e95ee94f 100644 --- a/src/Elasticsearch/Namespaces/SnapshotNamespace.php +++ b/src/Elasticsearch/Namespaces/SnapshotNamespace.php @@ -22,7 +22,7 @@ * Class SnapshotNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class SnapshotNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SqlNamespace.php b/src/Elasticsearch/Namespaces/SqlNamespace.php index 92cb6cc65..848d38e31 100644 --- a/src/Elasticsearch/Namespaces/SqlNamespace.php +++ b/src/Elasticsearch/Namespaces/SqlNamespace.php @@ -22,7 +22,7 @@ * Class SqlNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class SqlNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/SslNamespace.php b/src/Elasticsearch/Namespaces/SslNamespace.php index e098070e6..dac3b4db2 100644 --- a/src/Elasticsearch/Namespaces/SslNamespace.php +++ b/src/Elasticsearch/Namespaces/SslNamespace.php @@ -22,7 +22,7 @@ * Class SslNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class SslNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/TasksNamespace.php b/src/Elasticsearch/Namespaces/TasksNamespace.php index 81c4a367c..127e19b42 100644 --- a/src/Elasticsearch/Namespaces/TasksNamespace.php +++ b/src/Elasticsearch/Namespaces/TasksNamespace.php @@ -22,7 +22,7 @@ * Class TasksNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class TasksNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/TextStructureNamespace.php b/src/Elasticsearch/Namespaces/TextStructureNamespace.php index 8710bd619..a7c49d431 100644 --- a/src/Elasticsearch/Namespaces/TextStructureNamespace.php +++ b/src/Elasticsearch/Namespaces/TextStructureNamespace.php @@ -22,7 +22,7 @@ * Class TextStructureNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class TextStructureNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/TransformNamespace.php b/src/Elasticsearch/Namespaces/TransformNamespace.php index 48c31b28f..d92e971c3 100644 --- a/src/Elasticsearch/Namespaces/TransformNamespace.php +++ b/src/Elasticsearch/Namespaces/TransformNamespace.php @@ -22,7 +22,7 @@ * Class TransformNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class TransformNamespace extends AbstractNamespace { @@ -32,6 +32,7 @@ class TransformNamespace extends AbstractNamespace * * $params['transform_id'] = (string) The id of the transform to delete * $params['force'] = (boolean) When `true`, the transform is deleted regardless of its current state. The default value is `false`, meaning that the transform must be `stopped` before it can be deleted. + * $params['timeout'] = (time) Controls the time to wait for the transform deletion * * @param array $params Associative array of parameters * @return array @@ -99,6 +100,7 @@ public function getTransformStats(array $params = []) * Previews a transform. * * $params['transform_id'] = (string) The id of the transform to preview. + * $params['timeout'] = (time) Controls the time to wait for the preview * $params['body'] = (array) The definition for the transform to preview * * @param array $params Associative array of parameters @@ -123,6 +125,7 @@ public function previewTransform(array $params = []) * * $params['transform_id'] = (string) The id of the new transform. * $params['defer_validation'] = (boolean) If validations should be deferred until transform starts, defaults to false. + * $params['timeout'] = (time) Controls the time to wait for the transform to start * $params['body'] = (array) The transform definition (Required) * * @param array $params Associative array of parameters @@ -193,6 +196,7 @@ public function stopTransform(array $params = []) * * $params['transform_id'] = (string) The id of the transform. * $params['defer_validation'] = (boolean) If validations should be deferred until transform starts, defaults to false. + * $params['timeout'] = (time) Controls the time to wait for the update * $params['body'] = (array) The update transform definition (Required) * * @param array $params Associative array of parameters @@ -216,6 +220,7 @@ public function updateTransform(array $params = []) * Upgrades all transforms. * * $params['dry_run'] = (boolean) Whether to only check for updates but don't execute + * $params['timeout'] = (time) Controls the time to wait for the upgrade * * @param array $params Associative array of parameters * @return array diff --git a/src/Elasticsearch/Namespaces/WatcherNamespace.php b/src/Elasticsearch/Namespaces/WatcherNamespace.php index 90111766f..3cc2398bb 100644 --- a/src/Elasticsearch/Namespaces/WatcherNamespace.php +++ b/src/Elasticsearch/Namespaces/WatcherNamespace.php @@ -22,7 +22,7 @@ * Class WatcherNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class WatcherNamespace extends AbstractNamespace { diff --git a/src/Elasticsearch/Namespaces/XpackNamespace.php b/src/Elasticsearch/Namespaces/XpackNamespace.php index 7e937c386..c2a8b097b 100644 --- a/src/Elasticsearch/Namespaces/XpackNamespace.php +++ b/src/Elasticsearch/Namespaces/XpackNamespace.php @@ -22,7 +22,7 @@ * Class XpackNamespace * * NOTE: this file is autogenerated using util/GenerateEndpoints.php - * and Elasticsearch 7.16.0 (6fc81662312141fe7691d7c1c91b8658ac17aa0d) + * and Elasticsearch 7.17.0 (bee86328705acaa9a6daede7140defd4d9ec56bd) */ class XpackNamespace extends AbstractNamespace { From c7591980059edda414572eb61168e21427557a86 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 3 Feb 2022 12:54:03 +0100 Subject: [PATCH 67/81] Fixed VectorTile YAML tests quoting y --- util/YamlTests.php | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/util/YamlTests.php b/util/YamlTests.php index 1da51231e..533b1d345 100644 --- a/util/YamlTests.php +++ b/util/YamlTests.php @@ -126,6 +126,14 @@ public function __construct(string $testDir, string $testOutput, string $esVersi self::$minorEsVersion = sprintf("%s.%s", $major, $minor); } + /** + * @see https://www.php.net/manual/en/function.yaml-parse-file.php#124980 + */ + private function quoteYInYamlFile(string $file) + { + return str_replace (' y: ', ' "y": ', file_get_contents($file)); + } + private function getAllTests(string $dir): array { $it = new RecursiveDirectoryIterator($dir); @@ -133,11 +141,16 @@ private function getAllTests(string $dir): array // Iterate over the Yaml test files foreach (new RecursiveIteratorIterator($it) as $file) { if ($file->getExtension() === 'yml') { - $test = yaml_parse_file($file->getPathname(), -1, $ndocs, [ - YAML_MAP_TAG => function($value, $tag, $flags) { - return empty($value) ? new stdClass : $value; - } - ]); + $test = yaml_parse( + $this->quoteYInYamlFile($file->getPathname()), + -1, + $ndocs, + [ + YAML_MAP_TAG => function($value, $tag, $flags) { + return empty($value) ? new stdClass : $value; + } + ] + ); if (false === $test) { throw new Exception(sprintf( "YAML parse error file %s", From 1597220108ac24dc86667b7f585d8c5a703e8522 Mon Sep 17 00:00:00 2001 From: Tommy Lee Date: Thu, 3 Feb 2022 08:19:06 -0500 Subject: [PATCH 68/81] Fixing typo in connecting.asciidoc (#1166) This commit fixes a typo in the asciidoc. Noticed this while browsing documentation on website. --- docs/connecting.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/connecting.asciidoc b/docs/connecting.asciidoc index bfca383c9..ae70256e5 100644 --- a/docs/connecting.asciidoc +++ b/docs/connecting.asciidoc @@ -1,4 +1,4 @@ -[[connceting]] +[[connecting]] == Connecting This page contains the information you need to connect and use the Client with From dcb11e369fe279d0443e993e4899e94eb772d5d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ram=C5=ABnas=20Dronga?= Date: Thu, 3 Feb 2022 14:57:43 +0200 Subject: [PATCH 69/81] add missing BC for version 6.8 (#1173) --- BREAKING_CHANGES.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BREAKING_CHANGES.md b/BREAKING_CHANGES.md index 52a3baa20..a5cf68e45 100644 --- a/BREAKING_CHANGES.md +++ b/BREAKING_CHANGES.md @@ -19,6 +19,10 @@ - Added type hints and return type declarations where possible [#897](https://github.com/elastic/elasticsearch-php/pull/897) +# 6.8 + +- Method taskList() renamed to list() in TasksNamespace + # 6.7 - `{type}` part in `indices.put_mapping` API is not required anymore, see new specification [here](https://github.com/elastic/elasticsearch/blob/v6.7.0/rest-api-spec/src/main/resources/rest-api-spec/api/indices.put_mapping.json) From 1c0d84bb007fb527fbd04ab8f5a1baaa0143c45a Mon Sep 17 00:00:00 2001 From: Toby Sutor <55087308+toby-sutor@users.noreply.github.com> Date: Wed, 2 Feb 2022 12:02:11 +0100 Subject: [PATCH 70/81] Recommend simpleConnectionPool for Cloud (#1193) As per https://github.com/elastic/elasticsearch-php/issues/918#issuecomment-511337920 and https://elastic.slack.com/archives/CH37CF39S/p1643707941052409 we recommend using the `simpleConnectionPool` when there is a proxy or load balancer in place. This applies to Elasticsearch Service and ECE (Cloud). Hence the comments need to be updated. --- docs/connection-pool.asciidoc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/connection-pool.asciidoc b/docs/connection-pool.asciidoc index 962e56738..1dd1ef1eb 100644 --- a/docs/connection-pool.asciidoc +++ b/docs/connection-pool.asciidoc @@ -78,8 +78,10 @@ The `SimpleConnectionPool` returns the next node as specified by the selector; it does not track node conditions. It returns nodes either they are dead or alive. It is a simple pool of static hosts. -The `SimpleConnectionPool` is not recommended for routine use but it may be a -useful debugging tool. +The `SimpleConnectionPool` is recommended where the Elasticsearch deployment +is located behnd a (reverse-) proxy or load balancer, where the individual +Elasticsearch nodes are not visible to the client. This should be used when +running Elasticsearch deployments on Cloud. To use the `SimpleConnectionPool`: From 1890f9d7fde076b5a3ddcf579a802af05b2e781b Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 3 Feb 2022 14:40:04 +0100 Subject: [PATCH 71/81] Updated BREAKING CHANGES with psr/log v3 support --- BREAKING_CHANGES.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/BREAKING_CHANGES.md b/BREAKING_CHANGES.md index a5cf68e45..d162adc7d 100644 --- a/BREAKING_CHANGES.md +++ b/BREAKING_CHANGES.md @@ -1,3 +1,8 @@ +# 7.17 + +- We changed the signature of `Elasticsearch\Common\EmptyLogger::log` adding the `void` return type. + This change has been needed to support psr/log v3. + # 7.4 - Using a deprecated parameter is notified triggering a [E_USER_DEPRECATED](https://www.php.net/manual/en/errorfunc.constants.php) From 4b2f5e3a94b5d9d05c2bdd07127d9da9b1897cdf Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 18 Aug 2022 09:24:50 +0200 Subject: [PATCH 72/81] Removed the usage of getenv, fixed #1237 (#1247) * Removed the usage of getenv, fixed #1237 * Added getenv() as fallback condition --- src/Elasticsearch/ClientBuilder.php | 4 +++- tests/Elasticsearch/Tests/ClientIntegrationTest.php | 5 ++++- tests/Elasticsearch/Tests/Utility.php | 4 +++- util/build_tests.php | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/src/Elasticsearch/ClientBuilder.php b/src/Elasticsearch/ClientBuilder.php index e643b878e..e4a162d98 100644 --- a/src/Elasticsearch/ClientBuilder.php +++ b/src/Elasticsearch/ClientBuilder.php @@ -637,7 +637,9 @@ public function build(): Client if (! isset($this->connectionParams['client']['headers'])) { $this->connectionParams['client']['headers'] = []; } - $apiVersioning = getenv('ELASTIC_CLIENT_APIVERSIONING'); + $apiVersioning = $_SERVER['ELASTIC_CLIENT_APIVERSIONING'] + ?? $_ENV['ELASTIC_CLIENT_APIVERSIONING'] + ?? getenv('ELASTIC_CLIENT_APIVERSIONING'); if (! isset($this->connectionParams['client']['headers']['Content-Type'])) { if ($apiVersioning === 'true' || $apiVersioning === '1') { $this->connectionParams['client']['headers']['Content-Type'] = ['application/vnd.elasticsearch+json;compatible-with=7']; diff --git a/tests/Elasticsearch/Tests/ClientIntegrationTest.php b/tests/Elasticsearch/Tests/ClientIntegrationTest.php index bd559e18d..01b38292b 100644 --- a/tests/Elasticsearch/Tests/ClientIntegrationTest.php +++ b/tests/Elasticsearch/Tests/ClientIntegrationTest.php @@ -59,7 +59,10 @@ private function getClient(): Client ->setHosts([$this->host]) ->setLogger($this->logger); - if (getenv('TEST_SUITE') === 'platinum') { + $testSuite = $_SERVER['TEST_SUITE'] + ?? $_ENV['TEST_SUITE'] + ?? getenv('TEST_SUITE'); + if ($testSuite === 'platinum') { $client->setSSLVerification(false); } return $client->build(); diff --git a/tests/Elasticsearch/Tests/Utility.php b/tests/Elasticsearch/Tests/Utility.php index 15e2609c6..9321f87d4 100644 --- a/tests/Elasticsearch/Tests/Utility.php +++ b/tests/Elasticsearch/Tests/Utility.php @@ -60,7 +60,9 @@ class Utility */ public static function getHost(): ?string { - $url = getenv('ELASTICSEARCH_URL'); + $url = $_SERVER['ELASTICSEARCH_URL'] + ?? $_ENV['ELASTICSEARCH_URL'] + ?? getenv('ELASTICSEARCH_URL'); if (false !== $url) { return $url; } diff --git a/util/build_tests.php b/util/build_tests.php index 879bfe605..292e1a230 100644 --- a/util/build_tests.php +++ b/util/build_tests.php @@ -43,7 +43,7 @@ exit(1); } -$stack = getenv('TEST_SUITE'); +$stack = $_SERVER['TEST_SUITE'] ?? $_ENV['TEST_SUITE']; printf ("*****************************************\n"); printf ("** Bulding YAML tests for %s suite\n", strtoupper($stack)); printf ("*****************************************\n"); From e1ed999594a69f8579e1ac9b680843d8f5147525 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 22 Sep 2022 15:54:35 +0200 Subject: [PATCH 73/81] Fixed float conversion issue in YAML tests --- util/YamlTests.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/YamlTests.php b/util/YamlTests.php index 533b1d345..2e933ab57 100644 --- a/util/YamlTests.php +++ b/util/YamlTests.php @@ -327,7 +327,7 @@ public static function render(string $fileName, array $params = []): string } elseif ($value instanceof \stdClass) { $value = 'new \stdClass'; } elseif (is_numeric($value)) { - $value = (string) $value; + $value = var_export($value, true); } $output = str_replace($name, $value, $output); } From 5def762ef55711e8cefa65e14ffd9e6b6494f893 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Fri, 23 Sep 2022 16:41:09 +0200 Subject: [PATCH 74/81] Fix for StickyRoundRobinSelector starts with second host (#1253) * Improved the StickyRoundRobinSelector test * Fixed StickyRoundRobinSelector starts with second host --- src/Elasticsearch/Connections/Connection.php | 2 +- .../Elasticsearch/Tests/ClientBuilderTest.php | 37 +++++++++++++++++++ .../StickyRoundRobinSelectorTest.php | 13 ++++--- 3 files changed, 45 insertions(+), 7 deletions(-) diff --git a/src/Elasticsearch/Connections/Connection.php b/src/Elasticsearch/Connections/Connection.php index 1542c9b6c..e13501daf 100644 --- a/src/Elasticsearch/Connections/Connection.php +++ b/src/Elasticsearch/Connections/Connection.php @@ -99,7 +99,7 @@ class Connection implements ConnectionInterface /** * @var bool */ - protected $isAlive = false; + protected $isAlive = true; /** * @var float diff --git a/tests/Elasticsearch/Tests/ClientBuilderTest.php b/tests/Elasticsearch/Tests/ClientBuilderTest.php index 7f754ad38..c44dadc8c 100644 --- a/tests/Elasticsearch/Tests/ClientBuilderTest.php +++ b/tests/Elasticsearch/Tests/ClientBuilderTest.php @@ -18,11 +18,16 @@ namespace Elasticsearch\Tests; +use CurlHandle; use Elasticsearch\Client; use Elasticsearch\ClientBuilder; use Elasticsearch\Common\Exceptions\ElasticsearchException; use Elasticsearch\Common\Exceptions\RuntimeException; +use Elasticsearch\ConnectionPool\Selectors\StickyRoundRobinSelector; +use Elasticsearch\ConnectionPool\StaticNoPingConnectionPool; use Elasticsearch\Tests\ClientBuilder\DummyLogger; +use GuzzleHttp\Ring\Client\CurlHandler; +use GuzzleHttp\Ring\Client\MockHandler; use PHPUnit\Framework\TestCase; class ClientBuilderTest extends TestCase @@ -376,4 +381,36 @@ public function testFromConfigWithIncludePortInHostHeader() $this->assertEquals($url, $request['request']['headers']['Host'][0]); } } + + /** + * @see https://github.com/elastic/elasticsearch-php/issues/1242 + */ + public function testRandomizedHostsDisableWithStickRoundRobinSelectorSelectFirstNode() + { + $hosts = ['one', 'two', 'three']; + $data = '{"foo":"bar}'; + + $handler = new MockHandler([ + 'status' => 200, + 'transfer_stats' => [ + 'total_time' => 100 + ], + 'body' => fopen('data:text/plain,'.urlencode($data), 'rb'), + 'effective_url' => 'one' + ]); + + $client = ClientBuilder::create() + ->setHosts($hosts) + ->setHandler($handler) + ->setSelector(StickyRoundRobinSelector::class) + ->setConnectionPool(StaticNoPingConnectionPool::class, ['randomizeHosts' => false]) + ->build(); + + try { + $result = $client->info(); + } catch (ElasticsearchException $e) { + $request = $client->transport->getLastConnection()->getLastRequestInfo(); + $this->assertEquals('one', $request['request']['headers']['Host'][0]); + } + } } diff --git a/tests/Elasticsearch/Tests/ConnectionPool/Selectors/StickyRoundRobinSelectorTest.php b/tests/Elasticsearch/Tests/ConnectionPool/Selectors/StickyRoundRobinSelectorTest.php index d2c7cc952..08cc7d04a 100644 --- a/tests/Elasticsearch/Tests/ConnectionPool/Selectors/StickyRoundRobinSelectorTest.php +++ b/tests/Elasticsearch/Tests/ConnectionPool/Selectors/StickyRoundRobinSelectorTest.php @@ -29,6 +29,11 @@ */ class StickyRoundRobinSelectorTest extends \PHPUnit\Framework\TestCase { + public function setUp(): void + { + $this->roundRobin = new Elasticsearch\ConnectionPool\Selectors\StickyRoundRobinSelector(); + } + public function tearDown(): void { m::close(); @@ -36,8 +41,6 @@ public function tearDown(): void public function testTenConnections() { - $roundRobin = new Elasticsearch\ConnectionPool\Selectors\StickyRoundRobinSelector(); - $mockConnections = []; $mockConnections[] = m::mock(ConnectionInterface::class) ->shouldReceive('isAlive')->times(16)->andReturn(true)->getMock(); @@ -47,7 +50,7 @@ public function testTenConnections() } foreach (range(0, 15) as $index) { - $retConnection = $roundRobin->select($mockConnections); + $retConnection = $this->roundRobin->select($mockConnections); $this->assertSame($mockConnections[0], $retConnection); } @@ -55,8 +58,6 @@ public function testTenConnections() public function testTenConnectionsFirstDies() { - $roundRobin = new Elasticsearch\ConnectionPool\Selectors\StickyRoundRobinSelector(); - $mockConnections = []; $mockConnections[] = m::mock(ConnectionInterface::class) ->shouldReceive('isAlive')->once()->andReturn(false)->getMock(); @@ -69,7 +70,7 @@ public function testTenConnectionsFirstDies() } foreach (range(0, 15) as $index) { - $retConnection = $roundRobin->select($mockConnections); + $retConnection = $this->roundRobin->select($mockConnections); $this->assertSame($mockConnections[1], $retConnection); } From f1b8918f411b837ce5f6325e829a73518fd50367 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Fri, 30 Sep 2022 14:28:55 +0200 Subject: [PATCH 75/81] Updated VERSION to 7.17.1 --- src/Elasticsearch/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Elasticsearch/Client.php b/src/Elasticsearch/Client.php index 904da7ac1..01ca239fe 100644 --- a/src/Elasticsearch/Client.php +++ b/src/Elasticsearch/Client.php @@ -69,7 +69,7 @@ */ class Client { - const VERSION = '7.17.0'; + const VERSION = '7.17.1'; /** * @var Transport From f1b7273879faaaf37e1e303dea0468575189422c Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 6 Oct 2022 13:48:02 +0200 Subject: [PATCH 76/81] Replace master with {branch} in docs --- docs/community.asciidoc | 2 +- docs/release-notes.asciidoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/community.asciidoc b/docs/community.asciidoc index 39511e02e..c34f65406 100644 --- a/docs/community.asciidoc +++ b/docs/community.asciidoc @@ -151,6 +151,6 @@ _____________________ This helper is a light library which wrap the official client elasticsearch-php. It will help you to manage your ES Indices with no downtime. This helper implements the philosophy described in the -https://www.elastic.co/guide/en/elasticsearch/guide/master/index-aliases.html[official documentation] +https://www.elastic.co/guide/en/elasticsearch/guide/{branch}/index-aliases.html[official documentation] which can be summarized in a few words : *use alias instead of index directly*. _____________________ diff --git a/docs/release-notes.asciidoc b/docs/release-notes.asciidoc index 9cb6e3616..f4efe846b 100644 --- a/docs/release-notes.asciidoc +++ b/docs/release-notes.asciidoc @@ -255,7 +255,7 @@ the phpdoc section (for example, https://github.com/elastic/elasticsearch-php/blob/master/src/Elasticsearch/Client.php[$client->rankEval()]). For more information read the - https://www.elastic.co/guide/en/elasticsearch/client/php-api/master/experimental_and_beta_apis.html[experimental and beta APIs] + https://www.elastic.co/guide/en/elasticsearch/client/php-api/{branch}/experimental_and_beta_apis.html[experimental and beta APIs] section in the documentation. https://github.com/elastic/elasticsearch-php/pull/966[#966] * Removed `AlreadyExpiredException` since it has been removed From 85e86965864e4777cd726ac90faa96bf52fe35c4 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 6 Oct 2022 15:27:04 +0200 Subject: [PATCH 77/81] Reverted {branch} changes in docs --- docs/community.asciidoc | 2 +- docs/release-notes.asciidoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/community.asciidoc b/docs/community.asciidoc index c34f65406..39511e02e 100644 --- a/docs/community.asciidoc +++ b/docs/community.asciidoc @@ -151,6 +151,6 @@ _____________________ This helper is a light library which wrap the official client elasticsearch-php. It will help you to manage your ES Indices with no downtime. This helper implements the philosophy described in the -https://www.elastic.co/guide/en/elasticsearch/guide/{branch}/index-aliases.html[official documentation] +https://www.elastic.co/guide/en/elasticsearch/guide/master/index-aliases.html[official documentation] which can be summarized in a few words : *use alias instead of index directly*. _____________________ diff --git a/docs/release-notes.asciidoc b/docs/release-notes.asciidoc index f4efe846b..9cb6e3616 100644 --- a/docs/release-notes.asciidoc +++ b/docs/release-notes.asciidoc @@ -255,7 +255,7 @@ the phpdoc section (for example, https://github.com/elastic/elasticsearch-php/blob/master/src/Elasticsearch/Client.php[$client->rankEval()]). For more information read the - https://www.elastic.co/guide/en/elasticsearch/client/php-api/{branch}/experimental_and_beta_apis.html[experimental and beta APIs] + https://www.elastic.co/guide/en/elasticsearch/client/php-api/master/experimental_and_beta_apis.html[experimental and beta APIs] section in the documentation. https://github.com/elastic/elasticsearch-php/pull/966[#966] * Removed `AlreadyExpiredException` since it has been removed From ea074f280be5b2ee8136d64020fa4ae5bba6933a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Istv=C3=A1n=20Zolt=C3=A1n=20Szab=C3=B3?= Date: Mon, 13 Feb 2023 09:11:38 +0100 Subject: [PATCH 78/81] [7.17][DOCS] References shared/version and adds doctype to index file (#1280) (#1290) * [DOCS] References shared/version and adds doctype to index file (#1280) * [DOCS] Adds doctype to index file. * [DOCS] Adds shared/versions to include in index. * [DOCS] Fixes link in community integrations. * Apply suggestions from code review --- docs/community.asciidoc | 2 +- docs/index.asciidoc | 3 +++ docs/release-notes.asciidoc | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/community.asciidoc b/docs/community.asciidoc index 39511e02e..f086dfbba 100644 --- a/docs/community.asciidoc +++ b/docs/community.asciidoc @@ -151,6 +151,6 @@ _____________________ This helper is a light library which wrap the official client elasticsearch-php. It will help you to manage your ES Indices with no downtime. This helper implements the philosophy described in the -https://www.elastic.co/guide/en/elasticsearch/guide/master/index-aliases.html[official documentation] +https://www.elastic.co/guide/en/elasticsearch/guide/current/index-aliases.html[official documentation] which can be summarized in a few words : *use alias instead of index directly*. _____________________ diff --git a/docs/index.asciidoc b/docs/index.asciidoc index 5d91df689..c41e38ecf 100644 --- a/docs/index.asciidoc +++ b/docs/index.asciidoc @@ -1,6 +1,9 @@ = Elasticsearch PHP Client +:doctype: book + +include::{docs-root}/shared/versions/stack/{source_branch}.asciidoc[] include::{asciidoc-dir}/../../shared/attributes.asciidoc[] include::overview.asciidoc[] diff --git a/docs/release-notes.asciidoc b/docs/release-notes.asciidoc index 9cb6e3616..a61848582 100644 --- a/docs/release-notes.asciidoc +++ b/docs/release-notes.asciidoc @@ -255,7 +255,7 @@ the phpdoc section (for example, https://github.com/elastic/elasticsearch-php/blob/master/src/Elasticsearch/Client.php[$client->rankEval()]). For more information read the - https://www.elastic.co/guide/en/elasticsearch/client/php-api/master/experimental_and_beta_apis.html[experimental and beta APIs] + https://www.elastic.co/guide/en/elasticsearch/client/php-api/current/experimental_and_beta_apis.html[experimental and beta APIs] section in the documentation. https://github.com/elastic/elasticsearch-php/pull/966[#966] * Removed `AlreadyExpiredException` since it has been removed From 6e2967b110ca5156f988697449a7f486d71e02e0 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 19 Apr 2023 10:06:15 +0200 Subject: [PATCH 79/81] Added ELASTIC_CLIENT_URL_PLUS_AS_SPACE env variable for URL encode (#1303) * Added ES_URL_PLUS_AS_SPACE env variable for URL encode * Updated phpstan + fixed minor issues * Changed env variable in ELASTIC_CLIENT_URL_PLUS_AS_SPACE * Refactored the test job for github action * Removed duplicate task * Revert ELASTICSEARCH_URL parameter * Added PHP 8.2 in CI --- .ci/test-matrix.yml | 1 + .github/workflows/test.yml | 25 +++--- composer.json | 7 +- phpstan.neon | 1 + src/Elasticsearch/Connections/Connection.php | 2 +- .../Endpoints/AbstractEndpoint.php | 10 +-- .../Serializers/SmartSerializer.php | 4 +- src/Elasticsearch/Utility.php | 47 +++++++++++ .../Selectors/RoundRobinSelectorTest.php | 2 +- .../StickyRoundRobinSelectorTest.php | 5 ++ .../Tests/Serializers/SmartSerializerTest.php | 6 +- tests/Elasticsearch/Tests/TransportTest.php | 21 +++++ tests/Elasticsearch/Tests/UtilityTest.php | 77 +++++++++++++++++++ 13 files changed, 180 insertions(+), 28 deletions(-) create mode 100644 src/Elasticsearch/Utility.php create mode 100644 tests/Elasticsearch/Tests/UtilityTest.php diff --git a/.ci/test-matrix.yml b/.ci/test-matrix.yml index 466decd0f..b9248f190 100644 --- a/.ci/test-matrix.yml +++ b/.ci/test-matrix.yml @@ -3,6 +3,7 @@ STACK_VERSION: - 7.17-SNAPSHOT PHP_VERSION: + - 8.2-cli - 8.1-cli - 8.0-cli - 7.4-cli diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 95a8291b6..a4704fb5f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,43 +9,38 @@ jobs: strategy: matrix: - php-version: [7.3, 7.4, 8.0, 8.1] + php-version: [7.3, 7.4, 8.0, 8.1, 8.2] os: [ubuntu-latest] es-version: [7.17-SNAPSHOT] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Use PHP ${{ matrix.php-version }} uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-version }} - extensions: yaml + extensions: yaml, zip, curl + coverage: none env: COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} - + - name: Get composer cache directory id: composercache - run: echo "::set-output name=dir::$(composer config cache-files-dir)" + run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ steps.composercache.outputs.dir }} - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} - restore-keys: ${{ runner.os }}-composer- + key: ${{ runner.os }}-php-${{ matrix.php-version }}-${{ hashFiles('**/composer.json') }} + restore-keys: ${{ runner.os }}-php-${{ matrix.php-version }}- - name: Install dependencies - if: ${{ matrix.php-version != '8.0' }} run: | composer install --prefer-dist - - name: ignore ignore-platform-reqs if it is using php 8 - if: ${{ matrix.php-version == '8.0' }} - run: | - composer install --prefer-dist --ignore-platform-reqs - - name: PHP Coding Standards run: | composer run-script phpcs @@ -68,7 +63,7 @@ jobs: sudo sysctl -w vm.max_map_count=262144 - name: Runs Elasticsearch ${{ matrix.es-version }} - uses: elastic/elastic-github-actions/elasticsearch@master + uses: elastic/elastic-github-actions/elasticsearch@trial-license with: stack-version: ${{ matrix.es-version }} diff --git a/composer.json b/composer.json index c49a8113f..db3830754 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,7 @@ "ext-yaml": "*", "ext-zip": "*", "mockery/mockery": "^1.2", - "phpstan/phpstan": "^0.12", + "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^9.3", "squizlabs/php_codesniffer": "^3.4", "symfony/finder": "~4.0" @@ -50,7 +50,10 @@ } }, "config": { - "sort-packages": true + "sort-packages": true, + "allow-plugins": { + "php-http/discovery": true + } }, "scripts": { "phpcs": [ diff --git a/phpstan.neon b/phpstan.neon index 8d3ed4325..4aa9e4c09 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -7,3 +7,4 @@ parameters: - '#Constant JSON_THROW_ON_ERROR not found#' - '#Caught class JsonException not found#' - '#Call to method getCode\(\) on an unknown class JsonException#' + - '#Variable \$\w+ in isset\(\) always exists and is not nullable#' diff --git a/src/Elasticsearch/Connections/Connection.php b/src/Elasticsearch/Connections/Connection.php index e13501daf..acec0d002 100644 --- a/src/Elasticsearch/Connections/Connection.php +++ b/src/Elasticsearch/Connections/Connection.php @@ -372,7 +372,7 @@ function ($value) { $uri = $this->path . $uri; } - return $uri ?? ''; + return $uri; } public function getHeaders(): array diff --git a/src/Elasticsearch/Endpoints/AbstractEndpoint.php b/src/Elasticsearch/Endpoints/AbstractEndpoint.php index 489cde5ce..7934013b4 100644 --- a/src/Elasticsearch/Endpoints/AbstractEndpoint.php +++ b/src/Elasticsearch/Endpoints/AbstractEndpoint.php @@ -20,9 +20,7 @@ use Elasticsearch\Common\Exceptions\UnexpectedValueException; use Elasticsearch\Serializers\SerializerInterface; -use Elasticsearch\Transport; -use Exception; -use GuzzleHttp\Ring\Future\FutureArrayInterface; +use Elasticsearch\Utility; abstract class AbstractEndpoint { @@ -127,7 +125,7 @@ public function setIndex($index) $index = implode(",", $index); } - $this->index = urlencode($index); + $this->index = Utility::urlencode($index); return $this; } @@ -155,7 +153,7 @@ public function setType(?string $type) $type = implode(",", $type); } - $this->type = urlencode($type); + $this->type = Utility::urlencode($type); return $this; } @@ -175,7 +173,7 @@ public function setId($docID) $docID = (string) $docID; } - $this->id = urlencode($docID); + $this->id = Utility::urlencode($docID); return $this; } diff --git a/src/Elasticsearch/Serializers/SmartSerializer.php b/src/Elasticsearch/Serializers/SmartSerializer.php index 3a79ff188..f9750b0a4 100644 --- a/src/Elasticsearch/Serializers/SmartSerializer.php +++ b/src/Elasticsearch/Serializers/SmartSerializer.php @@ -93,10 +93,10 @@ private function decode(?string $data): array $result = json_decode($data, true, 512, JSON_THROW_ON_ERROR); return $result; } catch (JsonException $e) { - throw new JsonErrorException($e->getCode(), $data, $result ?? []); + throw new JsonErrorException($e->getCode(), $data, []); } } - throw new JsonErrorException($e->getCode(), $data, $result ?? []); + throw new JsonErrorException($e->getCode(), $data, []); } } diff --git a/src/Elasticsearch/Utility.php b/src/Elasticsearch/Utility.php new file mode 100644 index 000000000..5227c5d03 --- /dev/null +++ b/src/Elasticsearch/Utility.php @@ -0,0 +1,47 @@ +roundRobin = new Elasticsearch\ConnectionPool\Selectors\StickyRoundRobinSelector(); diff --git a/tests/Elasticsearch/Tests/Serializers/SmartSerializerTest.php b/tests/Elasticsearch/Tests/Serializers/SmartSerializerTest.php index 96ad30c56..2592a3ad9 100644 --- a/tests/Elasticsearch/Tests/Serializers/SmartSerializerTest.php +++ b/tests/Elasticsearch/Tests/Serializers/SmartSerializerTest.php @@ -20,7 +20,6 @@ use Elasticsearch\Common\Exceptions\Serializer\JsonErrorException; use Elasticsearch\Serializers\SmartSerializer; -use Mockery as m; use PHPUnit\Framework\TestCase; /** @@ -29,6 +28,11 @@ */ class SmartSerializerTest extends TestCase { + /** + * @var SmartSerializer + */ + protected $serializer; + public function setUp(): void { $this->serializer = new SmartSerializer(); diff --git a/tests/Elasticsearch/Tests/TransportTest.php b/tests/Elasticsearch/Tests/TransportTest.php index 7d8f4a59f..56a5b528b 100644 --- a/tests/Elasticsearch/Tests/TransportTest.php +++ b/tests/Elasticsearch/Tests/TransportTest.php @@ -32,6 +32,27 @@ class TransportTest extends TestCase { + /** + * @var LoggerInterface + */ + protected $logger; + /** + * @var LoggerInterface + */ + protected $trace; + /** + * @var SerializerInterface + */ + protected $serializer; + /** + * @var AbstractConnectionPool + */ + protected $connectionPool; + /** + * @var Connection + */ + protected $connection; + public function setUp(): void { $this->logger = $this->createMock(LoggerInterface::class); diff --git a/tests/Elasticsearch/Tests/UtilityTest.php b/tests/Elasticsearch/Tests/UtilityTest.php new file mode 100644 index 000000000..ec31121ec --- /dev/null +++ b/tests/Elasticsearch/Tests/UtilityTest.php @@ -0,0 +1,77 @@ +assertEquals('true', Utility::getEnv(Utility::ENV_URL_PLUS_AS_SPACE)); + } + + public function testGetEnvWithDollarEnv() + { + $_ENV[Utility::ENV_URL_PLUS_AS_SPACE] = 'true'; + $this->assertEquals('true', Utility::getEnv(Utility::ENV_URL_PLUS_AS_SPACE)); + } + + public function testGetEnvWithPutEnv() + { + putenv(Utility::ENV_URL_PLUS_AS_SPACE . '=true'); + $this->assertEquals('true', Utility::getEnv(Utility::ENV_URL_PLUS_AS_SPACE)); + } + + public function testUrlencodeWithDefault() + { + $url = Utility::urlencode('bar baz'); + $this->assertEquals('bar+baz', $url); + } + + public function testUrlencodeWithDollarServer() + { + $_SERVER[Utility::ENV_URL_PLUS_AS_SPACE] = 'true'; + $url = Utility::urlencode('bar baz'); + $this->assertEquals('bar%20baz', $url); + } + + public function testUrlencodeWithDollarEnv() + { + $_ENV[Utility::ENV_URL_PLUS_AS_SPACE] = 'true'; + $url = Utility::urlencode('bar baz'); + $this->assertEquals('bar%20baz', $url); + } + + public function testUrlencodeWithPutEnv() + { + putenv(Utility::ENV_URL_PLUS_AS_SPACE . '=true'); + $url = Utility::urlencode('bar baz'); + $this->assertEquals('bar%20baz', $url); + } +} From b35ec5e777046e687e476624b8a19bab2e31fdb7 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 19 Apr 2023 12:59:37 +0200 Subject: [PATCH 80/81] Changed the settings of ELASTIC_CLIENT_URL_PLUS_AS_SPACE --- src/Elasticsearch/Utility.php | 7 ++--- tests/Elasticsearch/Tests/UtilityTest.php | 33 ++++++++++++++++++----- 2 files changed, 31 insertions(+), 9 deletions(-) diff --git a/src/Elasticsearch/Utility.php b/src/Elasticsearch/Utility.php index 5227c5d03..da836b7c4 100644 --- a/src/Elasticsearch/Utility.php +++ b/src/Elasticsearch/Utility.php @@ -40,8 +40,9 @@ public static function getEnv(string $env) */ public static function urlencode(string $url): string { - return self::getEnv(self::ENV_URL_PLUS_AS_SPACE) === 'true' - ? rawurlencode($url) - : urlencode($url); + $plusAsSpace = self::getEnv(self::ENV_URL_PLUS_AS_SPACE); + return $plusAsSpace === false || $plusAsSpace === 'true' + ? urlencode($url) + : rawurlencode($url); } } diff --git a/tests/Elasticsearch/Tests/UtilityTest.php b/tests/Elasticsearch/Tests/UtilityTest.php index ec31121ec..e05ea89be 100644 --- a/tests/Elasticsearch/Tests/UtilityTest.php +++ b/tests/Elasticsearch/Tests/UtilityTest.php @@ -48,30 +48,51 @@ public function testGetEnvWithPutEnv() $this->assertEquals('true', Utility::getEnv(Utility::ENV_URL_PLUS_AS_SPACE)); } - public function testUrlencodeWithDefault() + public function testUrlWithPlusAsDefault() { $url = Utility::urlencode('bar baz'); $this->assertEquals('bar+baz', $url); } - public function testUrlencodeWithDollarServer() + public function testUrlWithPlusWithDollarServer() { $_SERVER[Utility::ENV_URL_PLUS_AS_SPACE] = 'true'; $url = Utility::urlencode('bar baz'); - $this->assertEquals('bar%20baz', $url); + $this->assertEquals('bar+baz', $url); } - public function testUrlencodeWithDollarEnv() + public function testUrlWithPlusWithDollarEnv() { $_ENV[Utility::ENV_URL_PLUS_AS_SPACE] = 'true'; $url = Utility::urlencode('bar baz'); - $this->assertEquals('bar%20baz', $url); + $this->assertEquals('bar+baz', $url); } - public function testUrlencodeWithPutEnv() + public function testUrlWithPlusWithPutEnv() { putenv(Utility::ENV_URL_PLUS_AS_SPACE . '=true'); $url = Utility::urlencode('bar baz'); + $this->assertEquals('bar+baz', $url); + } + + public function testUrlWith2BWithDollarServer() + { + $_SERVER[Utility::ENV_URL_PLUS_AS_SPACE] = 'false'; + $url = Utility::urlencode('bar baz'); + $this->assertEquals('bar%20baz', $url); + } + + public function testUrlWith2BWithDollarEnv() + { + $_ENV[Utility::ENV_URL_PLUS_AS_SPACE] = 'false'; + $url = Utility::urlencode('bar baz'); + $this->assertEquals('bar%20baz', $url); + } + + public function testUrlWith2BWithPutEnv() + { + putenv(Utility::ENV_URL_PLUS_AS_SPACE . '=false'); + $url = Utility::urlencode('bar baz'); $this->assertEquals('bar%20baz', $url); } } From b5d246e1f34e06aec080c77fbe86b10fb5e837aa Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 19 Apr 2023 13:01:28 +0200 Subject: [PATCH 81/81] Added the documentation for ELASTIC_CLIENT_URL_PLUS_AS_SPACE settings --- docs/connecting.asciidoc | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/docs/connecting.asciidoc b/docs/connecting.asciidoc index ae70256e5..7cc9a9c5f 100644 --- a/docs/connecting.asciidoc +++ b/docs/connecting.asciidoc @@ -215,6 +215,30 @@ latest 7.x client and set the environment variable `ELASTIC_CLIENT_APIVERSIONING to `true`. The client is handling the rest internally. For every 8.0 and beyond client, you're all set! The compatibility mode is enabled by default. +[discrete] +[[space-encode-url]] +=== Space encode in URL + +If you use a space character in an index name, elasticsearch-php will convert it into +a `+`, since this space must be encoded in a URL. The same applies for `id` and `type` +parameters. + +Starting from Elasticsearch 7.4, a `+` in URL will be encoded as `%2B` by all the REST +API functionality. Prior versions handled a `+` as a single space. If your +application requires handling `+` as a single space you can return to the old +behaviour by setting the Elasticsearch system property `es.rest.url_plus_as_space` to `true`. +You can read the https://www.elastic.co/guide/en/elasticsearch/reference/7.17/breaking-changes-7.4.html#_changes_to_encoding_plus_signs_in_urls[Elasticsearch release note] +for mote information. + +Starting from elasticsearch-php 7.17.2 we introduced an environmental variable `ELASTIC_CLIENT_URL_PLUS_AS_SPACE` +that can be used to encode a space using `+`, setting the variable to `true`. +If `ELASTIC_CLIENT_URL_PLUS_AS_SPACE` is set to `false` a space will be encoded using `%20` +as specified in https://www.rfc-editor.org/rfc/rfc3986[RFC 3986]. + +For instance, if you are using a space character in an index name, this will be +encoded using a `+`, default behaviour. If you set `ELASTIC_CLIENT_URL_PLUS_AS_SPACE` +to `false` the space in the index name will be encoded with `%20`. + [discrete] [[client-usage]]