Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Replace Sami by Doctum and fix .gitignore #1062

Merged
merged 3 commits into from
Dec 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,16 @@ generator/*
util/elasticsearch/
util/cache/

# Sami docs generator
/sami.phar
# Doctum docs generator
/doctum.phar

# PHPUnit
/phpunit.xml

# Code coverage
build
# Do not ignore Doctum docs built files
!/docs/build

# Junit test output
tests/*-junit.xml
1 change: 1 addition & 0 deletions docs/build/DOCTUM_VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5.1.0
554 changes: 519 additions & 35 deletions docs/build/Elasticsearch/Client.asciidoc

Large diffs are not rendered by default.

17 changes: 15 additions & 2 deletions docs/build/Elasticsearch/ClientBuilder.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@



Class ClientBuilder


*Methods*

Expand Down Expand Up @@ -40,6 +38,7 @@ The class defines the following methods:
* <<Elasticsearch_ClientBuildersetSSLCert_setSSLCert,`setSSLCert()`>>
* <<Elasticsearch_ClientBuildersetSSLKey_setSSLKey,`setSSLKey()`>>
* <<Elasticsearch_ClientBuildersetSSLVerification_setSSLVerification,`setSSLVerification()`>>
* <<Elasticsearch_ClientBuilderincludePortInHostHeader_includePortInHostHeader,`includePortInHostHeader()`>>
* <<Elasticsearch_ClientBuilderbuild_build,`build()`>>
* <<Elasticsearch_ClientBuilderinstantiate_instantiate,`instantiate()`>>

Expand Down Expand Up @@ -418,6 +417,20 @@ corresponds to setConnectionPool().



[[Elasticsearch_ClientBuilderincludePortInHostHeader_includePortInHostHeader]]
.`includePortInHostHeader()`
****
[source,php]
----
/*
Include the port in Host header
*/

----
****



[[Elasticsearch_ClientBuilderbuild_build]]
.`build()`
****
Expand Down
111 changes: 111 additions & 0 deletions docs/build/Elasticsearch/Namespaces/AsyncSearchNamespace.asciidoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@


[[Elasticsearch_Namespaces_AsyncSearchNamespace]]
=== Elasticsearch\Namespaces\AsyncSearchNamespace



Class AsyncSearchNamespace
Generated running $ php util/GenerateEndpoints.php 7.9


*Methods*

The class defines the following methods:

* <<Elasticsearch_Namespaces_AsyncSearchNamespacedelete_delete,`delete()`>>
* <<Elasticsearch_Namespaces_AsyncSearchNamespaceget_get,`get()`>>
* <<Elasticsearch_Namespaces_AsyncSearchNamespacesubmit_submit,`submit()`>>



[[Elasticsearch_Namespaces_AsyncSearchNamespacedelete_delete]]
.`delete()`
****
[source,php]
----
/*
$params['id'] = (string) The async search ID
*/

$params = [
// ...
];

$client = ClientBuilder::create()->build();
$response = $client->asyncsearch()->delete($params);
----
****



[[Elasticsearch_Namespaces_AsyncSearchNamespaceget_get]]
.`get()`
****
[source,php]
----
/*
$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
$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_AsyncSearchNamespacesubmit_submit]]
.`submit()`
****
[source,php]
----
/*
$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)
$params['keep_alive'] = (time) Update the time interval in which the results (partial or final) for this search will be available (Default = 5d)
$params['batched_reduce_size'] = (number) The number of shard results that should be reduced at once on the coordinating node. This value should be used as the granularity at which progress results will be made available. (Default = 5)
$params['request_cache'] = (boolean) Specify if request cache should be used for this request or not, defaults to true
$params['analyzer'] = (string) The analyzer to use for the query string
$params['analyze_wildcard'] = (boolean) Specify whether wildcard and prefix queries should be analyzed (default: false)
$params['default_operator'] = (enum) The default operator for query string query (AND or OR) (Options = AND,OR) (Default = OR)
$params['df'] = (string) The field to use as default where no field prefix is given in the query string
$params['explain'] = (boolean) Specify whether to return detailed information about score computation as part of a hit
$params['stored_fields'] = (list) A comma-separated list of stored fields to return as part of a hit
$params['docvalue_fields'] = (list) A comma-separated list of fields to return as the docvalue representation of a field for each hit
$params['from'] = (number) Starting offset (default: 0)
$params['ignore_unavailable'] = (boolean) Whether specified concrete indices should be ignored when unavailable (missing or closed)
$params['ignore_throttled'] = (boolean) Whether specified concrete, expanded or aliased indices should be ignored when throttled
$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['lenient'] = (boolean) Specify whether format-based query failures (such as providing text to a numeric field) should be ignored
$params['preference'] = (string) Specify the node or shard the operation should be performed on (default: random)
$params['q'] = (string) Query in the Lucene query string syntax
$params['routing'] = (list) A comma-separated list of specific routing values
$params['search_type'] = (enum) Search operation type (Options = query_then_fetch,dfs_query_then_fetch)
$params['size'] = (number) Number of hits to return (default: 10)
$params['sort'] = (list) A comma-separated list of <field>:<direction> 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 = [
// ...
];

$client = ClientBuilder::create()->build();
$response = $client->asyncsearch()->submit($params);
----
****


104 changes: 104 additions & 0 deletions docs/build/Elasticsearch/Namespaces/AutoscalingNamespace.asciidoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@


[[Elasticsearch_Namespaces_AutoscalingNamespace]]
=== Elasticsearch\Namespaces\AutoscalingNamespace



Class AutoscalingNamespace
Generated running $ php util/GenerateEndpoints.php 7.9


*Methods*

The class defines the following methods:

* <<Elasticsearch_Namespaces_AutoscalingNamespacedeleteAutoscalingPolicy_deleteAutoscalingPolicy,`deleteAutoscalingPolicy()`>>
* <<Elasticsearch_Namespaces_AutoscalingNamespacegetAutoscalingDecision_getAutoscalingDecision,`getAutoscalingDecision()`>>
* <<Elasticsearch_Namespaces_AutoscalingNamespacegetAutoscalingPolicy_getAutoscalingPolicy,`getAutoscalingPolicy()`>>
* <<Elasticsearch_Namespaces_AutoscalingNamespaceputAutoscalingPolicy_putAutoscalingPolicy,`putAutoscalingPolicy()`>>



[[Elasticsearch_Namespaces_AutoscalingNamespacedeleteAutoscalingPolicy_deleteAutoscalingPolicy]]
.`deleteAutoscalingPolicy()`
*NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release
****
[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()`
****
[source,php]
----
/*
*/

$params = [
// ...
];

$client = ClientBuilder::create()->build();
$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
****
[source,php]
----
/*
$params['name'] = (string) the name of the autoscaling policy
*/

$params = [
// ...
];

$client = ClientBuilder::create()->build();
$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
****
[source,php]
----
/*
$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);
----
****


Loading