forked from aws/aws-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeleteVersionRequest.java
More file actions
347 lines (325 loc) · 11.6 KB
/
DeleteVersionRequest.java
File metadata and controls
347 lines (325 loc) · 11.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
/*
* Copyright 2010-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.amazonaws.services.s3.model;
import com.amazonaws.AmazonWebServiceRequest;
import com.amazonaws.services.s3.AmazonS3;
/**
* <p>
* Provides options for deleting a specific version of an object in the specified bucket.
* Once deleted, there is no method to restore or undelete an object version.
* This is the only way to permanently delete object versions that are protected
* by versioning.
* </p>
* <p>
* Because deleting an object version is permanent and irreversible, it is a
* privileged operation that only the owner of the bucket containing the version
* may perform.
* </p>
* <p>
* An owner can only delete a version of an object if the owner has enabled versioning for
* their bucket.
* For more information about enabling versioning for a bucket, see
* {@link AmazonS3#setBucketVersioningConfiguration(SetBucketVersioningConfigurationRequest)}.
* </p>
* <p>
* Note: When attempting to delete an object that does not exist,
* Amazon S3 returns a
* success message, not an error message.
* </p>
*/
public class DeleteVersionRequest extends AmazonWebServiceRequest {
/**
* The name of the Amazon S3 bucket containing the version to delete.
*/
private String bucketName;
/**
* The key of the object version to delete.
*/
private String key;
/**
* The version ID uniquely identifying which version of the object to
* delete.
*/
private String versionId;
/**
* The optional Multi-Factor Authentication information to include with this
* request. Multi-Factor Authentication is required when deleting a version
* from a bucket that has enabled MFA Delete in its bucket versioning
* configuration. See
* {@link BucketVersioningConfiguration#setMfaDeleteEnabled(Boolean)} for
* more information on MFA Delete.
*/
private MultiFactorAuthentication mfa;
/**
* Constructs a new {@link DeleteVersionRequest} object,
* ready to be executed to
* delete the version identified by the specified version ID, in the
* specified bucket and key.
*
* @param bucketName
* The name of the bucket containing the version to delete.
* @param key
* The key of the object version to delete.
* @param versionId
* The version ID identifying the version to delete.
*
* @see DeleteVersionRequest#DeleteVersionRequest(String, String, String, MultiFactorAuthentication)
*/
public DeleteVersionRequest(String bucketName, String key, String versionId) {
this.bucketName = bucketName;
this.key = key;
this.versionId = versionId;
}
/**
* Constructs a new {@link DeleteVersionRequest} object,
* ready to be executed to
* delete the version identified by the specified version ID, in the
* specified bucket and key, with the specified Multi-Factor Authentication
* (MFA) information. Multi-Factor Authentication is required when the MFA
* Delete option has been enabled for a bucket's versioning configuration.
* See {@link BucketVersioningConfiguration} for more details on MFA
* Delete.
*
* @param bucketName
* The name of the bucket containing the version to delete.
* @param key
* The key of the object version to delete.
* @param versionId
* The version ID uniquely identifying the version to delete.
* @param mfa
* The Multi-Factor Authentication information to include in this
* request.
*
* @see DeleteVersionRequest#DeleteVersionRequest(String, String, String)
*/
public DeleteVersionRequest(String bucketName, String key, String versionId, MultiFactorAuthentication mfa) {
this(bucketName, key, versionId);
this.mfa = mfa;
}
/**
* Gets the name of the Amazon S3 bucket containing the version to
* delete.
*
* @return The name of the Amazon S3 bucket containing the version to
* delete.
*
* @see DeleteVersionRequest#setBucketName(String)
* @see DeleteVersionRequest#withBucketName(String)
*/
public String getBucketName() {
return bucketName;
}
/**
* Sets the name of the Amazon S3 bucket containing the version to delete.
*
* @param bucketName
* The name of the Amazon S3 bucket containing the version to
* delete.
*
* @see DeleteVersionRequest#getBucketName()
* @see DeleteVersionRequest#withBucketName(String)
*/
public void setBucketName(String bucketName) {
this.bucketName = bucketName;
}
/**
* Sets the name of the Amazon S3 bucket containing the version to delete.
* Returns this {@link DeleteVersionRequest}, enabling additional method
* calls to be chained together.
*
* @param bucketName
* The name of the Amazon S3 bucket containing the version to
* delete.
*
* @return The updated {@link DeleteVersionRequest} object,
* enabling additional method
* calls to be chained together.
*
* @see DeleteVersionRequest#getBucketName()
* @see DeleteVersionRequest#setBucketName(String)
*/
public DeleteVersionRequest withBucketName(String bucketName) {
setBucketName(bucketName);
return this;
}
/**
* Gets the key of the version to delete.
*
* @return The key of the version to delete.
*
* @see DeleteVersionRequest#setKey(String)
* @see DeleteVersionRequest#withKey(String)
*/
public String getKey() {
return key;
}
/**
* Sets the key of the version to delete.
*
* @param key
* The key of the version to delete.
*
* @see DeleteVersionRequest#getKey()
* @see DeleteVersionRequest#withKey(String)
*/
public void setKey(String key) {
this.key = key;
}
/**
* Sets the key of the version to delete
* Returns this {@link DeleteVersionRequest}, enabling additional method
* calls to be chained together.
*
* @param key
* The key of the version to delete.
*
* @return This {@link DeleteVersionRequest}, enabling additional method
* calls to be chained together.
*
* @see DeleteVersionRequest#getKey()
* @see DeleteVersionRequest#setKey(String)
*/
public DeleteVersionRequest withKey(String key) {
setKey(key);
return this;
}
/**
* Gets the version ID uniquely identifying which version of the object
* to delete.
*
* @return The version ID uniquely identifying which version of the object
* to delete.
*
* @see DeleteVersionRequest#setVersionId(String)
* @see DeleteVersionRequest#withVersionId(String)
*/
public String getVersionId() {
return versionId;
}
/**
* Sets the version ID uniquely identifying which version of the
* object to delete.
*
* @param versionId
* The version ID uniquely identifying which version of
* the object to delete.
*
* @see DeleteVersionRequest#getVersionId()
* @see DeleteVersionRequest#withVersionId(String)
*/
public void setVersionId(String versionId) {
this.versionId = versionId;
}
/**
* Sets the version ID uniquely identifying which version of the object to
* delete
* Returns this {@link DeleteVersionRequest}, enabling additional method
* calls to be chained together.
*
* @param versionId
* The version ID uniquely identifying which version of the
* object to delete.
*
* @return This {@link DeleteVersionRequest}, enabling additional method
* calls to be chained together.
*
* @see DeleteVersionRequest#getVersionId()
* @see DeleteVersionRequest#setVersionId(String)
*/
public DeleteVersionRequest withVersionId(String versionId) {
setVersionId(versionId);
return this;
}
/**
* <p>
* Gets the optional Multi-Factor Authentication information included
* with this request.
* </p>
* <p>
* Multi-Factor Authentication is required when deleting an object version
* from a bucket which has MFADelete enabled in its bucket versioning
* configuration.
* </p>
* <p>
* See {@link BucketVersioningConfiguration#setMfaDeleteEnabled(Boolean)}
* for more information on MFADelete.
* </p>
*
* @return The optional Multi-Factor Authentication information included
* with this request.
*
* @see DeleteVersionRequest#setMfa(MultiFactorAuthentication)
* @see DeleteVersionRequest#withMfa(MultiFactorAuthentication)
*/
public MultiFactorAuthentication getMfa() {
return mfa;
}
/**
* <p>
* Sets the optional Multi-Factor Authentication information to include with
* this request.
* </p>
* <p>
* Multi-Factor Authentication is required when deleting an object version
* from a bucket which has MFADelete enabled in its bucket versioning
* configuration.
* </p>
* <p>
* See {@link BucketVersioningConfiguration#setMfaDeleteEnabled(Boolean)}
* for more information on MFADelete.
* </p>
*
* @param mfa
* The optional Multi-Factor Authentication information to
* include with this request.
*
* @see DeleteVersionRequest#getMfa()
* @see DeleteVersionRequest#withMfa(MultiFactorAuthentication)
*/
public void setMfa(MultiFactorAuthentication mfa) {
this.mfa = mfa;
}
/**
* <p>
* Sets the optional Multi-Factor Authentication information to include with
* this request
* Returns this {@link DeleteVersionRequest}, enabling additional method
* calls to be chained together.
* </p>
* <p>
* Multi-Factor Authentication is required when deleting an object version
* from a bucket which has MFADelete enabled in its bucket versioning
* configuration
* </p>
* <p>
* See {@link BucketVersioningConfiguration#setMfaDeleteEnabled(Boolean)}
* for more information on MFADelete.
* </p>
*
* @param mfa
* The optional Multi-Factor Authentication information to
* include with this request.
*
* @return This {@link DeleteVersionRequest}, enabling additional method
* calls to be chained together.
*
* @see DeleteVersionRequest#getMfa()
* @see DeleteVersionRequest#withMfa(MultiFactorAuthentication)
*/
public DeleteVersionRequest withMfa(MultiFactorAuthentication mfa) {
setMfa(mfa);
return this;
}
}