aws-sdk-s3control 1.51.0 → 1.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3control/client.rb +7 -7
- data/lib/aws-sdk-s3control/types.rb +7 -7
- data/lib/aws-sdk-s3control.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 16617c67898412da5e42627190c454a07ef167a7226af9db9890ff049ef2cb64
|
|
4
|
+
data.tar.gz: 79233b228107e2b6c098be39390f557420b5da0cd5998f0a4c608d08609c3af3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7ae241f1cdbb47b22d43deb079758aacf20665396e3d107a790c5ae9e4a5a8c591502f08f862e2ead3951fc5b8b23fc49454b2bb10ab4d4725065923a04fd382
|
|
7
|
+
data.tar.gz: c62a0b01338559f44ed9fa749899dfcaa235ba50dee5066350c82ddd2a08f2d4d2f407573f312e1f74b965721857bc697dbf9fa3b5e8fa1409906b843ded8b25
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.52.0 (2022-10-04)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - S3 Object Lambda adds support to allow customers to intercept HeadObject and ListObjects requests and introduce their own compute. These requests were previously proxied to S3.
|
|
8
|
+
|
|
4
9
|
1.51.0 (2022-09-21)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.52.0
|
|
@@ -519,10 +519,10 @@ module Aws::S3Control
|
|
|
519
519
|
# configuration: { # required
|
|
520
520
|
# supporting_access_point: "ObjectLambdaSupportingAccessPointArn", # required
|
|
521
521
|
# cloud_watch_metrics_enabled: false,
|
|
522
|
-
# allowed_features: ["GetObject-Range"], # accepts GetObject-Range, GetObject-PartNumber
|
|
522
|
+
# allowed_features: ["GetObject-Range"], # accepts GetObject-Range, GetObject-PartNumber, HeadObject-Range, HeadObject-PartNumber
|
|
523
523
|
# transformation_configurations: [ # required
|
|
524
524
|
# {
|
|
525
|
-
# actions: ["GetObject"], # required, accepts GetObject
|
|
525
|
+
# actions: ["GetObject"], # required, accepts GetObject, HeadObject, ListObjects, ListObjectsV2
|
|
526
526
|
# content_transformation: { # required
|
|
527
527
|
# aws_lambda: {
|
|
528
528
|
# function_arn: "FunctionArnString", # required
|
|
@@ -2175,10 +2175,10 @@ module Aws::S3Control
|
|
|
2175
2175
|
# resp.configuration.supporting_access_point #=> String
|
|
2176
2176
|
# resp.configuration.cloud_watch_metrics_enabled #=> Boolean
|
|
2177
2177
|
# resp.configuration.allowed_features #=> Array
|
|
2178
|
-
# resp.configuration.allowed_features[0] #=> String, one of "GetObject-Range", "GetObject-PartNumber"
|
|
2178
|
+
# resp.configuration.allowed_features[0] #=> String, one of "GetObject-Range", "GetObject-PartNumber", "HeadObject-Range", "HeadObject-PartNumber"
|
|
2179
2179
|
# resp.configuration.transformation_configurations #=> Array
|
|
2180
2180
|
# resp.configuration.transformation_configurations[0].actions #=> Array
|
|
2181
|
-
# resp.configuration.transformation_configurations[0].actions[0] #=> String, one of "GetObject"
|
|
2181
|
+
# resp.configuration.transformation_configurations[0].actions[0] #=> String, one of "GetObject", "HeadObject", "ListObjects", "ListObjectsV2"
|
|
2182
2182
|
# resp.configuration.transformation_configurations[0].content_transformation.aws_lambda.function_arn #=> String
|
|
2183
2183
|
# resp.configuration.transformation_configurations[0].content_transformation.aws_lambda.function_payload #=> String
|
|
2184
2184
|
#
|
|
@@ -3790,10 +3790,10 @@ module Aws::S3Control
|
|
|
3790
3790
|
# configuration: { # required
|
|
3791
3791
|
# supporting_access_point: "ObjectLambdaSupportingAccessPointArn", # required
|
|
3792
3792
|
# cloud_watch_metrics_enabled: false,
|
|
3793
|
-
# allowed_features: ["GetObject-Range"], # accepts GetObject-Range, GetObject-PartNumber
|
|
3793
|
+
# allowed_features: ["GetObject-Range"], # accepts GetObject-Range, GetObject-PartNumber, HeadObject-Range, HeadObject-PartNumber
|
|
3794
3794
|
# transformation_configurations: [ # required
|
|
3795
3795
|
# {
|
|
3796
|
-
# actions: ["GetObject"], # required, accepts GetObject
|
|
3796
|
+
# actions: ["GetObject"], # required, accepts GetObject, HeadObject, ListObjects, ListObjectsV2
|
|
3797
3797
|
# content_transformation: { # required
|
|
3798
3798
|
# aws_lambda: {
|
|
3799
3799
|
# function_arn: "FunctionArnString", # required
|
|
@@ -4906,7 +4906,7 @@ module Aws::S3Control
|
|
|
4906
4906
|
params: params,
|
|
4907
4907
|
config: config)
|
|
4908
4908
|
context[:gem_name] = 'aws-sdk-s3control'
|
|
4909
|
-
context[:gem_version] = '1.
|
|
4909
|
+
context[:gem_version] = '1.52.0'
|
|
4910
4910
|
Seahorse::Client::Request.new(handlers, context)
|
|
4911
4911
|
end
|
|
4912
4912
|
|
|
@@ -411,10 +411,10 @@ module Aws::S3Control
|
|
|
411
411
|
# configuration: { # required
|
|
412
412
|
# supporting_access_point: "ObjectLambdaSupportingAccessPointArn", # required
|
|
413
413
|
# cloud_watch_metrics_enabled: false,
|
|
414
|
-
# allowed_features: ["GetObject-Range"], # accepts GetObject-Range, GetObject-PartNumber
|
|
414
|
+
# allowed_features: ["GetObject-Range"], # accepts GetObject-Range, GetObject-PartNumber, HeadObject-Range, HeadObject-PartNumber
|
|
415
415
|
# transformation_configurations: [ # required
|
|
416
416
|
# {
|
|
417
|
-
# actions: ["GetObject"], # required, accepts GetObject
|
|
417
|
+
# actions: ["GetObject"], # required, accepts GetObject, HeadObject, ListObjects, ListObjectsV2
|
|
418
418
|
# content_transformation: { # required
|
|
419
419
|
# aws_lambda: {
|
|
420
420
|
# function_arn: "FunctionArnString", # required
|
|
@@ -4381,10 +4381,10 @@ module Aws::S3Control
|
|
|
4381
4381
|
# {
|
|
4382
4382
|
# supporting_access_point: "ObjectLambdaSupportingAccessPointArn", # required
|
|
4383
4383
|
# cloud_watch_metrics_enabled: false,
|
|
4384
|
-
# allowed_features: ["GetObject-Range"], # accepts GetObject-Range, GetObject-PartNumber
|
|
4384
|
+
# allowed_features: ["GetObject-Range"], # accepts GetObject-Range, GetObject-PartNumber, HeadObject-Range, HeadObject-PartNumber
|
|
4385
4385
|
# transformation_configurations: [ # required
|
|
4386
4386
|
# {
|
|
4387
|
-
# actions: ["GetObject"], # required, accepts GetObject
|
|
4387
|
+
# actions: ["GetObject"], # required, accepts GetObject, HeadObject, ListObjects, ListObjectsV2
|
|
4388
4388
|
# content_transformation: { # required
|
|
4389
4389
|
# aws_lambda: {
|
|
4390
4390
|
# function_arn: "FunctionArnString", # required
|
|
@@ -4456,7 +4456,7 @@ module Aws::S3Control
|
|
|
4456
4456
|
# data as a hash:
|
|
4457
4457
|
#
|
|
4458
4458
|
# {
|
|
4459
|
-
# actions: ["GetObject"], # required, accepts GetObject
|
|
4459
|
+
# actions: ["GetObject"], # required, accepts GetObject, HeadObject, ListObjects, ListObjectsV2
|
|
4460
4460
|
# content_transformation: { # required
|
|
4461
4461
|
# aws_lambda: {
|
|
4462
4462
|
# function_arn: "FunctionArnString", # required
|
|
@@ -4679,10 +4679,10 @@ module Aws::S3Control
|
|
|
4679
4679
|
# configuration: { # required
|
|
4680
4680
|
# supporting_access_point: "ObjectLambdaSupportingAccessPointArn", # required
|
|
4681
4681
|
# cloud_watch_metrics_enabled: false,
|
|
4682
|
-
# allowed_features: ["GetObject-Range"], # accepts GetObject-Range, GetObject-PartNumber
|
|
4682
|
+
# allowed_features: ["GetObject-Range"], # accepts GetObject-Range, GetObject-PartNumber, HeadObject-Range, HeadObject-PartNumber
|
|
4683
4683
|
# transformation_configurations: [ # required
|
|
4684
4684
|
# {
|
|
4685
|
-
# actions: ["GetObject"], # required, accepts GetObject
|
|
4685
|
+
# actions: ["GetObject"], # required, accepts GetObject, HeadObject, ListObjects, ListObjectsV2
|
|
4686
4686
|
# content_transformation: { # required
|
|
4687
4687
|
# aws_lambda: {
|
|
4688
4688
|
# function_arn: "FunctionArnString", # required
|
data/lib/aws-sdk-s3control.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-s3control
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.52.0
|
|
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: 2022-
|
|
11
|
+
date: 2022-10-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|