aws-sdk-s3control 1.51.0 → 1.52.0

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
  SHA256:
3
- metadata.gz: e5109e68962119d4a9a904aaa1582997ae67d3adf2922b6438009c4b23daa30a
4
- data.tar.gz: fa51ee6943a793ef655b6d5c89f4aa4b3205ae42b708f765e29fe8b45662091c
3
+ metadata.gz: 16617c67898412da5e42627190c454a07ef167a7226af9db9890ff049ef2cb64
4
+ data.tar.gz: 79233b228107e2b6c098be39390f557420b5da0cd5998f0a4c608d08609c3af3
5
5
  SHA512:
6
- metadata.gz: 02be32fd9ff470da7bbfb4090e7ece65eecb9fc392d74df42aac2c2f3cf205f82bb148691c703eccd94b2b1944c191a0e37978bed1c968bfa2fd9bb3c90c98dc
7
- data.tar.gz: 4ac27366df7355c0a3764875b88a2624656b48a4667abf1fca62e6eb4b5f9753ed3dcb33ecba70d4314b65b440ffcc1a0001b7e307e506b5483a72fe8f9fbddc
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.51.0
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.51.0'
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
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-s3control/customizations'
48
48
  # @!group service
49
49
  module Aws::S3Control
50
50
 
51
- GEM_VERSION = '1.51.0'
51
+ GEM_VERSION = '1.52.0'
52
52
 
53
53
  end
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.51.0
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-09-21 00:00:00.000000000 Z
11
+ date: 2022-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4