├── .gitignore ├── LICENSE ├── NOTICE ├── README.md ├── composer.json ├── src ├── Graph │ ├── GraphNamespace.php │ ├── GraphNamespaceBuilder.php │ └── endpoints │ │ └── Explore.php ├── License │ ├── LicenseNamespace.php │ ├── LicenseNamespaceBuilder.php │ └── endpoints │ │ ├── Delete.php │ │ ├── Get.php │ │ └── Post.php ├── ML │ ├── MLNamespace.php │ ├── MLNamespaceBuilder.php │ ├── endpoints │ │ ├── Data │ │ │ ├── Delete.php │ │ │ └── Post.php │ │ ├── Datafeed │ │ │ ├── Delete.php │ │ │ ├── Get.php │ │ │ ├── GetDatafeeds.php │ │ │ ├── Preview.php │ │ │ ├── Put.php │ │ │ ├── Start.php │ │ │ ├── Stop.php │ │ │ └── Update.php │ │ ├── Filter │ │ │ ├── Delete.php │ │ │ ├── Get.php │ │ │ └── Put.php │ │ ├── Job │ │ │ ├── Close.php │ │ │ ├── Delete.php │ │ │ ├── Flush.php │ │ │ ├── Get.php │ │ │ ├── GetBuckets.php │ │ │ ├── GetCategories.php │ │ │ ├── GetInfluencers.php │ │ │ ├── GetJobs.php │ │ │ ├── GetRecords.php │ │ │ ├── Open.php │ │ │ ├── Put.php │ │ │ ├── Update.php │ │ │ ├── ValidateDetector.php │ │ │ └── ValidateJob.php │ │ └── Model │ │ │ ├── Delete.php │ │ │ ├── Get.php │ │ │ ├── Revert.php │ │ │ └── Update.php │ └── namespaces │ │ ├── DataNamespace.php │ │ ├── DatafeedNamespace.php │ │ ├── FilterNamespace.php │ │ ├── JobNamespace.php │ │ └── ModelNamespace.php ├── Monitoring │ ├── MonitoringNamespace.php │ ├── MonitoringNamespaceBuilder.php │ └── endpoints │ │ └── Bulk.php ├── Security │ ├── SecurityNamespace.php │ ├── SecurityNamespaceBuilder.php │ └── endpoints │ │ ├── Authenticate.php │ │ ├── ChangePassword.php │ │ ├── ClearCachedRealms.php │ │ ├── ClearCachedRoles.php │ │ ├── DeleteRole.php │ │ ├── DeleteUser.php │ │ ├── GetRole.php │ │ ├── GetUser.php │ │ ├── PutRole.php │ │ └── PutUser.php ├── Watcher │ ├── WatcherNamespace.php │ ├── WatcherNamespaceBuilder.php │ └── endpoints │ │ ├── AbstractWatcherEndpoint.php │ │ ├── AckWatch.php │ │ ├── ActivateWatch.php │ │ ├── DeactivateWatch.php │ │ ├── DeleteWatch.php │ │ ├── ExecuteWatch.php │ │ ├── GetWatch.php │ │ ├── PutWatch.php │ │ ├── Restart.php │ │ ├── Start.php │ │ ├── Stats.php │ │ └── Stop.php └── XPack.php ├── tests ├── Graph │ └── Tests │ │ └── SimpleGraphTests.php ├── License │ └── Tests │ │ └── SimpleLicenseTests.php ├── ML │ └── Tests │ │ └── SimpleMLTests.php ├── Monitoring │ └── Tests │ │ └── SimpleMonitoringTests.php ├── Security │ └── Tests │ │ └── SimpleSecurityTests.php ├── Watcher │ └── Tests │ │ └── SimpleWatcherTests.php └── bootstrap.php └── util └── RestSpecRunner.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/composer.json -------------------------------------------------------------------------------- /src/Graph/GraphNamespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Graph/GraphNamespace.php -------------------------------------------------------------------------------- /src/Graph/GraphNamespaceBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Graph/GraphNamespaceBuilder.php -------------------------------------------------------------------------------- /src/Graph/endpoints/Explore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Graph/endpoints/Explore.php -------------------------------------------------------------------------------- /src/License/LicenseNamespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/License/LicenseNamespace.php -------------------------------------------------------------------------------- /src/License/LicenseNamespaceBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/License/LicenseNamespaceBuilder.php -------------------------------------------------------------------------------- /src/License/endpoints/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/License/endpoints/Delete.php -------------------------------------------------------------------------------- /src/License/endpoints/Get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/License/endpoints/Get.php -------------------------------------------------------------------------------- /src/License/endpoints/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/License/endpoints/Post.php -------------------------------------------------------------------------------- /src/ML/MLNamespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/MLNamespace.php -------------------------------------------------------------------------------- /src/ML/MLNamespaceBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/MLNamespaceBuilder.php -------------------------------------------------------------------------------- /src/ML/endpoints/Data/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Data/Delete.php -------------------------------------------------------------------------------- /src/ML/endpoints/Data/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Data/Post.php -------------------------------------------------------------------------------- /src/ML/endpoints/Datafeed/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Datafeed/Delete.php -------------------------------------------------------------------------------- /src/ML/endpoints/Datafeed/Get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Datafeed/Get.php -------------------------------------------------------------------------------- /src/ML/endpoints/Datafeed/GetDatafeeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Datafeed/GetDatafeeds.php -------------------------------------------------------------------------------- /src/ML/endpoints/Datafeed/Preview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Datafeed/Preview.php -------------------------------------------------------------------------------- /src/ML/endpoints/Datafeed/Put.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Datafeed/Put.php -------------------------------------------------------------------------------- /src/ML/endpoints/Datafeed/Start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Datafeed/Start.php -------------------------------------------------------------------------------- /src/ML/endpoints/Datafeed/Stop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Datafeed/Stop.php -------------------------------------------------------------------------------- /src/ML/endpoints/Datafeed/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Datafeed/Update.php -------------------------------------------------------------------------------- /src/ML/endpoints/Filter/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Filter/Delete.php -------------------------------------------------------------------------------- /src/ML/endpoints/Filter/Get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Filter/Get.php -------------------------------------------------------------------------------- /src/ML/endpoints/Filter/Put.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Filter/Put.php -------------------------------------------------------------------------------- /src/ML/endpoints/Job/Close.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Job/Close.php -------------------------------------------------------------------------------- /src/ML/endpoints/Job/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Job/Delete.php -------------------------------------------------------------------------------- /src/ML/endpoints/Job/Flush.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Job/Flush.php -------------------------------------------------------------------------------- /src/ML/endpoints/Job/Get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Job/Get.php -------------------------------------------------------------------------------- /src/ML/endpoints/Job/GetBuckets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Job/GetBuckets.php -------------------------------------------------------------------------------- /src/ML/endpoints/Job/GetCategories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Job/GetCategories.php -------------------------------------------------------------------------------- /src/ML/endpoints/Job/GetInfluencers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Job/GetInfluencers.php -------------------------------------------------------------------------------- /src/ML/endpoints/Job/GetJobs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Job/GetJobs.php -------------------------------------------------------------------------------- /src/ML/endpoints/Job/GetRecords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Job/GetRecords.php -------------------------------------------------------------------------------- /src/ML/endpoints/Job/Open.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Job/Open.php -------------------------------------------------------------------------------- /src/ML/endpoints/Job/Put.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Job/Put.php -------------------------------------------------------------------------------- /src/ML/endpoints/Job/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Job/Update.php -------------------------------------------------------------------------------- /src/ML/endpoints/Job/ValidateDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Job/ValidateDetector.php -------------------------------------------------------------------------------- /src/ML/endpoints/Job/ValidateJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Job/ValidateJob.php -------------------------------------------------------------------------------- /src/ML/endpoints/Model/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Model/Delete.php -------------------------------------------------------------------------------- /src/ML/endpoints/Model/Get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Model/Get.php -------------------------------------------------------------------------------- /src/ML/endpoints/Model/Revert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Model/Revert.php -------------------------------------------------------------------------------- /src/ML/endpoints/Model/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/endpoints/Model/Update.php -------------------------------------------------------------------------------- /src/ML/namespaces/DataNamespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/namespaces/DataNamespace.php -------------------------------------------------------------------------------- /src/ML/namespaces/DatafeedNamespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/namespaces/DatafeedNamespace.php -------------------------------------------------------------------------------- /src/ML/namespaces/FilterNamespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/namespaces/FilterNamespace.php -------------------------------------------------------------------------------- /src/ML/namespaces/JobNamespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/namespaces/JobNamespace.php -------------------------------------------------------------------------------- /src/ML/namespaces/ModelNamespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/ML/namespaces/ModelNamespace.php -------------------------------------------------------------------------------- /src/Monitoring/MonitoringNamespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Monitoring/MonitoringNamespace.php -------------------------------------------------------------------------------- /src/Monitoring/MonitoringNamespaceBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Monitoring/MonitoringNamespaceBuilder.php -------------------------------------------------------------------------------- /src/Monitoring/endpoints/Bulk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Monitoring/endpoints/Bulk.php -------------------------------------------------------------------------------- /src/Security/SecurityNamespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Security/SecurityNamespace.php -------------------------------------------------------------------------------- /src/Security/SecurityNamespaceBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Security/SecurityNamespaceBuilder.php -------------------------------------------------------------------------------- /src/Security/endpoints/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Security/endpoints/Authenticate.php -------------------------------------------------------------------------------- /src/Security/endpoints/ChangePassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Security/endpoints/ChangePassword.php -------------------------------------------------------------------------------- /src/Security/endpoints/ClearCachedRealms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Security/endpoints/ClearCachedRealms.php -------------------------------------------------------------------------------- /src/Security/endpoints/ClearCachedRoles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Security/endpoints/ClearCachedRoles.php -------------------------------------------------------------------------------- /src/Security/endpoints/DeleteRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Security/endpoints/DeleteRole.php -------------------------------------------------------------------------------- /src/Security/endpoints/DeleteUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Security/endpoints/DeleteUser.php -------------------------------------------------------------------------------- /src/Security/endpoints/GetRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Security/endpoints/GetRole.php -------------------------------------------------------------------------------- /src/Security/endpoints/GetUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Security/endpoints/GetUser.php -------------------------------------------------------------------------------- /src/Security/endpoints/PutRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Security/endpoints/PutRole.php -------------------------------------------------------------------------------- /src/Security/endpoints/PutUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Security/endpoints/PutUser.php -------------------------------------------------------------------------------- /src/Watcher/WatcherNamespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Watcher/WatcherNamespace.php -------------------------------------------------------------------------------- /src/Watcher/WatcherNamespaceBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Watcher/WatcherNamespaceBuilder.php -------------------------------------------------------------------------------- /src/Watcher/endpoints/AbstractWatcherEndpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Watcher/endpoints/AbstractWatcherEndpoint.php -------------------------------------------------------------------------------- /src/Watcher/endpoints/AckWatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Watcher/endpoints/AckWatch.php -------------------------------------------------------------------------------- /src/Watcher/endpoints/ActivateWatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Watcher/endpoints/ActivateWatch.php -------------------------------------------------------------------------------- /src/Watcher/endpoints/DeactivateWatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Watcher/endpoints/DeactivateWatch.php -------------------------------------------------------------------------------- /src/Watcher/endpoints/DeleteWatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Watcher/endpoints/DeleteWatch.php -------------------------------------------------------------------------------- /src/Watcher/endpoints/ExecuteWatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Watcher/endpoints/ExecuteWatch.php -------------------------------------------------------------------------------- /src/Watcher/endpoints/GetWatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Watcher/endpoints/GetWatch.php -------------------------------------------------------------------------------- /src/Watcher/endpoints/PutWatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Watcher/endpoints/PutWatch.php -------------------------------------------------------------------------------- /src/Watcher/endpoints/Restart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Watcher/endpoints/Restart.php -------------------------------------------------------------------------------- /src/Watcher/endpoints/Start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Watcher/endpoints/Start.php -------------------------------------------------------------------------------- /src/Watcher/endpoints/Stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Watcher/endpoints/Stats.php -------------------------------------------------------------------------------- /src/Watcher/endpoints/Stop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/Watcher/endpoints/Stop.php -------------------------------------------------------------------------------- /src/XPack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/src/XPack.php -------------------------------------------------------------------------------- /tests/Graph/Tests/SimpleGraphTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/tests/Graph/Tests/SimpleGraphTests.php -------------------------------------------------------------------------------- /tests/License/Tests/SimpleLicenseTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/tests/License/Tests/SimpleLicenseTests.php -------------------------------------------------------------------------------- /tests/ML/Tests/SimpleMLTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/tests/ML/Tests/SimpleMLTests.php -------------------------------------------------------------------------------- /tests/Monitoring/Tests/SimpleMonitoringTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/tests/Monitoring/Tests/SimpleMonitoringTests.php -------------------------------------------------------------------------------- /tests/Security/Tests/SimpleSecurityTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/tests/Security/Tests/SimpleSecurityTests.php -------------------------------------------------------------------------------- /tests/Watcher/Tests/SimpleWatcherTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/tests/Watcher/Tests/SimpleWatcherTests.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /util/RestSpecRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-x-pack-php/HEAD/util/RestSpecRunner.php --------------------------------------------------------------------------------