aws-sdk-s3control 1.35.0 → 1.36.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: 3591e4ccd77b6c9fae1b9c2af8cf59895a435d2b3a837ba93e65cb937335fe2a
4
- data.tar.gz: d8ca5a20cb6a5bc23dc409c1d98b6bd6a14fa30118430d55f5cb3beb47b287ed
3
+ metadata.gz: af636287f48ee79c15c5758a133751b8fbb4fc0b3821294d215f21f4c7a03f7e
4
+ data.tar.gz: cf8cc1f1604eaa67af6088e5f14e4b08875cf98f341ba1743127c5af96b634ad
5
5
  SHA512:
6
- metadata.gz: 0a9689f34183a7f23bc0703a63406fa6e4e2c8a9a12d8e670ec526d0dd770d5945487b1a3082fc4c76e2b7f715e77d73139a4d39c4683ed2c5a7616a30465ebb
7
- data.tar.gz: b480e5ee6534320c7051126f34de3d3a13361e43d8a1f55311b6435b94827ad526ceef7955c86dbc353f0a61b6a3de8a9d28f9ad02fc9c7a02bfc888f914d613
6
+ metadata.gz: a7504a2d34d54f7ab4930b4e5cd6578a8429a83483f0086d7f906450ed608ec2b3ae9b9029ddfd027bff76afa7bf8495bdabc28e994ad978fe77ae4226ed68fb
7
+ data.tar.gz: c61ec86f82259e8859bcca0168719c33db3ec3d86927b09eb8d1c401a1a9b9d0eb8e4c877a3cc6d035b65c86abc8a20307e266e3104af61803efbdeffa17372d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.36.0 (2021-07-26)
5
+ ------------------
6
+
7
+ * Feature - S3 Access Point aliases can be used anywhere you use S3 bucket names to access data in S3
8
+
4
9
  1.35.0 (2021-07-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.35.0
1
+ 1.36.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.35.0'
51
+ GEM_VERSION = '1.36.0'
52
52
 
53
53
  end
@@ -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.35.0'
4056
+ context[:gem_version] = '1.36.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')
@@ -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"}))
@@ -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
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.35.0
4
+ version: 1.36.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-22 00:00:00.000000000 Z
11
+ date: 2021-07-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4