Lines Matching refs:snapshot

39      * @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);
83 * Creates a snapshot in a repository.
86 * $params['snapshot'] = (string) A snapshot name
89 * $params['body'] = (array) The snapshot definition
98 $snapshot = $this->extractArgument($params, 'snapshot');
105 $endpoint->setSnapshot($snapshot);
137 * Deletes a snapshot.
140 * $params['snapshot'] = (string) A snapshot name
150 $snapshot = $this->extractArgument($params, 'snapshot');
156 $endpoint->setSnapshot($snapshot);
163 * $params['repository'] = (list) Name of the snapshot repository to unregister. Wildcard (`*`) patterns are supported.
183 * Returns information about a snapshot.
186 * $params['snapshot'] = (list) A comma-separated list of snapshot names
189 * $params['index_details'] = (boolean) Whether to include details of each index in the snapshot, if those details are available. Defaults to false.
190 * $params['include_repository'] = (boolean) Whether to include the repository name in the snapshot info. Defaults to true.
191 * $params['verbose'] = (boolean) Whether to show verbose snapshot info or only show the basic info found in the repository index blob
200 $snapshot = $this->extractArgument($params, 'snapshot');
206 $endpoint->setSnapshot($snapshot);
264 * Restores a snapshot.
267 * $params['snapshot'] = (string) A snapshot name
279 $snapshot = $this->extractArgument($params, 'snapshot');
286 $endpoint->setSnapshot($snapshot);
292 * Returns information about the status of a snapshot.
295 * $params['snapshot'] = (list) A comma-separated list of snapshot names
306 $snapshot = $this->extractArgument($params, 'snapshot');
312 $endpoint->setSnapshot($snapshot);