aws-sdk-core 2.11.275 → 2.11.276

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4129b206e84b989038693124da5deaeee2ad3467
4
- data.tar.gz: d40f7693b5e837036fb4a014a742461b8620bb01
3
+ metadata.gz: be61da6db76ff090cef36bc768d8eca4146d44b1
4
+ data.tar.gz: d692c028b2279c92567c0d5073187529393f150e
5
5
  SHA512:
6
- metadata.gz: 3eddfd48e22d4adbbc1d062e60842af4a54aa1895d80b436f0ef8f0fe97f9f6668f86ba731fccdec4cc26c6ca1bc84e09cec46161ba5fe3976127ed525d9aa45
7
- data.tar.gz: cc353eff2ce6f7e15ec9356ed572ca6d5172b25d1a28a39a791685f52218c6cc5dae3b7a9faa1618a1bc3a590e402dae85943c8185adc667239589f28b3b7263
6
+ metadata.gz: 4ae47f5287ca266228928d1299e1b9bcc1d83d0070f9a299f893ebc3b86ed34b4d8c8d0118b059266f811dfa5990f225aa3ecff81ce7dfcf58d111736790c810
7
+ data.tar.gz: 2496f6e2c9dfbfa39be013967d09cb79a8d9ca7f1293e92cb92e3a54438bb65d7bbe20f0722ebe16947bdbf46dcd0862d379f7b5a6d0e5d2d1c4051c2733dc94
@@ -3,32 +3,38 @@
3
3
  "DescribeSchedule": {
4
4
  "input_token": "NextToken",
5
5
  "output_token": "NextToken",
6
- "limit_key": "MaxResults"
6
+ "limit_key": "MaxResults",
7
+ "result_key": "ScheduleActions"
7
8
  },
8
9
  "ListChannels": {
9
10
  "input_token": "NextToken",
10
11
  "output_token": "NextToken",
11
- "limit_key": "MaxResults"
12
+ "limit_key": "MaxResults",
13
+ "result_key": "Channels"
12
14
  },
13
15
  "ListInputSecurityGroups": {
14
16
  "input_token": "NextToken",
15
17
  "output_token": "NextToken",
16
- "limit_key": "MaxResults"
18
+ "limit_key": "MaxResults",
19
+ "result_key": "InputSecurityGroups"
17
20
  },
18
21
  "ListInputs": {
19
22
  "input_token": "NextToken",
20
23
  "output_token": "NextToken",
21
- "limit_key": "MaxResults"
24
+ "limit_key": "MaxResults",
25
+ "result_key": "Inputs"
22
26
  },
23
27
  "ListOfferings": {
24
28
  "input_token": "NextToken",
25
29
  "output_token": "NextToken",
26
- "limit_key": "MaxResults"
30
+ "limit_key": "MaxResults",
31
+ "result_key": "Offerings"
27
32
  },
28
33
  "ListReservations": {
29
34
  "input_token": "NextToken",
30
35
  "output_token": "NextToken",
31
- "limit_key": "MaxResults"
36
+ "limit_key": "MaxResults",
37
+ "result_key": "Reservations"
32
38
  }
33
39
  }
34
40
  }
@@ -0,0 +1,111 @@
1
+ {
2
+ "version": 2,
3
+ "waiters": {
4
+ "ChannelCreated": {
5
+ "description": "Wait until a channel has been created",
6
+ "operation": "DescribeChannel",
7
+ "delay": 3,
8
+ "maxAttempts": 5,
9
+ "acceptors": [
10
+ {
11
+ "state": "success",
12
+ "matcher": "path",
13
+ "argument": "State",
14
+ "expected": "IDLE"
15
+ },
16
+ {
17
+ "state": "retry",
18
+ "matcher": "path",
19
+ "argument": "State",
20
+ "expected": "CREATING"
21
+ },
22
+ {
23
+ "state": "retry",
24
+ "matcher": "status",
25
+ "expected": 500
26
+ },
27
+ {
28
+ "state": "failure",
29
+ "matcher": "path",
30
+ "argument": "State",
31
+ "expected": "CREATE_FAILED"
32
+ }
33
+ ]
34
+ },
35
+ "ChannelRunning": {
36
+ "description": "Wait until a channel is running",
37
+ "operation": "DescribeChannel",
38
+ "delay": 5,
39
+ "maxAttempts": 120,
40
+ "acceptors": [
41
+ {
42
+ "state": "success",
43
+ "matcher": "path",
44
+ "argument": "State",
45
+ "expected": "RUNNING"
46
+ },
47
+ {
48
+ "state": "retry",
49
+ "matcher": "path",
50
+ "argument": "State",
51
+ "expected": "STARTING"
52
+ },
53
+ {
54
+ "state": "retry",
55
+ "matcher": "status",
56
+ "expected": 500
57
+ }
58
+ ]
59
+ },
60
+ "ChannelStopped": {
61
+ "description": "Wait until a channel has is stopped",
62
+ "operation": "DescribeChannel",
63
+ "delay": 5,
64
+ "maxAttempts": 28,
65
+ "acceptors": [
66
+ {
67
+ "state": "success",
68
+ "matcher": "path",
69
+ "argument": "State",
70
+ "expected": "IDLE"
71
+ },
72
+ {
73
+ "state": "retry",
74
+ "matcher": "path",
75
+ "argument": "State",
76
+ "expected": "STOPPING"
77
+ },
78
+ {
79
+ "state": "retry",
80
+ "matcher": "status",
81
+ "expected": 500
82
+ }
83
+ ]
84
+ },
85
+ "ChannelDeleted": {
86
+ "description": "Wait until a channel has been deleted",
87
+ "operation": "DescribeChannel",
88
+ "delay": 5,
89
+ "maxAttempts": 20,
90
+ "acceptors": [
91
+ {
92
+ "state": "success",
93
+ "matcher": "path",
94
+ "argument": "State",
95
+ "expected": "DELETED"
96
+ },
97
+ {
98
+ "state": "retry",
99
+ "matcher": "path",
100
+ "argument": "State",
101
+ "expected": "DELETING"
102
+ },
103
+ {
104
+ "state": "retry",
105
+ "matcher": "status",
106
+ "expected": 500
107
+ }
108
+ ]
109
+ }
110
+ }
111
+ }
@@ -5003,6 +5003,11 @@
5003
5003
  "shape":"ReplicationConfiguration",
5004
5004
  "locationName":"ReplicationConfiguration",
5005
5005
  "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
5006
+ },
5007
+ "Token":{
5008
+ "shape":"ObjectLockToken",
5009
+ "location":"header",
5010
+ "locationName":"x-amz-bucket-object-lock-token"
5006
5011
  }
5007
5012
  },
5008
5013
  "payload":"ReplicationConfiguration"
@@ -84,13 +84,10 @@
84
84
  "CreateBucket": [
85
85
  {
86
86
  "input": {
87
- "Bucket": "examplebucket",
88
- "CreateBucketConfiguration": {
89
- "LocationConstraint": "eu-west-1"
90
- }
87
+ "Bucket": "examplebucket"
91
88
  },
92
89
  "output": {
93
- "Location": "http://examplebucket.s3.amazonaws.com/"
90
+ "Location": "/examplebucket"
94
91
  },
95
92
  "comments": {
96
93
  "input": {
@@ -98,16 +95,19 @@
98
95
  "output": {
99
96
  }
100
97
  },
101
- "description": "The following example creates a bucket. The request specifies an AWS region where to create the bucket.",
102
- "id": "to-create-a-bucket-in-a-specific-region-1483399072992",
103
- "title": "To create a bucket in a specific region"
98
+ "description": "The following example creates a bucket.",
99
+ "id": "to-create-a-bucket--1472851826060",
100
+ "title": "To create a bucket "
104
101
  },
105
102
  {
106
103
  "input": {
107
- "Bucket": "examplebucket"
104
+ "Bucket": "examplebucket",
105
+ "CreateBucketConfiguration": {
106
+ "LocationConstraint": "eu-west-1"
107
+ }
108
108
  },
109
109
  "output": {
110
- "Location": "/examplebucket"
110
+ "Location": "http://examplebucket.s3.amazonaws.com/"
111
111
  },
112
112
  "comments": {
113
113
  "input": {
@@ -115,9 +115,9 @@
115
115
  "output": {
116
116
  }
117
117
  },
118
- "description": "The following example creates a bucket.",
119
- "id": "to-create-a-bucket--1472851826060",
120
- "title": "To create a bucket "
118
+ "description": "The following example creates a bucket. The request specifies an AWS region where to create the bucket.",
119
+ "id": "to-create-a-bucket-in-a-specific-region-1483399072992",
120
+ "title": "To create a bucket in a specific region"
121
121
  }
122
122
  ],
123
123
  "CreateMultipartUpload": [
@@ -257,8 +257,10 @@
257
257
  "DeleteObject": [
258
258
  {
259
259
  "input": {
260
- "Bucket": "ExampleBucket",
261
- "Key": "HappyFace.jpg"
260
+ "Bucket": "examplebucket",
261
+ "Key": "objectkey.jpg"
262
+ },
263
+ "output": {
262
264
  },
263
265
  "comments": {
264
266
  "input": {
@@ -266,16 +268,14 @@
266
268
  "output": {
267
269
  }
268
270
  },
269
- "description": "The following example deletes an object from a non-versioned bucket.",
270
- "id": "to-delete-an-object-from-a-non-versioned-bucket-1481588533089",
271
- "title": "To delete an object (from a non-versioned bucket)"
271
+ "description": "The following example deletes an object from an S3 bucket.",
272
+ "id": "to-delete-an-object-1472850136595",
273
+ "title": "To delete an object"
272
274
  },
273
275
  {
274
276
  "input": {
275
- "Bucket": "examplebucket",
276
- "Key": "objectkey.jpg"
277
- },
278
- "output": {
277
+ "Bucket": "ExampleBucket",
278
+ "Key": "HappyFace.jpg"
279
279
  },
280
280
  "comments": {
281
281
  "input": {
@@ -283,20 +283,19 @@
283
283
  "output": {
284
284
  }
285
285
  },
286
- "description": "The following example deletes an object from an S3 bucket.",
287
- "id": "to-delete-an-object-1472850136595",
288
- "title": "To delete an object"
286
+ "description": "The following example deletes an object from a non-versioned bucket.",
287
+ "id": "to-delete-an-object-from-a-non-versioned-bucket-1481588533089",
288
+ "title": "To delete an object (from a non-versioned bucket)"
289
289
  }
290
290
  ],
291
291
  "DeleteObjectTagging": [
292
292
  {
293
293
  "input": {
294
294
  "Bucket": "examplebucket",
295
- "Key": "HappyFace.jpg",
296
- "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
295
+ "Key": "HappyFace.jpg"
297
296
  },
298
297
  "output": {
299
- "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
298
+ "VersionId": "null"
300
299
  },
301
300
  "comments": {
302
301
  "input": {
@@ -304,17 +303,18 @@
304
303
  "output": {
305
304
  }
306
305
  },
307
- "description": "The following example removes tag set associated with the specified object version. The request specifies both the object key and object version.",
308
- "id": "to-remove-tag-set-from-an-object-version-1483145285913",
309
- "title": "To remove tag set from an object version"
306
+ "description": "The following example removes tag set associated with the specified object. If the bucket is versioning enabled, the operation removes tag set from the latest object version.",
307
+ "id": "to-remove-tag-set-from-an-object-1483145342862",
308
+ "title": "To remove tag set from an object"
310
309
  },
311
310
  {
312
311
  "input": {
313
312
  "Bucket": "examplebucket",
314
- "Key": "HappyFace.jpg"
313
+ "Key": "HappyFace.jpg",
314
+ "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
315
315
  },
316
316
  "output": {
317
- "VersionId": "null"
317
+ "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
318
318
  },
319
319
  "comments": {
320
320
  "input": {
@@ -322,9 +322,9 @@
322
322
  "output": {
323
323
  }
324
324
  },
325
- "description": "The following example removes tag set associated with the specified object. If the bucket is versioning enabled, the operation removes tag set from the latest object version.",
326
- "id": "to-remove-tag-set-from-an-object-1483145342862",
327
- "title": "To remove tag set from an object"
325
+ "description": "The following example removes tag set associated with the specified object version. The request specifies both the object key and object version.",
326
+ "id": "to-remove-tag-set-from-an-object-version-1483145285913",
327
+ "title": "To remove tag set from an object version"
328
328
  }
329
329
  ],
330
330
  "DeleteObjects": [
@@ -728,17 +728,18 @@
728
728
  {
729
729
  "input": {
730
730
  "Bucket": "examplebucket",
731
- "Key": "HappyFace.jpg"
731
+ "Key": "SampleFile.txt",
732
+ "Range": "bytes=0-9"
732
733
  },
733
734
  "output": {
734
735
  "AcceptRanges": "bytes",
735
- "ContentLength": "3191",
736
- "ContentType": "image/jpeg",
737
- "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
738
- "LastModified": "Thu, 15 Dec 2016 01:19:41 GMT",
736
+ "ContentLength": "10",
737
+ "ContentRange": "bytes 0-9/43",
738
+ "ContentType": "text/plain",
739
+ "ETag": "\"0d94420ffd0bc68cd3d152506b97a9cc\"",
740
+ "LastModified": "Thu, 09 Oct 2014 22:57:28 GMT",
739
741
  "Metadata": {
740
742
  },
741
- "TagCount": 2,
742
743
  "VersionId": "null"
743
744
  },
744
745
  "comments": {
@@ -747,25 +748,24 @@
747
748
  "output": {
748
749
  }
749
750
  },
750
- "description": "The following example retrieves an object for an S3 bucket.",
751
- "id": "to-retrieve-an-object-1481827837012",
752
- "title": "To retrieve an object"
751
+ "description": "The following example retrieves an object for an S3 bucket. The request specifies the range header to retrieve a specific byte range.",
752
+ "id": "to-retrieve-a-byte-range-of-an-object--1481832674603",
753
+ "title": "To retrieve a byte range of an object "
753
754
  },
754
755
  {
755
756
  "input": {
756
757
  "Bucket": "examplebucket",
757
- "Key": "SampleFile.txt",
758
- "Range": "bytes=0-9"
758
+ "Key": "HappyFace.jpg"
759
759
  },
760
760
  "output": {
761
761
  "AcceptRanges": "bytes",
762
- "ContentLength": "10",
763
- "ContentRange": "bytes 0-9/43",
764
- "ContentType": "text/plain",
765
- "ETag": "\"0d94420ffd0bc68cd3d152506b97a9cc\"",
766
- "LastModified": "Thu, 09 Oct 2014 22:57:28 GMT",
762
+ "ContentLength": "3191",
763
+ "ContentType": "image/jpeg",
764
+ "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
765
+ "LastModified": "Thu, 15 Dec 2016 01:19:41 GMT",
767
766
  "Metadata": {
768
767
  },
768
+ "TagCount": 2,
769
769
  "VersionId": "null"
770
770
  },
771
771
  "comments": {
@@ -774,9 +774,9 @@
774
774
  "output": {
775
775
  }
776
776
  },
777
- "description": "The following example retrieves an object for an S3 bucket. The request specifies the range header to retrieve a specific byte range.",
778
- "id": "to-retrieve-a-byte-range-of-an-object--1481832674603",
779
- "title": "To retrieve a byte range of an object "
777
+ "description": "The following example retrieves an object for an S3 bucket.",
778
+ "id": "to-retrieve-an-object-1481827837012",
779
+ "title": "To retrieve an object"
780
780
  }
781
781
  ],
782
782
  "GetObjectAcl": [
@@ -840,17 +840,20 @@
840
840
  {
841
841
  "input": {
842
842
  "Bucket": "examplebucket",
843
- "Key": "exampleobject",
844
- "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
843
+ "Key": "HappyFace.jpg"
845
844
  },
846
845
  "output": {
847
846
  "TagSet": [
848
847
  {
849
- "Key": "Key1",
850
- "Value": "Value1"
848
+ "Key": "Key4",
849
+ "Value": "Value4"
850
+ },
851
+ {
852
+ "Key": "Key3",
853
+ "Value": "Value3"
851
854
  }
852
855
  ],
853
- "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
856
+ "VersionId": "null"
854
857
  },
855
858
  "comments": {
856
859
  "input": {
@@ -858,27 +861,24 @@
858
861
  "output": {
859
862
  }
860
863
  },
861
- "description": "The following example retrieves tag set of an object. The request specifies object version.",
862
- "id": "to-retrieve-tag-set-of-a-specific-object-version-1483400283663",
863
- "title": "To retrieve tag set of a specific object version"
864
+ "description": "The following example retrieves tag set of an object.",
865
+ "id": "to-retrieve-tag-set-of-an-object-1481833847896",
866
+ "title": "To retrieve tag set of an object"
864
867
  },
865
868
  {
866
869
  "input": {
867
870
  "Bucket": "examplebucket",
868
- "Key": "HappyFace.jpg"
871
+ "Key": "exampleobject",
872
+ "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
869
873
  },
870
874
  "output": {
871
875
  "TagSet": [
872
876
  {
873
- "Key": "Key4",
874
- "Value": "Value4"
875
- },
876
- {
877
- "Key": "Key3",
878
- "Value": "Value3"
877
+ "Key": "Key1",
878
+ "Value": "Value1"
879
879
  }
880
880
  ],
881
- "VersionId": "null"
881
+ "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
882
882
  },
883
883
  "comments": {
884
884
  "input": {
@@ -886,9 +886,9 @@
886
886
  "output": {
887
887
  }
888
888
  },
889
- "description": "The following example retrieves tag set of an object.",
890
- "id": "to-retrieve-tag-set-of-an-object-1481833847896",
891
- "title": "To retrieve tag set of an object"
889
+ "description": "The following example retrieves tag set of an object. The request specifies object version.",
890
+ "id": "to-retrieve-tag-set-of-a-specific-object-version-1483400283663",
891
+ "title": "To retrieve tag set of a specific object version"
892
892
  }
893
893
  ],
894
894
  "GetObjectTorrent": [
@@ -989,37 +989,47 @@
989
989
  "ListMultipartUploads": [
990
990
  {
991
991
  "input": {
992
- "Bucket": "examplebucket"
992
+ "Bucket": "examplebucket",
993
+ "KeyMarker": "nextkeyfrompreviousresponse",
994
+ "MaxUploads": "2",
995
+ "UploadIdMarker": "valuefrompreviousresponse"
993
996
  },
994
997
  "output": {
998
+ "Bucket": "acl1",
999
+ "IsTruncated": true,
1000
+ "KeyMarker": "",
1001
+ "MaxUploads": "2",
1002
+ "NextKeyMarker": "someobjectkey",
1003
+ "NextUploadIdMarker": "examplelo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--",
1004
+ "UploadIdMarker": "",
995
1005
  "Uploads": [
996
1006
  {
997
1007
  "Initiated": "2014-05-01T05:40:58.000Z",
998
1008
  "Initiator": {
999
- "DisplayName": "display-name",
1009
+ "DisplayName": "ownder-display-name",
1000
1010
  "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"
1001
1011
  },
1002
1012
  "Key": "JavaFile",
1003
1013
  "Owner": {
1004
- "DisplayName": "display-name",
1005
- "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"
1014
+ "DisplayName": "mohanataws",
1015
+ "ID": "852b113e7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"
1006
1016
  },
1007
1017
  "StorageClass": "STANDARD",
1008
- "UploadId": "examplelUa.CInXklLQtSMJITdUnoZ1Y5GACB5UckOtspm5zbDMCkPF_qkfZzMiFZ6dksmcnqxJyIBvQMG9X9Q--"
1018
+ "UploadId": "gZ30jIqlUa.CInXklLQtSMJITdUnoZ1Y5GACB5UckOtspm5zbDMCkPF_qkfZzMiFZ6dksmcnqxJyIBvQMG9X9Q--"
1009
1019
  },
1010
1020
  {
1011
1021
  "Initiated": "2014-05-01T05:41:27.000Z",
1012
1022
  "Initiator": {
1013
- "DisplayName": "display-name",
1023
+ "DisplayName": "ownder-display-name",
1014
1024
  "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"
1015
1025
  },
1016
1026
  "Key": "JavaFile",
1017
1027
  "Owner": {
1018
- "DisplayName": "display-name",
1028
+ "DisplayName": "ownder-display-name",
1019
1029
  "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"
1020
1030
  },
1021
1031
  "StorageClass": "STANDARD",
1022
- "UploadId": "examplelo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--"
1032
+ "UploadId": "b7tZSqIlo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--"
1023
1033
  }
1024
1034
  ]
1025
1035
  },
@@ -1029,53 +1039,43 @@
1029
1039
  "output": {
1030
1040
  }
1031
1041
  },
1032
- "description": "The following example lists in-progress multipart uploads on a specific bucket.",
1033
- "id": "to-list-in-progress-multipart-uploads-on-a-bucket-1481852775260",
1034
- "title": "To list in-progress multipart uploads on a bucket"
1042
+ "description": "The following example specifies the upload-id-marker and key-marker from previous truncated response to retrieve next setup of multipart uploads.",
1043
+ "id": "list-next-set-of-multipart-uploads-when-previous-result-is-truncated-1482428106748",
1044
+ "title": "List next set of multipart uploads when previous result is truncated"
1035
1045
  },
1036
1046
  {
1037
1047
  "input": {
1038
- "Bucket": "examplebucket",
1039
- "KeyMarker": "nextkeyfrompreviousresponse",
1040
- "MaxUploads": "2",
1041
- "UploadIdMarker": "valuefrompreviousresponse"
1048
+ "Bucket": "examplebucket"
1042
1049
  },
1043
1050
  "output": {
1044
- "Bucket": "acl1",
1045
- "IsTruncated": true,
1046
- "KeyMarker": "",
1047
- "MaxUploads": "2",
1048
- "NextKeyMarker": "someobjectkey",
1049
- "NextUploadIdMarker": "examplelo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--",
1050
- "UploadIdMarker": "",
1051
1051
  "Uploads": [
1052
1052
  {
1053
1053
  "Initiated": "2014-05-01T05:40:58.000Z",
1054
1054
  "Initiator": {
1055
- "DisplayName": "ownder-display-name",
1055
+ "DisplayName": "display-name",
1056
1056
  "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"
1057
1057
  },
1058
1058
  "Key": "JavaFile",
1059
1059
  "Owner": {
1060
- "DisplayName": "mohanataws",
1061
- "ID": "852b113e7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"
1060
+ "DisplayName": "display-name",
1061
+ "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"
1062
1062
  },
1063
1063
  "StorageClass": "STANDARD",
1064
- "UploadId": "gZ30jIqlUa.CInXklLQtSMJITdUnoZ1Y5GACB5UckOtspm5zbDMCkPF_qkfZzMiFZ6dksmcnqxJyIBvQMG9X9Q--"
1064
+ "UploadId": "examplelUa.CInXklLQtSMJITdUnoZ1Y5GACB5UckOtspm5zbDMCkPF_qkfZzMiFZ6dksmcnqxJyIBvQMG9X9Q--"
1065
1065
  },
1066
1066
  {
1067
1067
  "Initiated": "2014-05-01T05:41:27.000Z",
1068
1068
  "Initiator": {
1069
- "DisplayName": "ownder-display-name",
1069
+ "DisplayName": "display-name",
1070
1070
  "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"
1071
1071
  },
1072
1072
  "Key": "JavaFile",
1073
1073
  "Owner": {
1074
- "DisplayName": "ownder-display-name",
1074
+ "DisplayName": "display-name",
1075
1075
  "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"
1076
1076
  },
1077
1077
  "StorageClass": "STANDARD",
1078
- "UploadId": "b7tZSqIlo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--"
1078
+ "UploadId": "examplelo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--"
1079
1079
  }
1080
1080
  ]
1081
1081
  },
@@ -1085,9 +1085,9 @@
1085
1085
  "output": {
1086
1086
  }
1087
1087
  },
1088
- "description": "The following example specifies the upload-id-marker and key-marker from previous truncated response to retrieve next setup of multipart uploads.",
1089
- "id": "list-next-set-of-multipart-uploads-when-previous-result-is-truncated-1482428106748",
1090
- "title": "List next set of multipart uploads when previous result is truncated"
1088
+ "description": "The following example lists in-progress multipart uploads on a specific bucket.",
1089
+ "id": "to-list-in-progress-multipart-uploads-on-a-bucket-1481852775260",
1090
+ "title": "To list in-progress multipart uploads on a bucket"
1091
1091
  }
1092
1092
  ],
1093
1093
  "ListObjectVersions": [
@@ -1567,35 +1567,16 @@
1567
1567
  "PutObject": [
1568
1568
  {
1569
1569
  "input": {
1570
- "Body": "c:\\HappyFace.jpg",
1571
- "Bucket": "examplebucket",
1572
- "Key": "HappyFace.jpg",
1573
- "Tagging": "key1=value1&key2=value2"
1574
- },
1575
- "output": {
1576
- "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
1577
- "VersionId": "psM2sYY4.o1501dSx8wMvnkOzSBB.V4a"
1578
- },
1579
- "comments": {
1580
- "input": {
1581
- },
1582
- "output": {
1583
- }
1584
- },
1585
- "description": "The following example uploads an object. The request specifies optional object tags. The bucket is versioned, therefore S3 returns version ID of the newly created object.",
1586
- "id": "to-upload-an-object-and-specify-optional-tags-1481762310955",
1587
- "title": "To upload an object and specify optional tags"
1588
- },
1589
- {
1590
- "input": {
1591
- "ACL": "authenticated-read",
1592
1570
  "Body": "filetoupload",
1593
1571
  "Bucket": "examplebucket",
1594
- "Key": "exampleobject"
1572
+ "Key": "exampleobject",
1573
+ "ServerSideEncryption": "AES256",
1574
+ "Tagging": "key1=value1&key2=value2"
1595
1575
  },
1596
1576
  "output": {
1597
1577
  "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
1598
- "VersionId": "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr"
1578
+ "ServerSideEncryption": "AES256",
1579
+ "VersionId": "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt"
1599
1580
  },
1600
1581
  "comments": {
1601
1582
  "input": {
@@ -1603,9 +1584,9 @@
1603
1584
  "output": {
1604
1585
  }
1605
1586
  },
1606
- "description": "The following example uploads and object. The request specifies optional canned ACL (access control list) to all READ access to authenticated users. If the bucket is versioning enabled, S3 returns version ID in response.",
1607
- "id": "to-upload-an-object-and-specify-canned-acl-1483397779571",
1608
- "title": "To upload an object and specify canned ACL."
1587
+ "description": "The following example uploads and object. The request specifies the optional server-side encryption option. The request also specifies optional object tags. If the bucket is versioning enabled, S3 returns version ID in response.",
1588
+ "id": "to-upload-an-object-and-specify-server-side-encryption-and-object-tags-1483398331831",
1589
+ "title": "To upload an object and specify server-side encryption and object tags"
1609
1590
  },
1610
1591
  {
1611
1592
  "input": {
@@ -1629,16 +1610,14 @@
1629
1610
  },
1630
1611
  {
1631
1612
  "input": {
1632
- "Body": "HappyFace.jpg",
1613
+ "ACL": "authenticated-read",
1614
+ "Body": "filetoupload",
1633
1615
  "Bucket": "examplebucket",
1634
- "Key": "HappyFace.jpg",
1635
- "ServerSideEncryption": "AES256",
1636
- "StorageClass": "STANDARD_IA"
1616
+ "Key": "exampleobject"
1637
1617
  },
1638
1618
  "output": {
1639
1619
  "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
1640
- "ServerSideEncryption": "AES256",
1641
- "VersionId": "CG612hodqujkf8FaaNfp8U..FIhLROcp"
1620
+ "VersionId": "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr"
1642
1621
  },
1643
1622
  "comments": {
1644
1623
  "input": {
@@ -1646,9 +1625,9 @@
1646
1625
  "output": {
1647
1626
  }
1648
1627
  },
1649
- "description": "The following example uploads an object. The request specifies optional request headers to directs S3 to use specific storage class and use server-side encryption.",
1650
- "id": "to-upload-an-object-(specify-optional-headers)",
1651
- "title": "To upload an object (specify optional headers)"
1628
+ "description": "The following example uploads and object. The request specifies optional canned ACL (access control list) to all READ access to authenticated users. If the bucket is versioning enabled, S3 returns version ID in response.",
1629
+ "id": "to-upload-an-object-and-specify-canned-acl-1483397779571",
1630
+ "title": "To upload an object and specify canned ACL."
1652
1631
  },
1653
1632
  {
1654
1633
  "input": {
@@ -1696,16 +1675,16 @@
1696
1675
  },
1697
1676
  {
1698
1677
  "input": {
1699
- "Body": "filetoupload",
1678
+ "Body": "HappyFace.jpg",
1700
1679
  "Bucket": "examplebucket",
1701
- "Key": "exampleobject",
1680
+ "Key": "HappyFace.jpg",
1702
1681
  "ServerSideEncryption": "AES256",
1703
- "Tagging": "key1=value1&key2=value2"
1682
+ "StorageClass": "STANDARD_IA"
1704
1683
  },
1705
1684
  "output": {
1706
1685
  "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
1707
1686
  "ServerSideEncryption": "AES256",
1708
- "VersionId": "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt"
1687
+ "VersionId": "CG612hodqujkf8FaaNfp8U..FIhLROcp"
1709
1688
  },
1710
1689
  "comments": {
1711
1690
  "input": {
@@ -1713,9 +1692,30 @@
1713
1692
  "output": {
1714
1693
  }
1715
1694
  },
1716
- "description": "The following example uploads and object. The request specifies the optional server-side encryption option. The request also specifies optional object tags. If the bucket is versioning enabled, S3 returns version ID in response.",
1717
- "id": "to-upload-an-object-and-specify-server-side-encryption-and-object-tags-1483398331831",
1718
- "title": "To upload an object and specify server-side encryption and object tags"
1695
+ "description": "The following example uploads an object. The request specifies optional request headers to directs S3 to use specific storage class and use server-side encryption.",
1696
+ "id": "to-upload-an-object-(specify-optional-headers)",
1697
+ "title": "To upload an object (specify optional headers)"
1698
+ },
1699
+ {
1700
+ "input": {
1701
+ "Body": "c:\\HappyFace.jpg",
1702
+ "Bucket": "examplebucket",
1703
+ "Key": "HappyFace.jpg",
1704
+ "Tagging": "key1=value1&key2=value2"
1705
+ },
1706
+ "output": {
1707
+ "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
1708
+ "VersionId": "psM2sYY4.o1501dSx8wMvnkOzSBB.V4a"
1709
+ },
1710
+ "comments": {
1711
+ "input": {
1712
+ },
1713
+ "output": {
1714
+ }
1715
+ },
1716
+ "description": "The following example uploads an object. The request specifies optional object tags. The bucket is versioned, therefore S3 returns version ID of the newly created object.",
1717
+ "id": "to-upload-an-object-and-specify-optional-tags-1481762310955",
1718
+ "title": "To upload an object and specify optional tags"
1719
1719
  }
1720
1720
  ],
1721
1721
  "PutObjectAcl": [
@@ -1826,15 +1826,14 @@
1826
1826
  "input": {
1827
1827
  "Bucket": "examplebucket",
1828
1828
  "CopySource": "/bucketname/sourceobjectkey",
1829
- "CopySourceRange": "bytes=1-100000",
1830
1829
  "Key": "examplelargeobject",
1831
- "PartNumber": "2",
1830
+ "PartNumber": "1",
1832
1831
  "UploadId": "exampleuoh_10OhKhT7YukE9bjzTPRiuaCotmZM_pFngJFir9OZNrSr5cWa3cq3LZSUsfjI4FI7PkP91We7Nrw--"
1833
1832
  },
1834
1833
  "output": {
1835
1834
  "CopyPartResult": {
1836
- "ETag": "\"65d16d19e65a7508a51f043180edcc36\"",
1837
- "LastModified": "2016-12-29T21:44:28.000Z"
1835
+ "ETag": "\"b0c6f0e7e054ab8fa2536a2677f8734d\"",
1836
+ "LastModified": "2016-12-29T21:24:43.000Z"
1838
1837
  }
1839
1838
  },
1840
1839
  "comments": {
@@ -1843,22 +1842,23 @@
1843
1842
  "output": {
1844
1843
  }
1845
1844
  },
1846
- "description": "The following example uploads a part of a multipart upload by copying a specified byte range from an existing object as data source.",
1847
- "id": "to-upload-a-part-by-copying-byte-range-from-an-existing-object-as-data-source-1483048068594",
1848
- "title": "To upload a part by copying byte range from an existing object as data source"
1845
+ "description": "The following example uploads a part of a multipart upload by copying data from an existing object as data source.",
1846
+ "id": "to-upload-a-part-by-copying-data-from-an-existing-object-as-data-source-1483046746348",
1847
+ "title": "To upload a part by copying data from an existing object as data source"
1849
1848
  },
1850
1849
  {
1851
1850
  "input": {
1852
1851
  "Bucket": "examplebucket",
1853
1852
  "CopySource": "/bucketname/sourceobjectkey",
1853
+ "CopySourceRange": "bytes=1-100000",
1854
1854
  "Key": "examplelargeobject",
1855
- "PartNumber": "1",
1855
+ "PartNumber": "2",
1856
1856
  "UploadId": "exampleuoh_10OhKhT7YukE9bjzTPRiuaCotmZM_pFngJFir9OZNrSr5cWa3cq3LZSUsfjI4FI7PkP91We7Nrw--"
1857
1857
  },
1858
1858
  "output": {
1859
1859
  "CopyPartResult": {
1860
- "ETag": "\"b0c6f0e7e054ab8fa2536a2677f8734d\"",
1861
- "LastModified": "2016-12-29T21:24:43.000Z"
1860
+ "ETag": "\"65d16d19e65a7508a51f043180edcc36\"",
1861
+ "LastModified": "2016-12-29T21:44:28.000Z"
1862
1862
  }
1863
1863
  },
1864
1864
  "comments": {
@@ -1867,9 +1867,9 @@
1867
1867
  "output": {
1868
1868
  }
1869
1869
  },
1870
- "description": "The following example uploads a part of a multipart upload by copying data from an existing object as data source.",
1871
- "id": "to-upload-a-part-by-copying-data-from-an-existing-object-as-data-source-1483046746348",
1872
- "title": "To upload a part by copying data from an existing object as data source"
1870
+ "description": "The following example uploads a part of a multipart upload by copying a specified byte range from an existing object as data source.",
1871
+ "id": "to-upload-a-part-by-copying-byte-range-from-an-existing-object-as-data-source-1483048068594",
1872
+ "title": "To upload a part by copying byte range from an existing object as data source"
1873
1873
  }
1874
1874
  ]
1875
1875
  }
@@ -2,4 +2,5 @@ Aws.add_service(:MediaLive, {
2
2
  api: "#{Aws::API_DIR}/medialive/2017-10-14/api-2.json",
3
3
  docs: "#{Aws::API_DIR}/medialive/2017-10-14/docs-2.json",
4
4
  paginators: "#{Aws::API_DIR}/medialive/2017-10-14/paginators-1.json",
5
+ waiters: "#{Aws::API_DIR}/medialive/2017-10-14/waiters-2.json",
5
6
  })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.275'
2
+ VERSION = '2.11.276'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.275
4
+ version: 2.11.276
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-15 00:00:00.000000000 Z
11
+ date: 2019-05-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -495,6 +495,7 @@ files:
495
495
  - apis/mediaconvert/2017-08-29/paginators-1.json
496
496
  - apis/medialive/2017-10-14/api-2.json
497
497
  - apis/medialive/2017-10-14/paginators-1.json
498
+ - apis/medialive/2017-10-14/waiters-2.json
498
499
  - apis/mediapackage/2017-10-12/api-2.json
499
500
  - apis/mediapackage/2017-10-12/paginators-1.json
500
501
  - apis/mediastore-data/2017-09-01/api-2.json