aws-sdk-s3control 1.56.0 → 1.57.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: 0af62c49847da4df3b44e80e2722a53820f16e9c5fbd7a1874100c443f2df7e3
4
- data.tar.gz: e793fcc46c3447ee5d655e3118422dd0b18752b0712c416ca3e60221db1d6c13
3
+ metadata.gz: 249e149ff332f5b2157ba2569f3a4b71e0dead428fc68e63d4bce15b97bbb98c
4
+ data.tar.gz: 85bcb4b1cf7a07e054f9cbc53d32f53acf873b1c4660fdab9a278ef6f92db080
5
5
  SHA512:
6
- metadata.gz: aa0fec0b6884898b4dd840c9cee1e915a413c1a06534416316e2b2c3e1e31c622e7207cfc2bf46021c64eb7718c3eb53eb6ee4c4fb8669556e442ca7d4fe5404
7
- data.tar.gz: 1835481b9f33f429145f70102d0f9e0c743afc98a4ed8f777496499b7fc87c2555d50f13b5a467fe2198fce43874e5dae5dbd3a9b22ce27d8b842c7ea34e2217
6
+ metadata.gz: 80040ca2e34ad4c49017936d15bc4f293781501e9121a383cd662eb73c1e45ccfb16c484ae805128b0d5dbbed35bdcdae080bf68a1ea53720465c17139eac311
7
+ data.tar.gz: a5eba51c70a65bccc952558714a71b52c50dd4c1fea40bc8916380e5928bd71d2776fe02e87c3063c4e63167f6f97c043ff06d9e156da874c2f3159ed36d8803
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.57.0 (2022-11-29)
5
+ ------------------
6
+
7
+ * Feature - Added two new APIs to support Amazon S3 Multi-Region Access Point failover controls: GetMultiRegionAccessPointRoutes and SubmitMultiRegionAccessPointRoutes. The failover control APIs are supported in the following Regions: us-east-1, us-west-2, eu-west-1, ap-southeast-2, and ap-northeast-1.
8
+
4
9
  1.56.0 (2022-11-17)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.56.0
1
+ 1.57.0
@@ -3163,6 +3163,63 @@ module Aws::S3Control
3163
3163
  req.send_request(options)
3164
3164
  end
3165
3165
 
3166
+ # Returns the routing configuration for a Multi-Region Access Point,
3167
+ # indicating which Regions are active or passive.
3168
+ #
3169
+ # To obtain routing control changes and failover requests, use the
3170
+ # Amazon S3 failover control infrastructure endpoints in these five
3171
+ # Amazon Web Services Regions:
3172
+ #
3173
+ # * `us-east-1`
3174
+ #
3175
+ # * `us-west-2`
3176
+ #
3177
+ # * `ap-southeast-2`
3178
+ #
3179
+ # * `ap-northeast-1`
3180
+ #
3181
+ # * `eu-west-1`
3182
+ #
3183
+ # <note markdown="1"> Your Amazon S3 bucket does not need to be in these five Regions.
3184
+ #
3185
+ # </note>
3186
+ #
3187
+ # @option params [String] :account_id
3188
+ # The Amazon Web Services account ID for the owner of the Multi-Region
3189
+ # Access Point.
3190
+ #
3191
+ # @option params [required, String] :mrap
3192
+ # The Multi-Region Access Point ARN.
3193
+ #
3194
+ # @return [Types::GetMultiRegionAccessPointRoutesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3195
+ #
3196
+ # * {Types::GetMultiRegionAccessPointRoutesResult#mrap #mrap} => String
3197
+ # * {Types::GetMultiRegionAccessPointRoutesResult#routes #routes} => Array&lt;Types::MultiRegionAccessPointRoute&gt;
3198
+ #
3199
+ # @example Request syntax with placeholder values
3200
+ #
3201
+ # resp = client.get_multi_region_access_point_routes({
3202
+ # account_id: "AccountId",
3203
+ # mrap: "MultiRegionAccessPointId", # required
3204
+ # })
3205
+ #
3206
+ # @example Response structure
3207
+ #
3208
+ # resp.mrap #=> String
3209
+ # resp.routes #=> Array
3210
+ # resp.routes[0].bucket #=> String
3211
+ # resp.routes[0].region #=> String
3212
+ # resp.routes[0].traffic_dial_percentage #=> Integer
3213
+ #
3214
+ # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetMultiRegionAccessPointRoutes AWS API Documentation
3215
+ #
3216
+ # @overload get_multi_region_access_point_routes(params = {})
3217
+ # @param [Hash] params ({})
3218
+ def get_multi_region_access_point_routes(params = {}, options = {})
3219
+ req = build_request(:get_multi_region_access_point_routes, params)
3220
+ req.send_request(options)
3221
+ end
3222
+
3166
3223
  # Retrieves the `PublicAccessBlock` configuration for an Amazon Web
3167
3224
  # Services account. For more information, see [ Using Amazon S3 block
3168
3225
  # public access][1].
@@ -4820,6 +4877,80 @@ module Aws::S3Control
4820
4877
  req.send_request(options)
4821
4878
  end
4822
4879
 
4880
+ # Submits an updated route configuration for a Multi-Region Access
4881
+ # Point. This API operation updates the routing status for the specified
4882
+ # Regions from active to passive, or from passive to active. A value of
4883
+ # `0` indicates a passive status, which means that traffic won't be
4884
+ # routed to the specified Region. A value of `100` indicates an active
4885
+ # status, which means that traffic will be routed to the specified
4886
+ # Region. At least one Region must be active at all times.
4887
+ #
4888
+ # When the routing configuration is changed, any in-progress operations
4889
+ # (uploads, copies, deletes, and so on) to formerly active Regions will
4890
+ # continue to run to their final completion state (success or failure).
4891
+ # The routing configurations of any Regions that aren’t specified remain
4892
+ # unchanged.
4893
+ #
4894
+ # <note markdown="1"> Updated routing configurations might not be immediately applied. It
4895
+ # can take up to 2 minutes for your changes to take effect.
4896
+ #
4897
+ # </note>
4898
+ #
4899
+ # To submit routing control changes and failover requests, use the
4900
+ # Amazon S3 failover control infrastructure endpoints in these five
4901
+ # Amazon Web Services Regions:
4902
+ #
4903
+ # * `us-east-1`
4904
+ #
4905
+ # * `us-west-2`
4906
+ #
4907
+ # * `ap-southeast-2`
4908
+ #
4909
+ # * `ap-northeast-1`
4910
+ #
4911
+ # * `eu-west-1`
4912
+ #
4913
+ # <note markdown="1"> Your Amazon S3 bucket does not need to be in these five Regions.
4914
+ #
4915
+ # </note>
4916
+ #
4917
+ # @option params [String] :account_id
4918
+ # The Amazon Web Services account ID for the owner of the Multi-Region
4919
+ # Access Point.
4920
+ #
4921
+ # @option params [required, String] :mrap
4922
+ # The Multi-Region Access Point ARN.
4923
+ #
4924
+ # @option params [required, Array<Types::MultiRegionAccessPointRoute>] :route_updates
4925
+ # The different routes that make up the new route configuration. Active
4926
+ # routes return a value of `100`, and passive routes return a value of
4927
+ # `0`.
4928
+ #
4929
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4930
+ #
4931
+ # @example Request syntax with placeholder values
4932
+ #
4933
+ # resp = client.submit_multi_region_access_point_routes({
4934
+ # account_id: "AccountId",
4935
+ # mrap: "MultiRegionAccessPointId", # required
4936
+ # route_updates: [ # required
4937
+ # {
4938
+ # bucket: "BucketName",
4939
+ # region: "RegionName",
4940
+ # traffic_dial_percentage: 1, # required
4941
+ # },
4942
+ # ],
4943
+ # })
4944
+ #
4945
+ # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/SubmitMultiRegionAccessPointRoutes AWS API Documentation
4946
+ #
4947
+ # @overload submit_multi_region_access_point_routes(params = {})
4948
+ # @param [Hash] params ({})
4949
+ def submit_multi_region_access_point_routes(params = {}, options = {})
4950
+ req = build_request(:submit_multi_region_access_point_routes, params)
4951
+ req.send_request(options)
4952
+ end
4953
+
4823
4954
  # Updates an existing S3 Batch Operations job's priority. For more
4824
4955
  # information, see [S3 Batch Operations][1] in the *Amazon S3 User
4825
4956
  # Guide*.
@@ -4963,7 +5094,7 @@ module Aws::S3Control
4963
5094
  params: params,
4964
5095
  config: config)
4965
5096
  context[:gem_name] = 'aws-sdk-s3control'
4966
- context[:gem_version] = '1.56.0'
5097
+ context[:gem_version] = '1.57.0'
4967
5098
  Seahorse::Client::Request.new(handlers, context)
4968
5099
  end
4969
5100
 
@@ -130,6 +130,8 @@ module Aws::S3Control
130
130
  GetMultiRegionAccessPointPolicyStatusResult = Shapes::StructureShape.new(name: 'GetMultiRegionAccessPointPolicyStatusResult')
131
131
  GetMultiRegionAccessPointRequest = Shapes::StructureShape.new(name: 'GetMultiRegionAccessPointRequest')
132
132
  GetMultiRegionAccessPointResult = Shapes::StructureShape.new(name: 'GetMultiRegionAccessPointResult')
133
+ GetMultiRegionAccessPointRoutesRequest = Shapes::StructureShape.new(name: 'GetMultiRegionAccessPointRoutesRequest')
134
+ GetMultiRegionAccessPointRoutesResult = Shapes::StructureShape.new(name: 'GetMultiRegionAccessPointRoutesResult')
133
135
  GetPublicAccessBlockOutput = Shapes::StructureShape.new(name: 'GetPublicAccessBlockOutput')
134
136
  GetPublicAccessBlockRequest = Shapes::StructureShape.new(name: 'GetPublicAccessBlockRequest')
135
137
  GetStorageLensConfigurationRequest = Shapes::StructureShape.new(name: 'GetStorageLensConfigurationRequest')
@@ -215,12 +217,14 @@ module Aws::S3Control
215
217
  MinStorageBytesPercentage = Shapes::FloatShape.new(name: 'MinStorageBytesPercentage')
216
218
  MultiRegionAccessPointAlias = Shapes::StringShape.new(name: 'MultiRegionAccessPointAlias')
217
219
  MultiRegionAccessPointClientToken = Shapes::StringShape.new(name: 'MultiRegionAccessPointClientToken')
220
+ MultiRegionAccessPointId = Shapes::StringShape.new(name: 'MultiRegionAccessPointId')
218
221
  MultiRegionAccessPointName = Shapes::StringShape.new(name: 'MultiRegionAccessPointName')
219
222
  MultiRegionAccessPointPolicyDocument = Shapes::StructureShape.new(name: 'MultiRegionAccessPointPolicyDocument')
220
223
  MultiRegionAccessPointRegionalResponse = Shapes::StructureShape.new(name: 'MultiRegionAccessPointRegionalResponse')
221
224
  MultiRegionAccessPointRegionalResponseList = Shapes::ListShape.new(name: 'MultiRegionAccessPointRegionalResponseList')
222
225
  MultiRegionAccessPointReport = Shapes::StructureShape.new(name: 'MultiRegionAccessPointReport')
223
226
  MultiRegionAccessPointReportList = Shapes::ListShape.new(name: 'MultiRegionAccessPointReportList')
227
+ MultiRegionAccessPointRoute = Shapes::StructureShape.new(name: 'MultiRegionAccessPointRoute')
224
228
  MultiRegionAccessPointStatus = Shapes::StringShape.new(name: 'MultiRegionAccessPointStatus')
225
229
  MultiRegionAccessPointsAsyncResponse = Shapes::StructureShape.new(name: 'MultiRegionAccessPointsAsyncResponse')
226
230
  NetworkOrigin = Shapes::StringShape.new(name: 'NetworkOrigin')
@@ -291,6 +295,7 @@ module Aws::S3Control
291
295
  ReplicationStatusFilterList = Shapes::ListShape.new(name: 'ReplicationStatusFilterList')
292
296
  ReportPrefixString = Shapes::StringShape.new(name: 'ReportPrefixString')
293
297
  RequestedJobStatus = Shapes::StringShape.new(name: 'RequestedJobStatus')
298
+ RouteList = Shapes::ListShape.new(name: 'RouteList')
294
299
  S3AWSRegion = Shapes::StringShape.new(name: 'S3AWSRegion')
295
300
  S3AccessControlList = Shapes::StructureShape.new(name: 'S3AccessControlList')
296
301
  S3AccessControlPolicy = Shapes::StructureShape.new(name: 'S3AccessControlPolicy')
@@ -352,6 +357,8 @@ module Aws::S3Control
352
357
  StorageLensTag = Shapes::StructureShape.new(name: 'StorageLensTag')
353
358
  StorageLensTags = Shapes::ListShape.new(name: 'StorageLensTags')
354
359
  StringForNextToken = Shapes::StringShape.new(name: 'StringForNextToken')
360
+ SubmitMultiRegionAccessPointRoutesRequest = Shapes::StructureShape.new(name: 'SubmitMultiRegionAccessPointRoutesRequest')
361
+ SubmitMultiRegionAccessPointRoutesResult = Shapes::StructureShape.new(name: 'SubmitMultiRegionAccessPointRoutesResult')
355
362
  SuspendedCause = Shapes::StringShape.new(name: 'SuspendedCause')
356
363
  SuspendedDate = Shapes::TimestampShape.new(name: 'SuspendedDate')
357
364
  TagKeyString = Shapes::StringShape.new(name: 'TagKeyString')
@@ -360,6 +367,7 @@ module Aws::S3Control
360
367
  TimeStamp = Shapes::TimestampShape.new(name: 'TimeStamp')
361
368
  TooManyRequestsException = Shapes::StructureShape.new(name: 'TooManyRequestsException')
362
369
  TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException')
370
+ TrafficDialPercentage = Shapes::IntegerShape.new(name: 'TrafficDialPercentage')
363
371
  Transition = Shapes::StructureShape.new(name: 'Transition')
364
372
  TransitionList = Shapes::ListShape.new(name: 'TransitionList')
365
373
  TransitionStorageClass = Shapes::StringShape.new(name: 'TransitionStorageClass')
@@ -733,6 +741,14 @@ module Aws::S3Control
733
741
  GetMultiRegionAccessPointResult.add_member(:access_point, Shapes::ShapeRef.new(shape: MultiRegionAccessPointReport, location_name: "AccessPoint"))
734
742
  GetMultiRegionAccessPointResult.struct_class = Types::GetMultiRegionAccessPointResult
735
743
 
744
+ GetMultiRegionAccessPointRoutesRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-account-id", metadata: {"contextParam"=>{"name"=>"AccountId"}}))
745
+ GetMultiRegionAccessPointRoutesRequest.add_member(:mrap, Shapes::ShapeRef.new(shape: MultiRegionAccessPointId, required: true, location: "uri", location_name: "mrap"))
746
+ GetMultiRegionAccessPointRoutesRequest.struct_class = Types::GetMultiRegionAccessPointRoutesRequest
747
+
748
+ GetMultiRegionAccessPointRoutesResult.add_member(:mrap, Shapes::ShapeRef.new(shape: MultiRegionAccessPointId, location_name: "Mrap"))
749
+ GetMultiRegionAccessPointRoutesResult.add_member(:routes, Shapes::ShapeRef.new(shape: RouteList, location_name: "Routes"))
750
+ GetMultiRegionAccessPointRoutesResult.struct_class = Types::GetMultiRegionAccessPointRoutesResult
751
+
736
752
  GetPublicAccessBlockOutput.add_member(:public_access_block_configuration, Shapes::ShapeRef.new(shape: PublicAccessBlockConfiguration, location_name: "PublicAccessBlockConfiguration"))
737
753
  GetPublicAccessBlockOutput.struct_class = Types::GetPublicAccessBlockOutput
738
754
  GetPublicAccessBlockOutput[:payload] = :public_access_block_configuration
@@ -989,6 +1005,11 @@ module Aws::S3Control
989
1005
 
990
1006
  MultiRegionAccessPointReportList.member = Shapes::ShapeRef.new(shape: MultiRegionAccessPointReport, location_name: "AccessPoint")
991
1007
 
1008
+ MultiRegionAccessPointRoute.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, location_name: "Bucket"))
1009
+ MultiRegionAccessPointRoute.add_member(:region, Shapes::ShapeRef.new(shape: RegionName, location_name: "Region"))
1010
+ MultiRegionAccessPointRoute.add_member(:traffic_dial_percentage, Shapes::ShapeRef.new(shape: TrafficDialPercentage, required: true, location_name: "TrafficDialPercentage"))
1011
+ MultiRegionAccessPointRoute.struct_class = Types::MultiRegionAccessPointRoute
1012
+
992
1013
  MultiRegionAccessPointsAsyncResponse.add_member(:regions, Shapes::ShapeRef.new(shape: MultiRegionAccessPointRegionalResponseList, location_name: "Regions"))
993
1014
  MultiRegionAccessPointsAsyncResponse.struct_class = Types::MultiRegionAccessPointsAsyncResponse
994
1015
 
@@ -1160,6 +1181,8 @@ module Aws::S3Control
1160
1181
 
1161
1182
  ReplicationStatusFilterList.member = Shapes::ShapeRef.new(shape: ReplicationStatus)
1162
1183
 
1184
+ RouteList.member = Shapes::ShapeRef.new(shape: MultiRegionAccessPointRoute, location_name: "Route")
1185
+
1163
1186
  S3AccessControlList.add_member(:owner, Shapes::ShapeRef.new(shape: S3ObjectOwner, required: true, location_name: "Owner"))
1164
1187
  S3AccessControlList.add_member(:grants, Shapes::ShapeRef.new(shape: S3GrantList, location_name: "Grants"))
1165
1188
  S3AccessControlList.struct_class = Types::S3AccessControlList
@@ -1323,6 +1346,13 @@ module Aws::S3Control
1323
1346
 
1324
1347
  StorageLensTags.member = Shapes::ShapeRef.new(shape: StorageLensTag, location_name: "Tag")
1325
1348
 
1349
+ SubmitMultiRegionAccessPointRoutesRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-account-id", metadata: {"contextParam"=>{"name"=>"AccountId"}}))
1350
+ SubmitMultiRegionAccessPointRoutesRequest.add_member(:mrap, Shapes::ShapeRef.new(shape: MultiRegionAccessPointId, required: true, location: "uri", location_name: "mrap"))
1351
+ SubmitMultiRegionAccessPointRoutesRequest.add_member(:route_updates, Shapes::ShapeRef.new(shape: RouteList, required: true, location_name: "RouteUpdates"))
1352
+ SubmitMultiRegionAccessPointRoutesRequest.struct_class = Types::SubmitMultiRegionAccessPointRoutesRequest
1353
+
1354
+ SubmitMultiRegionAccessPointRoutesResult.struct_class = Types::SubmitMultiRegionAccessPointRoutesResult
1355
+
1326
1356
  Tagging.add_member(:tag_set, Shapes::ShapeRef.new(shape: S3TagSet, required: true, location_name: "TagSet"))
1327
1357
  Tagging.struct_class = Types::Tagging
1328
1358
 
@@ -1759,7 +1789,7 @@ module Aws::S3Control
1759
1789
  api.add_operation(:get_multi_region_access_point, Seahorse::Model::Operation.new.tap do |o|
1760
1790
  o.name = "GetMultiRegionAccessPoint"
1761
1791
  o.http_method = "GET"
1762
- o.http_request_uri = "/v20180820/mrap/instances/{name}"
1792
+ o.http_request_uri = "/v20180820/mrap/instances/{name+}"
1763
1793
  o.http_checksum_required = true
1764
1794
  o.endpoint_pattern = {
1765
1795
  }
@@ -1770,7 +1800,7 @@ module Aws::S3Control
1770
1800
  api.add_operation(:get_multi_region_access_point_policy, Seahorse::Model::Operation.new.tap do |o|
1771
1801
  o.name = "GetMultiRegionAccessPointPolicy"
1772
1802
  o.http_method = "GET"
1773
- o.http_request_uri = "/v20180820/mrap/instances/{name}/policy"
1803
+ o.http_request_uri = "/v20180820/mrap/instances/{name+}/policy"
1774
1804
  o.http_checksum_required = true
1775
1805
  o.endpoint_pattern = {
1776
1806
  }
@@ -1781,7 +1811,7 @@ module Aws::S3Control
1781
1811
  api.add_operation(:get_multi_region_access_point_policy_status, Seahorse::Model::Operation.new.tap do |o|
1782
1812
  o.name = "GetMultiRegionAccessPointPolicyStatus"
1783
1813
  o.http_method = "GET"
1784
- o.http_request_uri = "/v20180820/mrap/instances/{name}/policystatus"
1814
+ o.http_request_uri = "/v20180820/mrap/instances/{name+}/policystatus"
1785
1815
  o.http_checksum_required = true
1786
1816
  o.endpoint_pattern = {
1787
1817
  }
@@ -1789,6 +1819,17 @@ module Aws::S3Control
1789
1819
  o.output = Shapes::ShapeRef.new(shape: GetMultiRegionAccessPointPolicyStatusResult)
1790
1820
  end)
1791
1821
 
1822
+ api.add_operation(:get_multi_region_access_point_routes, Seahorse::Model::Operation.new.tap do |o|
1823
+ o.name = "GetMultiRegionAccessPointRoutes"
1824
+ o.http_method = "GET"
1825
+ o.http_request_uri = "/v20180820/mrap/instances/{mrap+}/routes"
1826
+ o.http_checksum_required = true
1827
+ o.endpoint_pattern = {
1828
+ }
1829
+ o.input = Shapes::ShapeRef.new(shape: GetMultiRegionAccessPointRoutesRequest)
1830
+ o.output = Shapes::ShapeRef.new(shape: GetMultiRegionAccessPointRoutesResult)
1831
+ end)
1832
+
1792
1833
  api.add_operation(:get_public_access_block, Seahorse::Model::Operation.new.tap do |o|
1793
1834
  o.name = "GetPublicAccessBlock"
1794
1835
  o.http_method = "GET"
@@ -2088,6 +2129,22 @@ module Aws::S3Control
2088
2129
  o.output = Shapes::ShapeRef.new(shape: PutStorageLensConfigurationTaggingResult)
2089
2130
  end)
2090
2131
 
2132
+ api.add_operation(:submit_multi_region_access_point_routes, Seahorse::Model::Operation.new.tap do |o|
2133
+ o.name = "SubmitMultiRegionAccessPointRoutes"
2134
+ o.http_method = "PATCH"
2135
+ o.http_request_uri = "/v20180820/mrap/instances/{mrap+}/routes"
2136
+ o.http_checksum_required = true
2137
+ o.endpoint_pattern = {
2138
+ }
2139
+ o.input = Shapes::ShapeRef.new(shape: SubmitMultiRegionAccessPointRoutesRequest,
2140
+ location_name: "SubmitMultiRegionAccessPointRoutesRequest",
2141
+ metadata: {
2142
+ "xmlNamespace" => {"uri"=>"http://awss3control.amazonaws.com/doc/2018-08-20/"}
2143
+ }
2144
+ )
2145
+ o.output = Shapes::ShapeRef.new(shape: SubmitMultiRegionAccessPointRoutesResult)
2146
+ end)
2147
+
2091
2148
  api.add_operation(:update_job_priority, Seahorse::Model::Operation.new.tap do |o|
2092
2149
  o.name = "UpdateJobPriority"
2093
2150
  o.http_method = "POST"
@@ -119,21 +119,21 @@ OiJFbmRwb2ludCJ9XX0seyJmbiI6InBhcnNlVVJMIiwiYXJndiI6W3sicmVm
119
119
  IjoiRW5kcG9pbnQifV0sImFzc2lnbiI6InVybCJ9XSwiZW5kcG9pbnQiOnsi
120
120
  dXJsIjoie3VybCNzY2hlbWV9Oi8ve3VybCNhdXRob3JpdHl9e3VybCNwYXRo
121
121
  fSIsInByb3BlcnRpZXMiOnsiYXV0aFNjaGVtZXMiOlt7Im5hbWUiOiJzaWd2
122
- NCIsImRpc2FibGVEb3VibGVFbmNvZGluZyI6dHJ1ZSwic2lnbmluZ05hbWUi
123
- OiJzMy1vdXRwb3N0cyIsInNpZ25pbmdSZWdpb24iOiJ7UmVnaW9ufSJ9XX0s
122
+ NCIsInNpZ25pbmdOYW1lIjoiczMtb3V0cG9zdHMiLCJkaXNhYmxlRG91Ymxl
123
+ RW5jb2RpbmciOnRydWUsInNpZ25pbmdSZWdpb24iOiJ7UmVnaW9ufSJ9XX0s
124
124
  ImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In0seyJjb25kaXRpb25z
125
125
  IjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VG
126
126
  SVBTIn0sdHJ1ZV19XSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9zMy1v
127
127
  dXRwb3N0cy1maXBzLntSZWdpb259LntwYXJ0aXRpb25SZXN1bHQjZG5zU3Vm
128
128
  Zml4fSIsInByb3BlcnRpZXMiOnsiYXV0aFNjaGVtZXMiOlt7Im5hbWUiOiJz
129
- aWd2NCIsImRpc2FibGVEb3VibGVFbmNvZGluZyI6dHJ1ZSwic2lnbmluZ05h
130
- bWUiOiJzMy1vdXRwb3N0cyIsInNpZ25pbmdSZWdpb24iOiJ7UmVnaW9ufSJ9
129
+ aWd2NCIsInNpZ25pbmdOYW1lIjoiczMtb3V0cG9zdHMiLCJkaXNhYmxlRG91
130
+ YmxlRW5jb2RpbmciOnRydWUsInNpZ25pbmdSZWdpb24iOiJ7UmVnaW9ufSJ9
131
131
  XX0sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In0seyJjb25kaXRp
132
132
  b25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9zMy1vdXRwb3N0
133
133
  cy57UmVnaW9ufS57cGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9w
134
- ZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJkaXNh
135
- YmxlRG91YmxlRW5jb2RpbmciOnRydWUsInNpZ25pbmdOYW1lIjoiczMtb3V0
136
- cG9zdHMiLCJzaWduaW5nUmVnaW9uIjoie1JlZ2lvbn0ifV19LCJoZWFkZXJz
134
+ ZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJzaWdu
135
+ aW5nTmFtZSI6InMzLW91dHBvc3RzIiwiZGlzYWJsZURvdWJsZUVuY29kaW5n
136
+ Ijp0cnVlLCJzaWduaW5nUmVnaW9uIjoie1JlZ2lvbn0ifV19LCJoZWFkZXJz
137
137
  Ijp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfV19LHsiY29uZGl0aW9ucyI6
138
138
  W10sImVycm9yIjoiSW52YWxpZCByZWdpb246IHJlZ2lvbiB3YXMgbm90IGEg
139
139
  dmFsaWQgRE5TIG5hbWUuIiwidHlwZSI6ImVycm9yIn1dfV19XX1dfV19XX0s
@@ -220,8 +220,8 @@ bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVz
220
220
  ZUZJUFMifSx0cnVlXX1dLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3Mz
221
221
  LW91dHBvc3RzLWZpcHMue2FjY2Vzc1BvaW50QXJuI3JlZ2lvbn0ue2FyblBh
222
222
  cnRpdGlvbiNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6eyJhdXRoU2NoZW1l
223
- cyI6W3sibmFtZSI6InNpZ3Y0IiwiZGlzYWJsZURvdWJsZUVuY29kaW5nIjp0
224
- cnVlLCJzaWduaW5nTmFtZSI6InMzLW91dHBvc3RzIiwic2lnbmluZ1JlZ2lv
223
+ cyI6W3sibmFtZSI6InNpZ3Y0Iiwic2lnbmluZ05hbWUiOiJzMy1vdXRwb3N0
224
+ cyIsImRpc2FibGVEb3VibGVFbmNvZGluZyI6dHJ1ZSwic2lnbmluZ1JlZ2lv
225
225
  biI6InthY2Nlc3NQb2ludEFybiNyZWdpb259In1dfSwiaGVhZGVycyI6eyJ4
226
226
  LWFtei1hY2NvdW50LWlkIjpbInthY2Nlc3NQb2ludEFybiNhY2NvdW50SWR9
227
227
  Il0sIngtYW16LW91dHBvc3QtaWQiOlsie291dHBvc3RJZH0iXX19LCJ0eXBl
@@ -230,16 +230,16 @@ cmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBhcnNlVVJMIiwi
230
230
  YXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6InVybCJ9XSwi
231
231
  ZW5kcG9pbnQiOnsidXJsIjoie3VybCNzY2hlbWV9Oi8ve3VybCNhdXRob3Jp
232
232
  dHl9e3VybCNwYXRofSIsInByb3BlcnRpZXMiOnsiYXV0aFNjaGVtZXMiOlt7
233
- Im5hbWUiOiJzaWd2NCIsImRpc2FibGVEb3VibGVFbmNvZGluZyI6dHJ1ZSwi
234
- c2lnbmluZ05hbWUiOiJzMy1vdXRwb3N0cyIsInNpZ25pbmdSZWdpb24iOiJ7
233
+ Im5hbWUiOiJzaWd2NCIsInNpZ25pbmdOYW1lIjoiczMtb3V0cG9zdHMiLCJk
234
+ aXNhYmxlRG91YmxlRW5jb2RpbmciOnRydWUsInNpZ25pbmdSZWdpb24iOiJ7
235
235
  YWNjZXNzUG9pbnRBcm4jcmVnaW9ufSJ9XX0sImhlYWRlcnMiOnsieC1hbXot
236
236
  YWNjb3VudC1pZCI6WyJ7YWNjZXNzUG9pbnRBcm4jYWNjb3VudElkfSJdLCJ4
237
237
  LWFtei1vdXRwb3N0LWlkIjpbIntvdXRwb3N0SWR9Il19fSwidHlwZSI6ImVu
238
238
  ZHBvaW50In0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoi
239
239
  aHR0cHM6Ly9zMy1vdXRwb3N0cy57YWNjZXNzUG9pbnRBcm4jcmVnaW9ufS57
240
240
  YXJuUGFydGl0aW9uI2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7ImF1dGhT
241
- Y2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJkaXNhYmxlRG91YmxlRW5jb2Rp
242
- bmciOnRydWUsInNpZ25pbmdOYW1lIjoiczMtb3V0cG9zdHMiLCJzaWduaW5n
241
+ Y2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJzaWduaW5nTmFtZSI6InMzLW91
242
+ dHBvc3RzIiwiZGlzYWJsZURvdWJsZUVuY29kaW5nIjp0cnVlLCJzaWduaW5n
243
243
  UmVnaW9uIjoie2FjY2Vzc1BvaW50QXJuI3JlZ2lvbn0ifV19LCJoZWFkZXJz
244
244
  Ijp7IngtYW16LWFjY291bnQtaWQiOlsie2FjY2Vzc1BvaW50QXJuI2FjY291
245
245
  bnRJZH0iXSwieC1hbXotb3V0cG9zdC1pZCI6WyJ7b3V0cG9zdElkfSJdfX0s
@@ -351,8 +351,8 @@ IjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VG
351
351
  SVBTIn0sdHJ1ZV19XSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9zMy1v
352
352
  dXRwb3N0cy1maXBzLntidWNrZXRBcm4jcmVnaW9ufS57YXJuUGFydGl0aW9u
353
353
  I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJu
354
- YW1lIjoic2lndjQiLCJkaXNhYmxlRG91YmxlRW5jb2RpbmciOnRydWUsInNp
355
- Z25pbmdOYW1lIjoiczMtb3V0cG9zdHMiLCJzaWduaW5nUmVnaW9uIjoie2J1
354
+ YW1lIjoic2lndjQiLCJzaWduaW5nTmFtZSI6InMzLW91dHBvc3RzIiwiZGlz
355
+ YWJsZURvdWJsZUVuY29kaW5nIjp0cnVlLCJzaWduaW5nUmVnaW9uIjoie2J1
356
356
  Y2tldEFybiNyZWdpb259In1dfSwiaGVhZGVycyI6eyJ4LWFtei1hY2NvdW50
357
357
  LWlkIjpbIntidWNrZXRBcm4jYWNjb3VudElkfSJdLCJ4LWFtei1vdXRwb3N0
358
358
  LWlkIjpbIntvdXRwb3N0SWR9Il19fSwidHlwZSI6ImVuZHBvaW50In0seyJj
@@ -360,17 +360,17 @@ b25kaXRpb25zIjpbeyJmbiI6ImlzU2V0IiwiYXJndiI6W3sicmVmIjoiRW5k
360
360
  cG9pbnQifV19LHsiZm4iOiJwYXJzZVVSTCIsImFyZ3YiOlt7InJlZiI6IkVu
361
361
  ZHBvaW50In1dLCJhc3NpZ24iOiJ1cmwifV0sImVuZHBvaW50Ijp7InVybCI6
362
362
  Int1cmwjc2NoZW1lfTovL3t1cmwjYXV0aG9yaXR5fXt1cmwjcGF0aH0iLCJw
363
- cm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJk
364
- aXNhYmxlRG91YmxlRW5jb2RpbmciOnRydWUsInNpZ25pbmdOYW1lIjoiczMt
365
- b3V0cG9zdHMiLCJzaWduaW5nUmVnaW9uIjoie2J1Y2tldEFybiNyZWdpb259
363
+ cm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJz
364
+ aWduaW5nTmFtZSI6InMzLW91dHBvc3RzIiwiZGlzYWJsZURvdWJsZUVuY29k
365
+ aW5nIjp0cnVlLCJzaWduaW5nUmVnaW9uIjoie2J1Y2tldEFybiNyZWdpb259
366
366
  In1dfSwiaGVhZGVycyI6eyJ4LWFtei1hY2NvdW50LWlkIjpbIntidWNrZXRB
367
367
  cm4jYWNjb3VudElkfSJdLCJ4LWFtei1vdXRwb3N0LWlkIjpbIntvdXRwb3N0
368
368
  SWR9Il19fSwidHlwZSI6ImVuZHBvaW50In0seyJjb25kaXRpb25zIjpbXSwi
369
369
  ZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9zMy1vdXRwb3N0cy57YnVja2V0
370
370
  QXJuI3JlZ2lvbn0ue2FyblBhcnRpdGlvbiNkbnNTdWZmaXh9IiwicHJvcGVy
371
- dGllcyI6eyJhdXRoU2NoZW1lcyI6W3sibmFtZSI6InNpZ3Y0IiwiZGlzYWJs
372
- ZURvdWJsZUVuY29kaW5nIjp0cnVlLCJzaWduaW5nTmFtZSI6InMzLW91dHBv
373
- c3RzIiwic2lnbmluZ1JlZ2lvbiI6IntidWNrZXRBcm4jcmVnaW9ufSJ9XX0s
371
+ dGllcyI6eyJhdXRoU2NoZW1lcyI6W3sibmFtZSI6InNpZ3Y0Iiwic2lnbmlu
372
+ Z05hbWUiOiJzMy1vdXRwb3N0cyIsImRpc2FibGVEb3VibGVFbmNvZGluZyI6
373
+ dHJ1ZSwic2lnbmluZ1JlZ2lvbiI6IntidWNrZXRBcm4jcmVnaW9ufSJ9XX0s
374
374
  ImhlYWRlcnMiOnsieC1hbXotYWNjb3VudC1pZCI6WyJ7YnVja2V0QXJuI2Fj
375
375
  Y291bnRJZH0iXSwieC1hbXotb3V0cG9zdC1pZCI6WyJ7b3V0cG9zdElkfSJd
376
376
  fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJl
@@ -442,13 +442,13 @@ dWlyZXNBY2NvdW50SWQifSx0cnVlXX0seyJmbiI6ImlzU2V0IiwiYXJndiI6
442
442
  W3sicmVmIjoiQWNjb3VudElkIn1dfV0sImVuZHBvaW50Ijp7InVybCI6Int1
443
443
  cmwjc2NoZW1lfTovL3tBY2NvdW50SWR9Lnt1cmwjYXV0aG9yaXR5fXt1cmwj
444
444
  cGF0aH0iLCJwcm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoi
445
- c2lndjQiLCJkaXNhYmxlRG91YmxlRW5jb2RpbmciOnRydWUsInNpZ25pbmdO
446
- YW1lIjoiczMiLCJzaWduaW5nUmVnaW9uIjoie1JlZ2lvbn0ifV19LCJoZWFk
445
+ c2lndjQiLCJzaWduaW5nTmFtZSI6InMzIiwiZGlzYWJsZURvdWJsZUVuY29k
446
+ aW5nIjp0cnVlLCJzaWduaW5nUmVnaW9uIjoie1JlZ2lvbn0ifV19LCJoZWFk
447
447
  ZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsiY29uZGl0aW9ucyI6W10s
448
448
  ImVuZHBvaW50Ijp7InVybCI6Int1cmwjc2NoZW1lfTovL3t1cmwjYXV0aG9y
449
449
  aXR5fXt1cmwjcGF0aH0iLCJwcm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpb
450
- eyJuYW1lIjoic2lndjQiLCJkaXNhYmxlRG91YmxlRW5jb2RpbmciOnRydWUs
451
- InNpZ25pbmdOYW1lIjoiczMiLCJzaWduaW5nUmVnaW9uIjoie1JlZ2lvbn0i
450
+ eyJuYW1lIjoic2lndjQiLCJzaWduaW5nTmFtZSI6InMzIiwiZGlzYWJsZURv
451
+ dWJsZUVuY29kaW5nIjp0cnVlLCJzaWduaW5nUmVnaW9uIjoie1JlZ2lvbn0i
452
452
  fV19LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfSx7ImNv
453
453
  bmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
454
454
  b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJV
@@ -460,8 +460,8 @@ dElkIn0sdHJ1ZV19LHsiZm4iOiJpc1NldCIsImFyZ3YiOlt7InJlZiI6IkFj
460
460
  Y291bnRJZCJ9XX1dLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3tBY2Nv
461
461
  dW50SWR9LnMzLWNvbnRyb2wtZmlwcy5kdWFsc3RhY2sue1JlZ2lvbn0ue3Bh
462
462
  cnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6eyJhdXRo
463
- U2NoZW1lcyI6W3sibmFtZSI6InNpZ3Y0IiwiZGlzYWJsZURvdWJsZUVuY29k
464
- aW5nIjp0cnVlLCJzaWduaW5nTmFtZSI6InMzIiwic2lnbmluZ1JlZ2lvbiI6
463
+ U2NoZW1lcyI6W3sibmFtZSI6InNpZ3Y0Iiwic2lnbmluZ05hbWUiOiJzMyIs
464
+ ImRpc2FibGVEb3VibGVFbmNvZGluZyI6dHJ1ZSwic2lnbmluZ1JlZ2lvbiI6
465
465
  IntSZWdpb259In1dfSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQi
466
466
  fSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
467
467
  Olt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX0seyJmbiI6ImJvb2xlYW5FcXVh
@@ -469,8 +469,8 @@ bHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJl
469
469
  bmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3MzLWNvbnRyb2wtZmlwcy5kdWFs
470
470
  c3RhY2sue1JlZ2lvbn0ue3BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9Iiwi
471
471
  cHJvcGVydGllcyI6eyJhdXRoU2NoZW1lcyI6W3sibmFtZSI6InNpZ3Y0Iiwi
472
- ZGlzYWJsZURvdWJsZUVuY29kaW5nIjp0cnVlLCJzaWduaW5nTmFtZSI6InMz
473
- Iiwic2lnbmluZ1JlZ2lvbiI6IntSZWdpb259In1dfSwiaGVhZGVycyI6e319
472
+ c2lnbmluZ05hbWUiOiJzMyIsImRpc2FibGVEb3VibGVFbmNvZGluZyI6dHJ1
473
+ ZSwic2lnbmluZ1JlZ2lvbiI6IntSZWdpb259In1dfSwiaGVhZGVycyI6e319
474
474
  LCJ0eXBlIjoiZW5kcG9pbnQifSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9v
475
475
  bGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX0s
476
476
  eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFs
@@ -481,16 +481,16 @@ Zm4iOiJpc1NldCIsImFyZ3YiOlt7InJlZiI6IkFjY291bnRJZCJ9XX1dLCJl
481
481
  bmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3tBY2NvdW50SWR9LnMzLWNvbnRy
482
482
  b2wtZmlwcy57UmVnaW9ufS57cGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0i
483
483
  LCJwcm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQi
484
- LCJkaXNhYmxlRG91YmxlRW5jb2RpbmciOnRydWUsInNpZ25pbmdOYW1lIjoi
485
- czMiLCJzaWduaW5nUmVnaW9uIjoie1JlZ2lvbn0ifV19LCJoZWFkZXJzIjp7
484
+ LCJzaWduaW5nTmFtZSI6InMzIiwiZGlzYWJsZURvdWJsZUVuY29kaW5nIjp0
485
+ cnVlLCJzaWduaW5nUmVnaW9uIjoie1JlZ2lvbn0ifV19LCJoZWFkZXJzIjp7
486
486
  fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsiY29uZGl0aW9ucyI6W3siZm4iOiJi
487
487
  b29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVd
488
488
  fSx7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1
489
489
  YWxTdGFjayJ9LGZhbHNlXX1dLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczov
490
490
  L3MzLWNvbnRyb2wtZmlwcy57UmVnaW9ufS57cGFydGl0aW9uUmVzdWx0I2Ru
491
491
  c1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1l
492
- Ijoic2lndjQiLCJkaXNhYmxlRG91YmxlRW5jb2RpbmciOnRydWUsInNpZ25p
493
- bmdOYW1lIjoiczMiLCJzaWduaW5nUmVnaW9uIjoie1JlZ2lvbn0ifV19LCJo
492
+ Ijoic2lndjQiLCJzaWduaW5nTmFtZSI6InMzIiwiZGlzYWJsZURvdWJsZUVu
493
+ Y29kaW5nIjp0cnVlLCJzaWduaW5nUmVnaW9uIjoie1JlZ2lvbn0ifV19LCJo
494
494
  ZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsiY29uZGl0aW9ucyI6
495
495
  W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
496
496
  UyJ9LGZhbHNlXX0seyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJy
@@ -501,16 +501,16 @@ fSx0cnVlXX0seyJmbiI6ImlzU2V0IiwiYXJndiI6W3sicmVmIjoiQWNjb3Vu
501
501
  dElkIn1dfV0sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8ve0FjY291bnRJ
502
502
  ZH0uczMtY29udHJvbC5kdWFsc3RhY2sue1JlZ2lvbn0ue3BhcnRpdGlvblJl
503
503
  c3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6eyJhdXRoU2NoZW1lcyI6
504
- W3sibmFtZSI6InNpZ3Y0IiwiZGlzYWJsZURvdWJsZUVuY29kaW5nIjp0cnVl
505
- LCJzaWduaW5nTmFtZSI6InMzIiwic2lnbmluZ1JlZ2lvbiI6IntSZWdpb259
504
+ W3sibmFtZSI6InNpZ3Y0Iiwic2lnbmluZ05hbWUiOiJzMyIsImRpc2FibGVE
505
+ b3VibGVFbmNvZGluZyI6dHJ1ZSwic2lnbmluZ1JlZ2lvbiI6IntSZWdpb259
506
506
  In1dfSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifSx7ImNvbmRp
507
507
  dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6
508
508
  IlVzZUZJUFMifSxmYWxzZV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwiYXJn
509
509
  diI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwiZW5kcG9pbnQi
510
510
  OnsidXJsIjoiaHR0cHM6Ly9zMy1jb250cm9sLmR1YWxzdGFjay57UmVnaW9u
511
511
  fS57cGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7
512
- ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJkaXNhYmxlRG91Ymxl
513
- RW5jb2RpbmciOnRydWUsInNpZ25pbmdOYW1lIjoiczMiLCJzaWduaW5nUmVn
512
+ ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJzaWduaW5nTmFtZSI6
513
+ InMzIiwiZGlzYWJsZURvdWJsZUVuY29kaW5nIjp0cnVlLCJzaWduaW5nUmVn
514
514
  aW9uIjoie1JlZ2lvbn0ifV19LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRw
515
515
  b2ludCJ9LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwi
516
516
  YXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LGZhbHNlXX0seyJmbiI6ImJvb2xl
@@ -521,16 +521,16 @@ ZiI6IlJlcXVpcmVzQWNjb3VudElkIn0sdHJ1ZV19LHsiZm4iOiJpc1NldCIs
521
521
  ImFyZ3YiOlt7InJlZiI6IkFjY291bnRJZCJ9XX1dLCJlbmRwb2ludCI6eyJ1
522
522
  cmwiOiJodHRwczovL3tBY2NvdW50SWR9LnMzLWNvbnRyb2wue1JlZ2lvbn0u
523
523
  e3BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6eyJh
524
- dXRoU2NoZW1lcyI6W3sibmFtZSI6InNpZ3Y0IiwiZGlzYWJsZURvdWJsZUVu
525
- Y29kaW5nIjp0cnVlLCJzaWduaW5nTmFtZSI6InMzIiwic2lnbmluZ1JlZ2lv
524
+ dXRoU2NoZW1lcyI6W3sibmFtZSI6InNpZ3Y0Iiwic2lnbmluZ05hbWUiOiJz
525
+ MyIsImRpc2FibGVEb3VibGVFbmNvZGluZyI6dHJ1ZSwic2lnbmluZ1JlZ2lv
526
526
  biI6IntSZWdpb259In1dfSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9p
527
527
  bnQifSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFy
528
528
  Z3YiOlt7InJlZiI6IlVzZUZJUFMifSxmYWxzZV19LHsiZm4iOiJib29sZWFu
529
529
  RXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sZmFsc2Vd
530
530
  fV0sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vczMtY29udHJvbC57UmVn
531
531
  aW9ufS57cGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVz
532
- Ijp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJkaXNhYmxlRG91
533
- YmxlRW5jb2RpbmciOnRydWUsInNpZ25pbmdOYW1lIjoiczMiLCJzaWduaW5n
532
+ Ijp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJzaWduaW5nTmFt
533
+ ZSI6InMzIiwiZGlzYWJsZURvdWJsZUVuY29kaW5nIjp0cnVlLCJzaWduaW5n
534
534
  UmVnaW9uIjoie1JlZ2lvbn0ifV19LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJl
535
535
  bmRwb2ludCJ9XX1dfV19XX1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9y
536
536
  IjoiSW52YWxpZCByZWdpb246IHJlZ2lvbiB3YXMgbm90IGEgdmFsaWQgRE5T
@@ -731,6 +731,26 @@ module Aws::S3Control
731
731
  end
732
732
  end
733
733
 
734
+ class GetMultiRegionAccessPointRoutes
735
+ def self.build(context)
736
+ unless context.config.regional_endpoint
737
+ endpoint = context.config.endpoint.to_s
738
+ end
739
+ Aws::S3Control::EndpointParameters.new(
740
+ region: context.config.region,
741
+ use_fips: context.config.use_fips_endpoint,
742
+ use_dual_stack: context[:use_dualstack_endpoint],
743
+ endpoint: endpoint,
744
+ account_id: context.params[:account_id],
745
+ requires_account_id: true,
746
+ outpost_id: nil,
747
+ bucket: nil,
748
+ access_point_name: nil,
749
+ use_arn_region: context.config.s3_use_arn_region,
750
+ )
751
+ end
752
+ end
753
+
734
754
  class GetPublicAccessBlock
735
755
  def self.build(context)
736
756
  unless context.config.regional_endpoint
@@ -1151,6 +1171,26 @@ module Aws::S3Control
1151
1171
  end
1152
1172
  end
1153
1173
 
1174
+ class SubmitMultiRegionAccessPointRoutes
1175
+ def self.build(context)
1176
+ unless context.config.regional_endpoint
1177
+ endpoint = context.config.endpoint.to_s
1178
+ end
1179
+ Aws::S3Control::EndpointParameters.new(
1180
+ region: context.config.region,
1181
+ use_fips: context.config.use_fips_endpoint,
1182
+ use_dual_stack: context[:use_dualstack_endpoint],
1183
+ endpoint: endpoint,
1184
+ account_id: context.params[:account_id],
1185
+ requires_account_id: true,
1186
+ outpost_id: nil,
1187
+ bucket: nil,
1188
+ access_point_name: nil,
1189
+ use_arn_region: context.config.s3_use_arn_region,
1190
+ )
1191
+ end
1192
+ end
1193
+
1154
1194
  class UpdateJobPriority
1155
1195
  def self.build(context)
1156
1196
  unless context.config.regional_endpoint
@@ -128,6 +128,8 @@ module Aws::S3Control
128
128
  Aws::S3Control::Endpoints::GetMultiRegionAccessPointPolicy.build(context)
129
129
  when :get_multi_region_access_point_policy_status
130
130
  Aws::S3Control::Endpoints::GetMultiRegionAccessPointPolicyStatus.build(context)
131
+ when :get_multi_region_access_point_routes
132
+ Aws::S3Control::Endpoints::GetMultiRegionAccessPointRoutes.build(context)
131
133
  when :get_public_access_block
132
134
  Aws::S3Control::Endpoints::GetPublicAccessBlock.build(context)
133
135
  when :get_storage_lens_configuration
@@ -170,6 +172,8 @@ module Aws::S3Control
170
172
  Aws::S3Control::Endpoints::PutStorageLensConfiguration.build(context)
171
173
  when :put_storage_lens_configuration_tagging
172
174
  Aws::S3Control::Endpoints::PutStorageLensConfigurationTagging.build(context)
175
+ when :submit_multi_region_access_point_routes
176
+ Aws::S3Control::Endpoints::SubmitMultiRegionAccessPointRoutes.build(context)
173
177
  when :update_job_priority
174
178
  Aws::S3Control::Endpoints::UpdateJobPriority.build(context)
175
179
  when :update_job_status
@@ -2760,6 +2760,51 @@ module Aws::S3Control
2760
2760
  include Aws::Structure
2761
2761
  end
2762
2762
 
2763
+ # @note When making an API call, you may pass GetMultiRegionAccessPointRoutesRequest
2764
+ # data as a hash:
2765
+ #
2766
+ # {
2767
+ # account_id: "AccountId",
2768
+ # mrap: "MultiRegionAccessPointId", # required
2769
+ # }
2770
+ #
2771
+ # @!attribute [rw] account_id
2772
+ # The Amazon Web Services account ID for the owner of the Multi-Region
2773
+ # Access Point.
2774
+ # @return [String]
2775
+ #
2776
+ # @!attribute [rw] mrap
2777
+ # The Multi-Region Access Point ARN.
2778
+ # @return [String]
2779
+ #
2780
+ # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetMultiRegionAccessPointRoutesRequest AWS API Documentation
2781
+ #
2782
+ class GetMultiRegionAccessPointRoutesRequest < Struct.new(
2783
+ :account_id,
2784
+ :mrap)
2785
+ SENSITIVE = []
2786
+ include Aws::Structure
2787
+ end
2788
+
2789
+ # @!attribute [rw] mrap
2790
+ # The Multi-Region Access Point ARN.
2791
+ # @return [String]
2792
+ #
2793
+ # @!attribute [rw] routes
2794
+ # The different routes that make up the route configuration. Active
2795
+ # routes return a value of `100`, and passive routes return a value of
2796
+ # `0`.
2797
+ # @return [Array<Types::MultiRegionAccessPointRoute>]
2798
+ #
2799
+ # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetMultiRegionAccessPointRoutesResult AWS API Documentation
2800
+ #
2801
+ class GetMultiRegionAccessPointRoutesResult < Struct.new(
2802
+ :mrap,
2803
+ :routes)
2804
+ SENSITIVE = []
2805
+ include Aws::Structure
2806
+ end
2807
+
2763
2808
  # @!attribute [rw] public_access_block_configuration
2764
2809
  # The `PublicAccessBlock` configuration currently in effect for this
2765
2810
  # Amazon Web Services account.
@@ -4478,6 +4523,70 @@ module Aws::S3Control
4478
4523
  include Aws::Structure
4479
4524
  end
4480
4525
 
4526
+ # A structure for a Multi-Region Access Point that indicates where
4527
+ # Amazon S3 traffic can be routed. Routes can be either active or
4528
+ # passive. Active routes can process Amazon S3 requests through the
4529
+ # Multi-Region Access Point, but passive routes are not eligible to
4530
+ # process Amazon S3 requests.
4531
+ #
4532
+ # Each route contains the Amazon S3 bucket name and the Amazon Web
4533
+ # Services Region that the bucket is located in. The route also includes
4534
+ # the `TrafficDialPercentage` value, which shows whether the bucket and
4535
+ # Region are active (indicated by a value of `100`) or passive
4536
+ # (indicated by a value of `0`).
4537
+ #
4538
+ # @note When making an API call, you may pass MultiRegionAccessPointRoute
4539
+ # data as a hash:
4540
+ #
4541
+ # {
4542
+ # bucket: "BucketName",
4543
+ # region: "RegionName",
4544
+ # traffic_dial_percentage: 1, # required
4545
+ # }
4546
+ #
4547
+ # @!attribute [rw] bucket
4548
+ # The name of the Amazon S3 bucket for which you'll submit a routing
4549
+ # configuration change. Either the `Bucket` or the `Region` value must
4550
+ # be provided. If both are provided, the bucket must be in the
4551
+ # specified Region.
4552
+ # @return [String]
4553
+ #
4554
+ # @!attribute [rw] region
4555
+ # The Amazon Web Services Region to which you'll be submitting a
4556
+ # routing configuration change. Either the `Bucket` or the `Region`
4557
+ # value must be provided. If both are provided, the bucket must be in
4558
+ # the specified Region.
4559
+ # @return [String]
4560
+ #
4561
+ # @!attribute [rw] traffic_dial_percentage
4562
+ # The traffic state for the specified bucket or Amazon Web Services
4563
+ # Region.
4564
+ #
4565
+ # A value of `0` indicates a passive state, which means that no new
4566
+ # traffic will be routed to the Region.
4567
+ #
4568
+ # A value of `100` indicates an active state, which means that traffic
4569
+ # will be routed to the specified Region.
4570
+ #
4571
+ # When the routing configuration for a Region is changed from active
4572
+ # to passive, any in-progress operations (uploads, copies, deletes,
4573
+ # and so on) to the formerly active Region will continue to run to
4574
+ # until a final success or failure status is reached.
4575
+ #
4576
+ # If all Regions in the routing configuration are designated as
4577
+ # passive, you'll receive an `InvalidRequest` error.
4578
+ # @return [Integer]
4579
+ #
4580
+ # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/MultiRegionAccessPointRoute AWS API Documentation
4581
+ #
4582
+ class MultiRegionAccessPointRoute < Struct.new(
4583
+ :bucket,
4584
+ :region,
4585
+ :traffic_dial_percentage)
4586
+ SENSITIVE = []
4587
+ include Aws::Structure
4588
+ end
4589
+
4481
4590
  # The Multi-Region Access Point details that are returned when querying
4482
4591
  # about an asynchronous request.
4483
4592
  #
@@ -6956,6 +7065,50 @@ module Aws::S3Control
6956
7065
  include Aws::Structure
6957
7066
  end
6958
7067
 
7068
+ # @note When making an API call, you may pass SubmitMultiRegionAccessPointRoutesRequest
7069
+ # data as a hash:
7070
+ #
7071
+ # {
7072
+ # account_id: "AccountId",
7073
+ # mrap: "MultiRegionAccessPointId", # required
7074
+ # route_updates: [ # required
7075
+ # {
7076
+ # bucket: "BucketName",
7077
+ # region: "RegionName",
7078
+ # traffic_dial_percentage: 1, # required
7079
+ # },
7080
+ # ],
7081
+ # }
7082
+ #
7083
+ # @!attribute [rw] account_id
7084
+ # The Amazon Web Services account ID for the owner of the Multi-Region
7085
+ # Access Point.
7086
+ # @return [String]
7087
+ #
7088
+ # @!attribute [rw] mrap
7089
+ # The Multi-Region Access Point ARN.
7090
+ # @return [String]
7091
+ #
7092
+ # @!attribute [rw] route_updates
7093
+ # The different routes that make up the new route configuration.
7094
+ # Active routes return a value of `100`, and passive routes return a
7095
+ # value of `0`.
7096
+ # @return [Array<Types::MultiRegionAccessPointRoute>]
7097
+ #
7098
+ # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/SubmitMultiRegionAccessPointRoutesRequest AWS API Documentation
7099
+ #
7100
+ class SubmitMultiRegionAccessPointRoutesRequest < Struct.new(
7101
+ :account_id,
7102
+ :mrap,
7103
+ :route_updates)
7104
+ SENSITIVE = []
7105
+ include Aws::Structure
7106
+ end
7107
+
7108
+ # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/SubmitMultiRegionAccessPointRoutesResult AWS API Documentation
7109
+ #
7110
+ class SubmitMultiRegionAccessPointRoutesResult < Aws::EmptyStructure; end
7111
+
6959
7112
  # @note When making an API call, you may pass Tagging
6960
7113
  # data as a hash:
6961
7114
  #
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-s3control/customizations'
52
52
  # @!group service
53
53
  module Aws::S3Control
54
54
 
55
- GEM_VERSION = '1.56.0'
55
+ GEM_VERSION = '1.57.0'
56
56
 
57
57
  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.56.0
4
+ version: 1.57.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-11-17 00:00:00.000000000 Z
11
+ date: 2022-11-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4