aws-sdk-s3control 1.36.0 → 1.37.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3control.rb +1 -1
- data/lib/aws-sdk-s3control/client.rb +1 -1
- data/lib/aws-sdk-s3control/client_api.rb +4 -1
- data/lib/aws-sdk-s3control/types.rb +8 -9
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 679f82abd4b7d4a97a23fd00132d5f1d3d7605b6fcf4f12096b5fe2ac194528c
|
4
|
+
data.tar.gz: 8ed1a58058cbd0be44c68172fbf370ea4a84de2768c9a806de7ac0ec20c3183b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 237475ab470557b578559e007add4db170fcb8ac968c80a68bddcce9da4b4805ffc8d26e538764df32dc8244dc931def5b46bbe844bbd776b8d66f825f749b26
|
7
|
+
data.tar.gz: e708187653aaaa9ed8c8204602ab6e7f76b9934f13fd7b71fd113497cc1d8cac2871fe429023ceb6443f297ca1be05a782b498a0f94fb694fee88c21059c5405
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.37.0
|
data/lib/aws-sdk-s3control.rb
CHANGED
@@ -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.
|
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::
|
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
|
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.
|
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-
|
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.
|
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.
|
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:
|