Skip to content

Commit fb0461a

Browse files
authored
[7.x] Add Snapshot Lifecycle Management (#44382)
* Add Snapshot Lifecycle Management (#43934) * Add SnapshotLifecycleService and related CRUD APIs This commit adds `SnapshotLifecycleService` as a new service under the ilm plugin. This service handles snapshot lifecycle policies by scheduling based on the policies defined schedule. This also includes the get, put, and delete APIs for these policies Relates to #38461 * Make scheduledJobIds return an immutable set * Use Object.equals for SnapshotLifecyclePolicy * Remove unneeded TODO * Implement ToXContentFragment on SnapshotLifecyclePolicyItem * Copy contents of the scheduledJobIds * Handle snapshot lifecycle policy updates and deletions (#40062) (Note this is a PR against the `snapshot-lifecycle-management` feature branch) This adds logic to `SnapshotLifecycleService` to handle updates and deletes for snapshot policies. Policies with incremented versions have the old policy cancelled and the new one scheduled. Deleted policies have their schedules cancelled when they are no longer present in the cluster state metadata. Relates to #38461 * Take a snapshot for the policy when the SLM policy is triggered (#40383) (This is a PR for the `snapshot-lifecycle-management` branch) This commit fills in `SnapshotLifecycleTask` to actually perform the snapshotting when the policy is triggered. Currently there is no handling of the results (other than logging) as that will be added in subsequent work. This also adds unit tests and an integration test that schedules a policy and ensures that a snapshot is correctly taken. Relates to #38461 * Record most recent snapshot policy success/failure (#40619) Keeping a record of the results of the successes and failures will aid troubleshooting of policies and make users more confident that their snapshots are being taken as expected. This is the first step toward writing history in a more permanent fashion. * Validate snapshot lifecycle policies (#40654) (This is a PR against the `snapshot-lifecycle-management` branch) With the commit, we now validate the content of snapshot lifecycle policies when the policy is being created or updated. This checks for the validity of the id, name, schedule, and repository. Additionally, cluster state is checked to ensure that the repository exists prior to the lifecycle being added to the cluster state. Part of #38461 * Hook SLM into ILM's start and stop APIs (#40871) (This pull request is for the `snapshot-lifecycle-management` branch) This change allows the existing `/_ilm/stop` and `/_ilm/start` APIs to also manage snapshot lifecycle scheduling. When ILM is stopped all scheduled jobs are cancelled. Relates to #38461 * Add tests for SnapshotLifecyclePolicyItem (#40912) Adds serialization tests for SnapshotLifecyclePolicyItem. * Fix improper import in build.gradle after master merge * Add human readable version of modified date for snapshot lifecycle policy (#41035) * Add human readable version of modified date for snapshot lifecycle policy This small change changes it from: ``` ... "modified_date": 1554843903242, ... ``` To ``` ... "modified_date" : "2019-04-09T21:05:03.242Z", "modified_date_millis" : 1554843903242, ... ``` Including the `"modified_date"` field when the `?human` field is used. Relates to #38461 * Fix test * Add API to execute SLM policy on demand (#41038) This commit adds the ability to perform a snapshot on demand for a policy. This can be useful to take a snapshot immediately prior to performing some sort of maintenance. ```json PUT /_ilm/snapshot/<policy>/_execute ``` And it returns the response with the generated snapshot name: ```json { "snapshot_name" : "production-snap-2019.04.09-rfyv3j9qreixkdbnfuw0ug" } ``` Note that this does not allow waiting for the snapshot, and the snapshot could still fail. It *does* record this information into the cluster state similar to a regularly trigged SLM job. Relates to #38461 * Add next_execution to SLM policy metadata (#41221) * Add next_execution to SLM policy metadata This adds the next time a snapshot lifecycle policy will be executed when retriving a policy's metadata, for example: ```json GET /_ilm/snapshot?human { "production" : { "version" : 1, "modified_date" : "2019-04-15T21:16:21.865Z", "modified_date_millis" : 1555362981865, "policy" : { "name" : "<production-snap-{now/d}>", "schedule" : "*/30 * * * * ?", "repository" : "repo", "config" : { "indices" : [ "foo-*", "important" ], "ignore_unavailable" : true, "include_global_state" : false } }, "next_execution" : "2019-04-15T21:16:30.000Z", "next_execution_millis" : 1555362990000 }, "other" : { "version" : 1, "modified_date" : "2019-04-15T21:12:19.959Z", "modified_date_millis" : 1555362739959, "policy" : { "name" : "<other-snap-{now/d}>", "schedule" : "0 30 2 * * ?", "repository" : "repo", "config" : { "indices" : [ "other" ], "ignore_unavailable" : false, "include_global_state" : true } }, "next_execution" : "2019-04-16T02:30:00.000Z", "next_execution_millis" : 1555381800000 } } ``` Relates to #38461 * Fix and enhance tests * Figured out how to Cron * Change SLM endpoint from /_ilm/* to /_slm/* (#41320) This commit changes the endpoint for snapshot lifecycle management from: ``` GET /_ilm/snapshot/<policy> ``` to: ``` GET /_slm/policy/<policy> ``` It mimics the ILM path only using `slm` instead of `ilm`. Relates to #38461 * Add initial documentation for SLM (#41510) * Add initial documentation for SLM This adds the initial documentation for snapshot lifecycle management. It also includes the REST spec API json files since they're sort of documentation. Relates to #38461 * Add `manage_slm` and `read_slm` roles (#41607) * Add `manage_slm` and `read_slm` roles This adds two more built in roles - `manage_slm` which has permission to perform any of the SLM actions, as well as stopping, starting, and retrieving the operation status of ILM. `read_slm` which has permission to retrieve snapshot lifecycle policies as well as retrieving the operation status of ILM. Relates to #38461 * Add execute to the test * Fix ilm -> slm typo in test * Record SLM history into an index (#41707) It is useful to have a record of the actions that Snapshot Lifecycle Management takes, especially for the purposes of alerting when a snapshot fails or has not been taken successfully for a certain amount of time. This adds the infrastructure to record SLM actions into an index that can be queried at leisure, along with a lifecycle policy so that this history does not grow without bound. Additionally, SLM automatically setting up an index + lifecycle policy leads to `index_lifecycle` custom metadata in the cluster state, which some of the ML tests don't know how to deal with due to setting up custom `NamedXContentRegistry`s. Watcher would cause the same problem, but it is already disabled (for the same reason). * High Level Rest Client support for SLM (#41767) * High Level Rest Client support for SLM This commit add HLRC support for SLM. Relates to #38461 * Fill out documentation tests with tags * Add more callouts and asciidoc for HLRC * Update javadoc links to real locations * Add security test testing SLM cluster privileges (#42678) * Add security test testing SLM cluster privileges This adds a test to `PermissionsIT` that uses the `manage_slm` and `read_slm` cluster privileges. Relates to #38461 * Don't redefine vars * Add Getting Started Guide for SLM (#42878) This commit adds a basic Getting Started Guide for SLM. * Include SLM policy name in Snapshot metadata (#43132) Keep track of which SLM policy in the metadata field of the Snapshots taken by SLM. This allows users to more easily understand where the snapshot came from, and will enable future SLM features such as retention policies. * Fix compilation after master merge * [TEST] Move exception wrapping for devious exception throwing Fixes an issue where an exception was created from one line and thrown in another. * Fix SLM for the change to AcknowledgedResponse * Add Snapshot Lifecycle Management Package Docs (#43535) * Fix compilation for transport actions now that task is required * Add a note mentioning the privileges needed for SLM (#43708) * Add a note mentioning the privileges needed for SLM This adds a note to the top of the "getting started with SLM" documentation mentioning that there are two built-in privileges to assist with creating roles for SLM users and administrators. Relates to #38461 * Mention that you can create snapshots for indices you can't read * Fix REST tests for new number of cluster privileges * Mute testThatNonExistingTemplatesAreAddedImmediately (#43951) * Fix SnapshotHistoryStoreTests after merge * Remove overridden newResponse functions that have been removed * Fix compilation for backport * Fix get snapshot output parsing in test * [DOCS] Add redirects for removed autogen anchors (#44380) * Switch <tt>...</tt> in javadocs for {@code ...}
1 parent aa9dd31 commit fb0461a

File tree

86 files changed

+7431
-30
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+7431
-30
lines changed

client/rest-high-level/src/main/java/org/elasticsearch/client/IndexLifecycleClient.java

Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@
3434
import org.elasticsearch.client.indexlifecycle.RetryLifecyclePolicyRequest;
3535
import org.elasticsearch.client.indexlifecycle.StartILMRequest;
3636
import org.elasticsearch.client.indexlifecycle.StopILMRequest;
37+
import org.elasticsearch.client.snapshotlifecycle.DeleteSnapshotLifecyclePolicyRequest;
38+
import org.elasticsearch.client.snapshotlifecycle.ExecuteSnapshotLifecyclePolicyRequest;
39+
import org.elasticsearch.client.snapshotlifecycle.ExecuteSnapshotLifecyclePolicyResponse;
40+
import org.elasticsearch.client.snapshotlifecycle.GetSnapshotLifecyclePolicyRequest;
41+
import org.elasticsearch.client.snapshotlifecycle.GetSnapshotLifecyclePolicyResponse;
42+
import org.elasticsearch.client.snapshotlifecycle.PutSnapshotLifecyclePolicyRequest;
3743

3844
import java.io.IOException;
3945

@@ -300,4 +306,144 @@ public void retryLifecyclePolicyAsync(RetryLifecyclePolicyRequest request, Reque
300306
restHighLevelClient.performRequestAsyncAndParseEntity(request, IndexLifecycleRequestConverters::retryLifecycle, options,
301307
AcknowledgedResponse::fromXContent, listener, emptySet());
302308
}
309+
310+
/**
311+
* Retrieve one or more snapshot lifecycle policy definitions.
312+
* See <pre>
313+
* https://www.elastic.co/guide/en/elasticsearch/client/java-rest/current/
314+
* java-rest-high-ilm-slm-get-snapshot-lifecycle-policy.html
315+
* </pre>
316+
* for more.
317+
* @param request the request
318+
* @param options the request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
319+
* @return the response
320+
* @throws IOException in case there is a problem sending the request or parsing back the response
321+
*/
322+
public GetSnapshotLifecyclePolicyResponse getSnapshotLifecyclePolicy(GetSnapshotLifecyclePolicyRequest request,
323+
RequestOptions options) throws IOException {
324+
return restHighLevelClient.performRequestAndParseEntity(request, IndexLifecycleRequestConverters::getSnapshotLifecyclePolicy,
325+
options, GetSnapshotLifecyclePolicyResponse::fromXContent, emptySet());
326+
}
327+
328+
/**
329+
* Asynchronously retrieve one or more snapshot lifecycle policy definition.
330+
* See <pre>
331+
* https://www.elastic.co/guide/en/elasticsearch/client/java-rest/current/
332+
* java-rest-high-ilm-slm-get-snapshot-lifecycle-policy.html
333+
* </pre>
334+
* for more.
335+
* @param request the request
336+
* @param options the request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
337+
* @param listener the listener to be notified upon request completion
338+
*/
339+
public void getSnapshotLifecyclePolicyAsync(GetSnapshotLifecyclePolicyRequest request, RequestOptions options,
340+
ActionListener<GetSnapshotLifecyclePolicyResponse> listener) {
341+
restHighLevelClient.performRequestAsyncAndParseEntity(request, IndexLifecycleRequestConverters::getSnapshotLifecyclePolicy,
342+
options, GetSnapshotLifecyclePolicyResponse::fromXContent, listener, emptySet());
343+
}
344+
345+
/**
346+
* Create or modify a snapshot lifecycle definition.
347+
* See <pre>
348+
* https://www.elastic.co/guide/en/elasticsearch/client/java-rest/current/
349+
* java-rest-high-ilm-slm-put-snapshot-lifecycle-policy.html
350+
* </pre>
351+
* for more.
352+
* @param request the request
353+
* @param options the request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
354+
* @return the response
355+
* @throws IOException in case there is a problem sending the request or parsing back the response
356+
*/
357+
public AcknowledgedResponse putSnapshotLifecyclePolicy(PutSnapshotLifecyclePolicyRequest request,
358+
RequestOptions options) throws IOException {
359+
return restHighLevelClient.performRequestAndParseEntity(request, IndexLifecycleRequestConverters::putSnapshotLifecyclePolicy,
360+
options, AcknowledgedResponse::fromXContent, emptySet());
361+
}
362+
363+
/**
364+
* Asynchronously create or modify a snapshot lifecycle definition.
365+
* See <pre>
366+
* https://www.elastic.co/guide/en/elasticsearch/client/java-rest/current/
367+
* java-rest-high-ilm-slm-put-snapshot-lifecycle-policy.html
368+
* </pre>
369+
* for more.
370+
* @param request the request
371+
* @param options the request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
372+
* @param listener the listener to be notified upon request completion
373+
*/
374+
public void putSnapshotLifecyclePolicyAsync(PutSnapshotLifecyclePolicyRequest request, RequestOptions options,
375+
ActionListener<AcknowledgedResponse> listener) {
376+
restHighLevelClient.performRequestAsyncAndParseEntity(request, IndexLifecycleRequestConverters::putSnapshotLifecyclePolicy,
377+
options, AcknowledgedResponse::fromXContent, listener, emptySet());
378+
}
379+
380+
/**
381+
* Delete a snapshot lifecycle definition
382+
* See <pre>
383+
* https://www.elastic.co/guide/en/elasticsearch/client/java-rest/current/
384+
* java-rest-high-ilm-slm-delete-snapshot-lifecycle-policy.html
385+
* </pre>
386+
* for more.
387+
* @param request the request
388+
* @param options the request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
389+
* @return the response
390+
* @throws IOException in case there is a problem sending the request or parsing back the response
391+
*/
392+
public AcknowledgedResponse deleteSnapshotLifecyclePolicy(DeleteSnapshotLifecyclePolicyRequest request,
393+
RequestOptions options) throws IOException {
394+
return restHighLevelClient.performRequestAndParseEntity(request, IndexLifecycleRequestConverters::deleteSnapshotLifecyclePolicy,
395+
options, AcknowledgedResponse::fromXContent, emptySet());
396+
}
397+
398+
/**
399+
* Asynchronously delete a snapshot lifecycle definition
400+
* See <pre>
401+
* https://www.elastic.co/guide/en/elasticsearch/client/java-rest/current/
402+
* java-rest-high-ilm-slm-delete-snapshot-lifecycle-policy.html
403+
* </pre>
404+
* for more.
405+
* @param request the request
406+
* @param options the request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
407+
* @param listener the listener to be notified upon request completion
408+
*/
409+
public void deleteSnapshotLifecyclePolicyAsync(DeleteSnapshotLifecyclePolicyRequest request, RequestOptions options,
410+
ActionListener<AcknowledgedResponse> listener) {
411+
restHighLevelClient.performRequestAsyncAndParseEntity(request, IndexLifecycleRequestConverters::deleteSnapshotLifecyclePolicy,
412+
options, AcknowledgedResponse::fromXContent, listener, emptySet());
413+
}
414+
415+
/**
416+
* Execute a snapshot lifecycle definition
417+
* See <pre>
418+
* https://www.elastic.co/guide/en/elasticsearch/client/java-rest/current/
419+
* java-rest-high-ilm-slm-execute-snapshot-lifecycle-policy.html
420+
* </pre>
421+
* for more.
422+
* @param request the request
423+
* @param options the request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
424+
* @return the response
425+
* @throws IOException in case there is a problem sending the request or parsing back the response
426+
*/
427+
public ExecuteSnapshotLifecyclePolicyResponse executeSnapshotLifecyclePolicy(ExecuteSnapshotLifecyclePolicyRequest request,
428+
RequestOptions options) throws IOException {
429+
return restHighLevelClient.performRequestAndParseEntity(request, IndexLifecycleRequestConverters::executeSnapshotLifecyclePolicy,
430+
options, ExecuteSnapshotLifecyclePolicyResponse::fromXContent, emptySet());
431+
}
432+
433+
/**
434+
* Asynchronously execute a snapshot lifecycle definition
435+
* See <pre>
436+
* https://www.elastic.co/guide/en/elasticsearch/client/java-rest/current/
437+
* java-rest-high-ilm-slm-execute-snapshot-lifecycle-policy.html
438+
* </pre>
439+
* for more.
440+
* @param request the request
441+
* @param options the request options (e.g. headers), use {@link RequestOptions#DEFAULT} if nothing needs to be customized
442+
* @param listener the listener to be notified upon request completion
443+
*/
444+
public void executeSnapshotLifecyclePolicyAsync(ExecuteSnapshotLifecyclePolicyRequest request, RequestOptions options,
445+
ActionListener<ExecuteSnapshotLifecyclePolicyResponse> listener) {
446+
restHighLevelClient.performRequestAsyncAndParseEntity(request, IndexLifecycleRequestConverters::executeSnapshotLifecyclePolicy,
447+
options, ExecuteSnapshotLifecyclePolicyResponse::fromXContent, listener, emptySet());
448+
}
303449
}

client/rest-high-level/src/main/java/org/elasticsearch/client/IndexLifecycleRequestConverters.java

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232
import org.elasticsearch.client.indexlifecycle.RetryLifecyclePolicyRequest;
3333
import org.elasticsearch.client.indexlifecycle.StartILMRequest;
3434
import org.elasticsearch.client.indexlifecycle.StopILMRequest;
35+
import org.elasticsearch.client.snapshotlifecycle.DeleteSnapshotLifecyclePolicyRequest;
36+
import org.elasticsearch.client.snapshotlifecycle.ExecuteSnapshotLifecyclePolicyRequest;
37+
import org.elasticsearch.client.snapshotlifecycle.GetSnapshotLifecyclePolicyRequest;
38+
import org.elasticsearch.client.snapshotlifecycle.PutSnapshotLifecyclePolicyRequest;
3539
import org.elasticsearch.common.Strings;
3640

3741
import java.io.IOException;
@@ -159,4 +163,56 @@ static Request retryLifecycle(RetryLifecyclePolicyRequest retryLifecyclePolicyRe
159163
request.addParameters(params.asMap());
160164
return request;
161165
}
166+
167+
static Request getSnapshotLifecyclePolicy(GetSnapshotLifecyclePolicyRequest getSnapshotLifecyclePolicyRequest) {
168+
String endpoint = new RequestConverters.EndpointBuilder().addPathPartAsIs("_slm/policy")
169+
.addCommaSeparatedPathParts(getSnapshotLifecyclePolicyRequest.getPolicyIds()).build();
170+
Request request = new Request(HttpGet.METHOD_NAME, endpoint);
171+
RequestConverters.Params params = new RequestConverters.Params();
172+
params.withMasterTimeout(getSnapshotLifecyclePolicyRequest.masterNodeTimeout());
173+
params.withTimeout(getSnapshotLifecyclePolicyRequest.timeout());
174+
request.addParameters(params.asMap());
175+
return request;
176+
}
177+
178+
static Request putSnapshotLifecyclePolicy(PutSnapshotLifecyclePolicyRequest putSnapshotLifecyclePolicyRequest) throws IOException {
179+
String endpoint = new RequestConverters.EndpointBuilder()
180+
.addPathPartAsIs("_slm/policy")
181+
.addPathPartAsIs(putSnapshotLifecyclePolicyRequest.getPolicy().getId())
182+
.build();
183+
Request request = new Request(HttpPut.METHOD_NAME, endpoint);
184+
RequestConverters.Params params = new RequestConverters.Params();
185+
params.withMasterTimeout(putSnapshotLifecyclePolicyRequest.masterNodeTimeout());
186+
params.withTimeout(putSnapshotLifecyclePolicyRequest.timeout());
187+
request.addParameters(params.asMap());
188+
request.setEntity(RequestConverters.createEntity(putSnapshotLifecyclePolicyRequest, RequestConverters.REQUEST_BODY_CONTENT_TYPE));
189+
return request;
190+
}
191+
192+
static Request deleteSnapshotLifecyclePolicy(DeleteSnapshotLifecyclePolicyRequest deleteSnapshotLifecyclePolicyRequest) {
193+
Request request = new Request(HttpDelete.METHOD_NAME,
194+
new RequestConverters.EndpointBuilder()
195+
.addPathPartAsIs("_slm/policy")
196+
.addPathPartAsIs(deleteSnapshotLifecyclePolicyRequest.getPolicyId())
197+
.build());
198+
RequestConverters.Params params = new RequestConverters.Params();
199+
params.withMasterTimeout(deleteSnapshotLifecyclePolicyRequest.masterNodeTimeout());
200+
params.withTimeout(deleteSnapshotLifecyclePolicyRequest.timeout());
201+
request.addParameters(params.asMap());
202+
return request;
203+
}
204+
205+
static Request executeSnapshotLifecyclePolicy(ExecuteSnapshotLifecyclePolicyRequest executeSnapshotLifecyclePolicyRequest) {
206+
Request request = new Request(HttpPut.METHOD_NAME,
207+
new RequestConverters.EndpointBuilder()
208+
.addPathPartAsIs("_slm/policy")
209+
.addPathPartAsIs(executeSnapshotLifecyclePolicyRequest.getPolicyId())
210+
.addPathPartAsIs("_execute")
211+
.build());
212+
RequestConverters.Params params = new RequestConverters.Params();
213+
params.withMasterTimeout(executeSnapshotLifecyclePolicyRequest.masterNodeTimeout());
214+
params.withTimeout(executeSnapshotLifecyclePolicyRequest.timeout());
215+
request.addParameters(params.asMap());
216+
return request;
217+
}
162218
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/*
2+
* Licensed to Elasticsearch under one or more contributor
3+
* license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright
5+
* ownership. Elasticsearch licenses this file to you under
6+
* the Apache License, Version 2.0 (the "License"); you may
7+
* not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
20+
package org.elasticsearch.client.snapshotlifecycle;
21+
22+
import org.elasticsearch.client.TimedRequest;
23+
24+
import java.util.Objects;
25+
26+
public class DeleteSnapshotLifecyclePolicyRequest extends TimedRequest {
27+
private final String policyId;
28+
29+
public DeleteSnapshotLifecyclePolicyRequest(String policyId) {
30+
this.policyId = policyId;
31+
}
32+
33+
public String getPolicyId() {
34+
return this.policyId;
35+
}
36+
37+
@Override
38+
public boolean equals(Object o) {
39+
if (this == o) return true;
40+
if (o == null || getClass() != o.getClass()) return false;
41+
DeleteSnapshotLifecyclePolicyRequest other = (DeleteSnapshotLifecyclePolicyRequest) o;
42+
return this.policyId.equals(other.policyId);
43+
}
44+
45+
@Override
46+
public int hashCode() {
47+
return Objects.hash(this.policyId);
48+
}
49+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/*
2+
* Licensed to Elasticsearch under one or more contributor
3+
* license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright
5+
* ownership. Elasticsearch licenses this file to you under
6+
* the Apache License, Version 2.0 (the "License"); you may
7+
* not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
20+
package org.elasticsearch.client.snapshotlifecycle;
21+
22+
import org.elasticsearch.client.TimedRequest;
23+
24+
import java.util.Objects;
25+
26+
public class ExecuteSnapshotLifecyclePolicyRequest extends TimedRequest {
27+
private final String policyId;
28+
29+
public ExecuteSnapshotLifecyclePolicyRequest(String policyId) {
30+
this.policyId = policyId;
31+
}
32+
33+
public String getPolicyId() {
34+
return this.policyId;
35+
}
36+
37+
@Override
38+
public boolean equals(Object o) {
39+
if (this == o) return true;
40+
if (o == null || getClass() != o.getClass()) return false;
41+
ExecuteSnapshotLifecyclePolicyRequest other = (ExecuteSnapshotLifecyclePolicyRequest) o;
42+
return this.policyId.equals(other.policyId);
43+
}
44+
45+
@Override
46+
public int hashCode() {
47+
return Objects.hash(this.policyId);
48+
}
49+
}

0 commit comments

Comments
 (0)