aws-sdk-s3control 1.35.0 → 1.39.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3control/client.rb +11 -1
- data/lib/aws-sdk-s3control/client_api.rb +14 -1
- data/lib/aws-sdk-s3control/types.rb +36 -12
- data/lib/aws-sdk-s3control.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1e112676e85274b45a38440091e5e41254483000c95b90d51e3a54a7a57565dc
|
4
|
+
data.tar.gz: 7dbce0ed3cdeca2a0dc512f3ec3c3a9e6578a64ad3f0d77a3e3ded23be22fbba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86c9c60e82fbaeb2cb5054dacb0bec2030b5e3ec1487e8bed5780958282319f5ed88cc93d74d66056e4cfc7f08ac268afbc923dad13e4a9e71388c91f482c0cb
|
7
|
+
data.tar.gz: 43d891eebfd7fa38b6f215a91d3ac5401232c56efd5c486cdee29cc317e15de10c91ab50ce3f9493aff51b6069bbd9d0ebde9e152b595c7e1735f15b73f938db
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.39.0 (2021-09-01)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.38.0 (2021-07-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.37.0 (2021-07-28)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.36.0 (2021-07-26)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - S3 Access Point aliases can be used anywhere you use S3 bucket names to access data in S3
|
23
|
+
|
4
24
|
1.35.0 (2021-07-22)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.39.0
|
@@ -424,6 +424,7 @@ module Aws::S3Control
|
|
424
424
|
# @return [Types::CreateAccessPointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
425
425
|
#
|
426
426
|
# * {Types::CreateAccessPointResult#access_point_arn #access_point_arn} => String
|
427
|
+
# * {Types::CreateAccessPointResult#alias #alias} => String
|
427
428
|
#
|
428
429
|
# @example Request syntax with placeholder values
|
429
430
|
#
|
@@ -445,6 +446,7 @@ module Aws::S3Control
|
|
445
446
|
# @example Response structure
|
446
447
|
#
|
447
448
|
# resp.access_point_arn #=> String
|
449
|
+
# resp.alias #=> String
|
448
450
|
#
|
449
451
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/CreateAccessPoint AWS API Documentation
|
450
452
|
#
|
@@ -1781,6 +1783,9 @@ module Aws::S3Control
|
|
1781
1783
|
# * {Types::GetAccessPointResult#vpc_configuration #vpc_configuration} => Types::VpcConfiguration
|
1782
1784
|
# * {Types::GetAccessPointResult#public_access_block_configuration #public_access_block_configuration} => Types::PublicAccessBlockConfiguration
|
1783
1785
|
# * {Types::GetAccessPointResult#creation_date #creation_date} => Time
|
1786
|
+
# * {Types::GetAccessPointResult#alias #alias} => String
|
1787
|
+
# * {Types::GetAccessPointResult#access_point_arn #access_point_arn} => String
|
1788
|
+
# * {Types::GetAccessPointResult#endpoints #endpoints} => Hash<String,String>
|
1784
1789
|
#
|
1785
1790
|
# @example Request syntax with placeholder values
|
1786
1791
|
#
|
@@ -1800,6 +1805,10 @@ module Aws::S3Control
|
|
1800
1805
|
# resp.public_access_block_configuration.block_public_policy #=> Boolean
|
1801
1806
|
# resp.public_access_block_configuration.restrict_public_buckets #=> Boolean
|
1802
1807
|
# resp.creation_date #=> Time
|
1808
|
+
# resp.alias #=> String
|
1809
|
+
# resp.access_point_arn #=> String
|
1810
|
+
# resp.endpoints #=> Hash
|
1811
|
+
# resp.endpoints["NonEmptyMaxLength64String"] #=> String
|
1803
1812
|
#
|
1804
1813
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetAccessPoint AWS API Documentation
|
1805
1814
|
#
|
@@ -2790,6 +2799,7 @@ module Aws::S3Control
|
|
2790
2799
|
# resp.access_point_list[0].vpc_configuration.vpc_id #=> String
|
2791
2800
|
# resp.access_point_list[0].bucket #=> String
|
2792
2801
|
# resp.access_point_list[0].access_point_arn #=> String
|
2802
|
+
# resp.access_point_list[0].alias #=> String
|
2793
2803
|
# resp.next_token #=> String
|
2794
2804
|
#
|
2795
2805
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/ListAccessPoints AWS API Documentation
|
@@ -4043,7 +4053,7 @@ module Aws::S3Control
|
|
4043
4053
|
params: params,
|
4044
4054
|
config: config)
|
4045
4055
|
context[:gem_name] = 'aws-sdk-s3control'
|
4046
|
-
context[:gem_version] = '1.
|
4056
|
+
context[:gem_version] = '1.39.0'
|
4047
4057
|
Seahorse::Client::Request.new(handlers, context)
|
4048
4058
|
end
|
4049
4059
|
|
@@ -20,6 +20,7 @@ module Aws::S3Control
|
|
20
20
|
AccountId = Shapes::StringShape.new(name: 'AccountId')
|
21
21
|
AccountLevel = Shapes::StructureShape.new(name: 'AccountLevel')
|
22
22
|
ActivityMetrics = Shapes::StructureShape.new(name: 'ActivityMetrics')
|
23
|
+
Alias = Shapes::StringShape.new(name: 'Alias')
|
23
24
|
AwsLambdaTransformation = Shapes::StructureShape.new(name: 'AwsLambdaTransformation')
|
24
25
|
AwsLambdaTransformationPayload = Shapes::StringShape.new(name: 'AwsLambdaTransformationPayload')
|
25
26
|
AwsOrgArn = Shapes::StringShape.new(name: 'AwsOrgArn')
|
@@ -65,6 +66,7 @@ module Aws::S3Control
|
|
65
66
|
DeleteStorageLensConfigurationTaggingResult = Shapes::StructureShape.new(name: 'DeleteStorageLensConfigurationTaggingResult')
|
66
67
|
DescribeJobRequest = Shapes::StructureShape.new(name: 'DescribeJobRequest')
|
67
68
|
DescribeJobResult = Shapes::StructureShape.new(name: 'DescribeJobResult')
|
69
|
+
Endpoints = Shapes::MapShape.new(name: 'Endpoints')
|
68
70
|
ExceptionMessage = Shapes::StringShape.new(name: 'ExceptionMessage')
|
69
71
|
Exclude = Shapes::StructureShape.new(name: 'Exclude')
|
70
72
|
ExpirationStatus = Shapes::StringShape.new(name: 'ExpirationStatus')
|
@@ -186,7 +188,7 @@ module Aws::S3Control
|
|
186
188
|
ObjectLambdaAllowedFeature = Shapes::StringShape.new(name: 'ObjectLambdaAllowedFeature')
|
187
189
|
ObjectLambdaAllowedFeaturesList = Shapes::ListShape.new(name: 'ObjectLambdaAllowedFeaturesList')
|
188
190
|
ObjectLambdaConfiguration = Shapes::StructureShape.new(name: 'ObjectLambdaConfiguration')
|
189
|
-
ObjectLambdaContentTransformation = Shapes::
|
191
|
+
ObjectLambdaContentTransformation = Shapes::UnionShape.new(name: 'ObjectLambdaContentTransformation')
|
190
192
|
ObjectLambdaPolicy = Shapes::StringShape.new(name: 'ObjectLambdaPolicy')
|
191
193
|
ObjectLambdaSupportingAccessPointArn = Shapes::StringShape.new(name: 'ObjectLambdaSupportingAccessPointArn')
|
192
194
|
ObjectLambdaTransformationConfiguration = Shapes::StructureShape.new(name: 'ObjectLambdaTransformationConfiguration')
|
@@ -300,6 +302,7 @@ module Aws::S3Control
|
|
300
302
|
AccessPoint.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: VpcConfiguration, location_name: "VpcConfiguration"))
|
301
303
|
AccessPoint.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location_name: "Bucket"))
|
302
304
|
AccessPoint.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: S3AccessPointArn, location_name: "AccessPointArn"))
|
305
|
+
AccessPoint.add_member(:alias, Shapes::ShapeRef.new(shape: Alias, location_name: "Alias"))
|
303
306
|
AccessPoint.struct_class = Types::AccessPoint
|
304
307
|
|
305
308
|
AccessPointList.member = Shapes::ShapeRef.new(shape: AccessPoint, location_name: "AccessPoint")
|
@@ -344,6 +347,7 @@ module Aws::S3Control
|
|
344
347
|
CreateAccessPointRequest.struct_class = Types::CreateAccessPointRequest
|
345
348
|
|
346
349
|
CreateAccessPointResult.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: S3AccessPointArn, location_name: "AccessPointArn"))
|
350
|
+
CreateAccessPointResult.add_member(:alias, Shapes::ShapeRef.new(shape: Alias, location_name: "Alias"))
|
347
351
|
CreateAccessPointResult.struct_class = Types::CreateAccessPointResult
|
348
352
|
|
349
353
|
CreateBucketConfiguration.add_member(:location_constraint, Shapes::ShapeRef.new(shape: BucketLocationConstraint, location_name: "LocationConstraint"))
|
@@ -440,6 +444,9 @@ module Aws::S3Control
|
|
440
444
|
DescribeJobResult.add_member(:job, Shapes::ShapeRef.new(shape: JobDescriptor, location_name: "Job"))
|
441
445
|
DescribeJobResult.struct_class = Types::DescribeJobResult
|
442
446
|
|
447
|
+
Endpoints.key = Shapes::ShapeRef.new(shape: NonEmptyMaxLength64String)
|
448
|
+
Endpoints.value = Shapes::ShapeRef.new(shape: NonEmptyMaxLength1024String)
|
449
|
+
|
443
450
|
Exclude.add_member(:buckets, Shapes::ShapeRef.new(shape: Buckets, location_name: "Buckets"))
|
444
451
|
Exclude.add_member(:regions, Shapes::ShapeRef.new(shape: Regions, location_name: "Regions"))
|
445
452
|
Exclude.struct_class = Types::Exclude
|
@@ -498,6 +505,9 @@ module Aws::S3Control
|
|
498
505
|
GetAccessPointResult.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: VpcConfiguration, location_name: "VpcConfiguration"))
|
499
506
|
GetAccessPointResult.add_member(:public_access_block_configuration, Shapes::ShapeRef.new(shape: PublicAccessBlockConfiguration, location_name: "PublicAccessBlockConfiguration"))
|
500
507
|
GetAccessPointResult.add_member(:creation_date, Shapes::ShapeRef.new(shape: CreationDate, location_name: "CreationDate"))
|
508
|
+
GetAccessPointResult.add_member(:alias, Shapes::ShapeRef.new(shape: Alias, location_name: "Alias"))
|
509
|
+
GetAccessPointResult.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: S3AccessPointArn, location_name: "AccessPointArn"))
|
510
|
+
GetAccessPointResult.add_member(:endpoints, Shapes::ShapeRef.new(shape: Endpoints, location_name: "Endpoints"))
|
501
511
|
GetAccessPointResult.struct_class = Types::GetAccessPointResult
|
502
512
|
|
503
513
|
GetBucketLifecycleConfigurationRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location: "header", location_name: "x-amz-account-id", metadata: {"hostLabel"=>true, "hostLabelName"=>"AccountId"}))
|
@@ -771,6 +781,9 @@ module Aws::S3Control
|
|
771
781
|
ObjectLambdaConfiguration.struct_class = Types::ObjectLambdaConfiguration
|
772
782
|
|
773
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)
|
774
787
|
ObjectLambdaContentTransformation.struct_class = Types::ObjectLambdaContentTransformation
|
775
788
|
|
776
789
|
ObjectLambdaTransformationConfiguration.add_member(:actions, Shapes::ShapeRef.new(shape: ObjectLambdaTransformationConfigurationActionsList, required: true, location_name: "Actions"))
|
@@ -65,6 +65,10 @@ module Aws::S3Control
|
|
65
65
|
# The ARN for the access point.
|
66
66
|
# @return [String]
|
67
67
|
#
|
68
|
+
# @!attribute [rw] alias
|
69
|
+
# The name or alias of the access point.
|
70
|
+
# @return [String]
|
71
|
+
#
|
68
72
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/AccessPoint AWS API Documentation
|
69
73
|
#
|
70
74
|
class AccessPoint < Struct.new(
|
@@ -72,7 +76,8 @@ module Aws::S3Control
|
|
72
76
|
:network_origin,
|
73
77
|
:vpc_configuration,
|
74
78
|
:bucket,
|
75
|
-
:access_point_arn
|
79
|
+
:access_point_arn,
|
80
|
+
:alias)
|
76
81
|
SENSITIVE = []
|
77
82
|
include Aws::Structure
|
78
83
|
end
|
@@ -376,10 +381,15 @@ module Aws::S3Control
|
|
376
381
|
# </note>
|
377
382
|
# @return [String]
|
378
383
|
#
|
384
|
+
# @!attribute [rw] alias
|
385
|
+
# The name or alias of the access point.
|
386
|
+
# @return [String]
|
387
|
+
#
|
379
388
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/CreateAccessPointResult AWS API Documentation
|
380
389
|
#
|
381
390
|
class CreateAccessPointResult < Struct.new(
|
382
|
-
:access_point_arn
|
391
|
+
:access_point_arn,
|
392
|
+
:alias)
|
383
393
|
SENSITIVE = []
|
384
394
|
include Aws::Structure
|
385
395
|
end
|
@@ -1579,6 +1589,18 @@ module Aws::S3Control
|
|
1579
1589
|
# The date and time when the specified access point was created.
|
1580
1590
|
# @return [Time]
|
1581
1591
|
#
|
1592
|
+
# @!attribute [rw] alias
|
1593
|
+
# The name or alias of the access point.
|
1594
|
+
# @return [String]
|
1595
|
+
#
|
1596
|
+
# @!attribute [rw] access_point_arn
|
1597
|
+
# The ARN of the access point.
|
1598
|
+
# @return [String]
|
1599
|
+
#
|
1600
|
+
# @!attribute [rw] endpoints
|
1601
|
+
# The VPC endpoint for the access point.
|
1602
|
+
# @return [Hash<String,String>]
|
1603
|
+
#
|
1582
1604
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetAccessPointResult AWS API Documentation
|
1583
1605
|
#
|
1584
1606
|
class GetAccessPointResult < Struct.new(
|
@@ -1587,7 +1609,10 @@ module Aws::S3Control
|
|
1587
1609
|
:network_origin,
|
1588
1610
|
:vpc_configuration,
|
1589
1611
|
:public_access_block_configuration,
|
1590
|
-
:creation_date
|
1612
|
+
:creation_date,
|
1613
|
+
:alias,
|
1614
|
+
:access_point_arn,
|
1615
|
+
:endpoints)
|
1591
1616
|
SENSITIVE = []
|
1592
1617
|
include Aws::Structure
|
1593
1618
|
end
|
@@ -3415,15 +3440,9 @@ module Aws::S3Control
|
|
3415
3440
|
|
3416
3441
|
# A container for AwsLambdaTransformation.
|
3417
3442
|
#
|
3418
|
-
# @note
|
3419
|
-
# data as a hash:
|
3443
|
+
# @note ObjectLambdaContentTransformation is a union - when making an API calls you must set exactly one of the members.
|
3420
3444
|
#
|
3421
|
-
#
|
3422
|
-
# aws_lambda: {
|
3423
|
-
# function_arn: "FunctionArnString", # required
|
3424
|
-
# function_payload: "AwsLambdaTransformationPayload",
|
3425
|
-
# },
|
3426
|
-
# }
|
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.
|
3427
3446
|
#
|
3428
3447
|
# @!attribute [rw] aws_lambda
|
3429
3448
|
# A container for an Lambda function.
|
@@ -3432,9 +3451,14 @@ module Aws::S3Control
|
|
3432
3451
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/ObjectLambdaContentTransformation AWS API Documentation
|
3433
3452
|
#
|
3434
3453
|
class ObjectLambdaContentTransformation < Struct.new(
|
3435
|
-
:aws_lambda
|
3454
|
+
:aws_lambda,
|
3455
|
+
:unknown)
|
3436
3456
|
SENSITIVE = []
|
3437
3457
|
include Aws::Structure
|
3458
|
+
include Aws::Structure::Union
|
3459
|
+
|
3460
|
+
class AwsLambda < ObjectLambdaContentTransformation; end
|
3461
|
+
class Unknown < ObjectLambdaContentTransformation; end
|
3438
3462
|
end
|
3439
3463
|
|
3440
3464
|
# A configuration used when creating an Object Lambda Access Point
|
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.39.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-
|
11
|
+
date: 2021-09-01 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.120.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.120.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:
|
@@ -82,7 +82,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
82
82
|
requirements:
|
83
83
|
- - ">="
|
84
84
|
- !ruby/object:Gem::Version
|
85
|
-
version: '
|
85
|
+
version: '2.3'
|
86
86
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
87
87
|
requirements:
|
88
88
|
- - ">="
|