aws-sdk-s3control 1.36.0 → 1.37.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: af636287f48ee79c15c5758a133751b8fbb4fc0b3821294d215f21f4c7a03f7e
4
- data.tar.gz: cf8cc1f1604eaa67af6088e5f14e4b08875cf98f341ba1743127c5af96b634ad
3
+ metadata.gz: 679f82abd4b7d4a97a23fd00132d5f1d3d7605b6fcf4f12096b5fe2ac194528c
4
+ data.tar.gz: 8ed1a58058cbd0be44c68172fbf370ea4a84de2768c9a806de7ac0ec20c3183b
5
5
  SHA512:
6
- metadata.gz: a7504a2d34d54f7ab4930b4e5cd6578a8429a83483f0086d7f906450ed608ec2b3ae9b9029ddfd027bff76afa7bf8495bdabc28e994ad978fe77ae4226ed68fb
7
- data.tar.gz: c61ec86f82259e8859bcca0168719c33db3ec3d86927b09eb8d1c401a1a9b9d0eb8e4c877a3cc6d035b65c86abc8a20307e266e3104af61803efbdeffa17372d
6
+ metadata.gz: 237475ab470557b578559e007add4db170fcb8ac968c80a68bddcce9da4b4805ffc8d26e538764df32dc8244dc931def5b46bbe844bbd776b8d66f825f749b26
7
+ data.tar.gz: e708187653aaaa9ed8c8204602ab6e7f76b9934f13fd7b71fd113497cc1d8cac2871fe429023ceb6443f297ca1be05a782b498a0f94fb694fee88c21059c5405
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.37.0 (2021-07-28)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.36.0 (2021-07-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.36.0
1
+ 1.37.0
@@ -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.36.0'
51
+ GEM_VERSION = '1.37.0'
52
52
 
53
53
  end
@@ -4053,7 +4053,7 @@ module Aws::S3Control
4053
4053
  params: params,
4054
4054
  config: config)
4055
4055
  context[:gem_name] = 'aws-sdk-s3control'
4056
- context[:gem_version] = '1.36.0'
4056
+ context[:gem_version] = '1.37.0'
4057
4057
  Seahorse::Client::Request.new(handlers, context)
4058
4058
  end
4059
4059
 
@@ -188,7 +188,7 @@ module Aws::S3Control
188
188
  ObjectLambdaAllowedFeature = Shapes::StringShape.new(name: 'ObjectLambdaAllowedFeature')
189
189
  ObjectLambdaAllowedFeaturesList = Shapes::ListShape.new(name: 'ObjectLambdaAllowedFeaturesList')
190
190
  ObjectLambdaConfiguration = Shapes::StructureShape.new(name: 'ObjectLambdaConfiguration')
191
- ObjectLambdaContentTransformation = Shapes::StructureShape.new(name: 'ObjectLambdaContentTransformation')
191
+ ObjectLambdaContentTransformation = Shapes::UnionShape.new(name: 'ObjectLambdaContentTransformation')
192
192
  ObjectLambdaPolicy = Shapes::StringShape.new(name: 'ObjectLambdaPolicy')
193
193
  ObjectLambdaSupportingAccessPointArn = Shapes::StringShape.new(name: 'ObjectLambdaSupportingAccessPointArn')
194
194
  ObjectLambdaTransformationConfiguration = Shapes::StructureShape.new(name: 'ObjectLambdaTransformationConfiguration')
@@ -781,6 +781,9 @@ module Aws::S3Control
781
781
  ObjectLambdaConfiguration.struct_class = Types::ObjectLambdaConfiguration
782
782
 
783
783
  ObjectLambdaContentTransformation.add_member(:aws_lambda, Shapes::ShapeRef.new(shape: AwsLambdaTransformation, location_name: "AwsLambda"))
784
+ ObjectLambdaContentTransformation.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
785
+ ObjectLambdaContentTransformation.add_member_subclass(:aws_lambda, Types::ObjectLambdaContentTransformation::AwsLambda)
786
+ ObjectLambdaContentTransformation.add_member_subclass(:unknown, Types::ObjectLambdaContentTransformation::Unknown)
784
787
  ObjectLambdaContentTransformation.struct_class = Types::ObjectLambdaContentTransformation
785
788
 
786
789
  ObjectLambdaTransformationConfiguration.add_member(:actions, Shapes::ShapeRef.new(shape: ObjectLambdaTransformationConfigurationActionsList, required: true, location_name: "Actions"))
@@ -3440,15 +3440,9 @@ module Aws::S3Control
3440
3440
 
3441
3441
  # A container for AwsLambdaTransformation.
3442
3442
  #
3443
- # @note When making an API call, you may pass ObjectLambdaContentTransformation
3444
- # data as a hash:
3443
+ # @note ObjectLambdaContentTransformation is a union - when making an API calls you must set exactly one of the members.
3445
3444
  #
3446
- # {
3447
- # aws_lambda: {
3448
- # function_arn: "FunctionArnString", # required
3449
- # function_payload: "AwsLambdaTransformationPayload",
3450
- # },
3451
- # }
3445
+ # @note ObjectLambdaContentTransformation is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ObjectLambdaContentTransformation corresponding to the set member.
3452
3446
  #
3453
3447
  # @!attribute [rw] aws_lambda
3454
3448
  # A container for an Lambda function.
@@ -3457,9 +3451,14 @@ module Aws::S3Control
3457
3451
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/ObjectLambdaContentTransformation AWS API Documentation
3458
3452
  #
3459
3453
  class ObjectLambdaContentTransformation < Struct.new(
3460
- :aws_lambda)
3454
+ :aws_lambda,
3455
+ :unknown)
3461
3456
  SENSITIVE = []
3462
3457
  include Aws::Structure
3458
+ include Aws::Structure::Union
3459
+
3460
+ class AwsLambda < ObjectLambdaContentTransformation; end
3461
+ class Unknown < ObjectLambdaContentTransformation; end
3463
3462
  end
3464
3463
 
3465
3464
  # A configuration used when creating an Object Lambda Access Point
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.36.0
4
+ version: 1.37.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: 2021-07-26 00:00:00.000000000 Z
11
+ date: 2021-07-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4
@@ -33,7 +33,7 @@ dependencies:
33
33
  version: '3'
34
34
  - - ">="
35
35
  - !ruby/object:Gem::Version
36
- version: 3.112.0
36
+ version: 3.118.0
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '3'
44
44
  - - ">="
45
45
  - !ruby/object:Gem::Version
46
- version: 3.112.0
46
+ version: 3.118.0
47
47
  description: Official AWS Ruby gem for AWS S3 Control. This gem is part of the AWS
48
48
  SDK for Ruby.
49
49
  email: