Home
last modified time | relevance | path

Searched refs:snapshot (Results 26 – 50 of 81) sorted by path

1234

/plugin/dirtylittlehelper/mermaid/editor/docs/
H A Deditor.worker.js1 …spose:()=>m(e)})})(...e.map(e=>e(e=>t.call(n,e),null,i)))},e.reduce=s,e.snapshot=o,e.debounce=a,e.…
H A Deditor.worker.js.map1snapshot((listener, thisArgs = null, disposables) => event(i => listener.call(thisArgs, map(i)), n…
H A Djson.worker.js.map1snapshot((listener, thisArgs = null, disposables) => event(i => listener.call(thisArgs, map(i)), n…
/plugin/dirtylittlehelper/mermaid/editor/
H A Deditor.worker.js1 …spose:()=>m(e)})})(...e.map(e=>e(e=>t.call(n,e),null,i)))},e.reduce=s,e.snapshot=o,e.debounce=a,e.…
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/.ci/
H A Drun-elasticsearch.sh41 --env repositories.url.allowed_urls=http://snapshot.test*
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DREADME.md27 - [Snapshot lifecycle management](https://www.elastic.co/guide/en/elasticsearch/reference/current/snapshot-lifecycle-management-api.html)
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClient.asciidoc85 * <<Elasticsearch_Clientsnapshot_snapshot,`snapshot()`>>
1213 .`snapshot()`
1218 Returns the snapshot namespace
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DCatNamespace.asciidoc461 $params['repository'] = (list) Name of repository from which to fetch the snapshot information
H A DMlNamespace.asciidoc239 $params['snapshot_id'] = (string) The ID of the snapshot to delete
579 $params['snapshot_id'] = (string) The ID of the snapshot to fetch
844 $params['snapshot_id'] = (string) The ID of the snapshot to revert to
845 $params['delete_intervening_results'] = (boolean) Should we reset the results back to the time of the snapshot?
1001 $params['snapshot_id'] = (string) The ID of the snapshot to update
1002 $params['body'] = (array) The model snapshot properties to update (Required)
1016 $params['snapshot_id'] = (string) The ID of the snapshot
1017 $params['timeout'] = (time) How long should the API wait for the job to be opened and the old snapshot to be loaded.
H A DSearchableSnapshotsNamespace.asciidoc52 $params['repository'] = (string) The name of the repository containing the snapshot of the index to mount
53 $params['snapshot'] = (string) The name of the snapshot of the index to mount
57 $params['body'] = (array) The restore configuration for mounting the snapshot as searchable (Required)
H A DSlmNamespace.asciidoc39 $params['policy_id'] = (string) The id of the snapshot lifecycle policy to remove
52 $params['policy_id'] = (string) The id of the snapshot lifecycle policy to be executed
77 $params['policy_id'] = (list) Comma-separated list of snapshot lifecycle policies to retrieve
114 $params['policy_id'] = (string) The id of the snapshot lifecycle policy
115 $params['body'] = (array) The snapshot lifecycle policy definition to register
H A DSnapshotNamespace.asciidoc57 $params['snapshot'] = (string) The name of the snapshot to clone from
58 $params['target_snapshot'] = (string) The name of the cloned snapshot to create
60 $params['body'] = (array) The snapshot clone definition (Required)
74 $params['snapshot'] = (string) A snapshot name
77 $params['body'] = (array) The snapshot definition
108 $params['snapshot'] = (string) A snapshot name
122 $params['repository'] = (list) Name of the snapshot repositor
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dnamespaces.asciidoc15 | `snapshot()` | Methods to snapshot/restore your cluster and indices
H A Dsearch-operations.asciidoc244 Scrolling works by maintaining a "point in time" snapshot of the index which is
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClient.php227 protected $snapshot; variable in Elasticsearch\\Client
302 $this->snapshot = new SnapshotNamespace($transport, $endpoint);
1847 * Returns the snapshot namespace
1849 public function snapshot(): SnapshotNamespace function in Elasticsearch\\Client
1851 return $this->snapshot;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/SearchableSnapshots/
H A DMount.php32 protected $snapshot; variable in Elasticsearch\\Endpoints\\SearchableSnapshots\\Mount
37 $snapshot = $this->snapshot ?? null;
39 if (isset($repository) && isset($snapshot)) {
40 return "/_snapshot/$repository/$snapshot/_mount";
79 public function setSnapshot($snapshot): Mount argument
81 if (isset($snapshot) !== true) {
84 $this->snapshot = $snapshot;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Snapshot/
H A DCloneSnapshot.php24 * Elasticsearch API name snapshot.clone
32 protected $snapshot; variable in Elasticsearch\\Endpoints\\Snapshot\\CloneSnapshot
38 $snapshot = $this->snapshot ?? null;
41 if (isset($repository) && isset($snapshot) && isset($target_snapshot)) {
42 return "/_snapshot/$repository/$snapshot/_clone/$target_snapshot";
44 throw new RuntimeException('Missing parameter for the endpoint snapshot.clone');
79 public function setSnapshot($snapshot): CloneSnapshot argument
81 if (isset($snapshot) !== true) {
84 $this->snapshot
[all...]
H A DCreate.php24 * Elasticsearch API name snapshot.create
32 protected $snapshot; variable in Elasticsearch\\Endpoints\\Snapshot\\Create
37 $snapshot = $this->snapshot ?? null;
39 if (isset($repository) && isset($snapshot)) {
40 return "/_snapshot/$repository/$snapshot";
42 throw new RuntimeException('Missing parameter for the endpoint snapshot.create');
78 public function setSnapshot($snapshot): Create argument
80 if (isset($snapshot) !== true) {
83 $this->snapshot
[all...]
H A DDelete.php24 * Elasticsearch API name snapshot.delete
32 protected $snapshot; variable in Elasticsearch\\Endpoints\\Snapshot\\Delete
37 $snapshot = $this->snapshot ?? null;
39 if (isset($repository) && isset($snapshot)) {
40 return "/_snapshot/$repository/$snapshot";
42 throw new RuntimeException('Missing parameter for the endpoint snapshot.delete');
67 public function setSnapshot($snapshot): Delete argument
69 if (isset($snapshot) !== true) {
72 $this->snapshot
[all...]
H A DGet.php24 * Elasticsearch API name snapshot.get
32 protected $snapshot; variable in Elasticsearch\\Endpoints\\Snapshot\\Get
37 $snapshot = $this->snapshot ?? null;
39 if (isset($repository) && isset($snapshot)) {
40 return "/_snapshot/$repository/$snapshot";
42 throw new RuntimeException('Missing parameter for the endpoint snapshot.get');
71 public function setSnapshot($snapshot): Get argument
73 if (isset($snapshot) !== true) {
76 if (is_array($snapshot)
[all...]
H A DRestore.php24 * Elasticsearch API name snapshot.restore
32 protected $snapshot; variable in Elasticsearch\\Endpoints\\Snapshot\\Restore
37 $snapshot = $this->snapshot ?? null;
39 if (isset($repository) && isset($snapshot)) {
40 return "/_snapshot/$repository/$snapshot/_restore";
42 throw new RuntimeException('Missing parameter for the endpoint snapshot.restore');
78 public function setSnapshot($snapshot): Restore argument
80 if (isset($snapshot) !== true) {
83 $this->snapshot
[all...]
H A DStatus.php23 * Elasticsearch API name snapshot.status
31 protected $snapshot; variable in Elasticsearch\\Endpoints\\Snapshot\\Status
36 $snapshot = $this->snapshot ?? null;
38 if (isset($repository) && isset($snapshot)) {
39 return "/_snapshot/$repository/$snapshot/_status";
70 public function setSnapshot($snapshot): Status argument
72 if (isset($snapshot) !== true) {
75 if (is_array($snapshot) === true) {
76 $snapshot
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DSearchableSnapshotsNamespace.php80 * Mount a snapshot as a searchable index.
82 * $params['repository'] = (string) The name of the repository containing the snapshot of the index to mount
83 * $params['snapshot'] = (string) The name of the snapshot of the index to mount
87 * $params['body'] = (array) The restore configuration for mounting the snapshot as searchable (Required)
91 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/searchable-snapshots-api-mount-snapshot.html
99 $snapshot = $this->extractArgument($params, 'snapshot');
106 $endpoint->setSnapshot($snapshot);
H A DSnapshotNamespace.php39 * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/clean-up-snapshot-repo-api.html
53 * Clones indices from one snapshot into another snapshot in the same repository.
56 * $params['snapshot'] = (string) The name of the snapshot to clone from
57 * $params['target_snapshot'] = (string) The name of the cloned snapshot to create
59 * $params['body'] = (array) The snapshot clone definition (Required)
68 $snapshot = $this->extractArgument($params, 'snapshot');
76 $endpoint->setSnapshot($snapshot);
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md1387 - Add snapshot / restore functionality (Elastica\Snapshot) [#566](https://github.com/ruflin/Elastica/issues/566/)

1234