aws-sdk-bcmdataexports 1.14.0 → 1.16.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: 0a92629d71ac9424b2fc6f2ebe206da1b41055f7234fa9d0f11ec9abb8b658cf
4
- data.tar.gz: dc20775ca590c7294ecd1a6418f7902a4f297332e30f5a1e162f6d5af1bcd7ec
3
+ metadata.gz: 1a5cee8ee934b98f6662c7b0bf3da328b36560847a7ab2080e08bdf8adfa70c6
4
+ data.tar.gz: 16757b43ca806711ffab439e086800108e178a76b397da143920f6a50881e14c
5
5
  SHA512:
6
- metadata.gz: e4cdfa8cb35a5b0246a06daf30155c47408dd9a687c749834c79a7d934a719720720ae5a07d93db0f8623be5d866bb273906045d49c7e45a9f66e4e7674a6fb0
7
- data.tar.gz: 110e90899947cc9290d3208c64f9c2c9da257c6556739ab9db3859c60f9cf8659199d007d4c6f878cd67ea0df4d7bc4694b1f44747ab58035f9e8585c02f0217
6
+ metadata.gz: 8f146285e1feda7d9b875d974c63c63188d2d959ca67357245189ead63c8d63b7ce2a9b570c3cc7d31aa19496898ea71ec91551cf9ae46d764016dab6cbb0d80
7
+ data.tar.gz: bb11ddea0c65518c23ebc2ddc8b6fe39178821edf637f4948e39b2f6791feb642a50ef54d9cead4fa40ac65a41fe35bed394b32d5173dcabfc84a01bcf1d963c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.16.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.15.0 (2024-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.14.0 (2024-09-24)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.16.0
@@ -257,11 +257,34 @@ module Aws::BCMDataExports
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -1039,7 +1062,7 @@ module Aws::BCMDataExports
1039
1062
  tracer: tracer
1040
1063
  )
1041
1064
  context[:gem_name] = 'aws-sdk-bcmdataexports'
1042
- context[:gem_version] = '1.14.0'
1065
+ context[:gem_version] = '1.16.0'
1043
1066
  Seahorse::Client::Request.new(handlers, context)
1044
1067
  end
1045
1068
 
@@ -45,10 +45,15 @@ module Aws::BCMDataExports
45
45
  self[:region] = options[:region]
46
46
  self[:use_fips] = options[:use_fips]
47
47
  self[:use_fips] = false if self[:use_fips].nil?
48
- if self[:use_fips].nil?
49
- raise ArgumentError, "Missing required EndpointParameter: :use_fips"
50
- end
51
48
  self[:endpoint] = options[:endpoint]
52
49
  end
50
+
51
+ def self.create(config, options={})
52
+ new({
53
+ region: config.region,
54
+ use_fips: config.use_fips_endpoint,
55
+ endpoint: (config.endpoint.to_s unless config.regional_endpoint),
56
+ }.merge(options))
57
+ end
53
58
  end
54
59
  end
@@ -12,125 +12,9 @@ module Aws::BCMDataExports
12
12
  # @api private
13
13
  module Endpoints
14
14
 
15
- class CreateExport
16
- def self.build(context)
17
- Aws::BCMDataExports::EndpointParameters.new(
18
- region: context.config.region,
19
- use_fips: context.config.use_fips_endpoint,
20
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
21
- )
22
- end
23
- end
24
-
25
- class DeleteExport
26
- def self.build(context)
27
- Aws::BCMDataExports::EndpointParameters.new(
28
- region: context.config.region,
29
- use_fips: context.config.use_fips_endpoint,
30
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
31
- )
32
- end
33
- end
34
-
35
- class GetExecution
36
- def self.build(context)
37
- Aws::BCMDataExports::EndpointParameters.new(
38
- region: context.config.region,
39
- use_fips: context.config.use_fips_endpoint,
40
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
41
- )
42
- end
43
- end
44
-
45
- class GetExport
46
- def self.build(context)
47
- Aws::BCMDataExports::EndpointParameters.new(
48
- region: context.config.region,
49
- use_fips: context.config.use_fips_endpoint,
50
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
51
- )
52
- end
53
- end
54
-
55
- class GetTable
56
- def self.build(context)
57
- Aws::BCMDataExports::EndpointParameters.new(
58
- region: context.config.region,
59
- use_fips: context.config.use_fips_endpoint,
60
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
61
- )
62
- end
63
- end
64
-
65
- class ListExecutions
66
- def self.build(context)
67
- Aws::BCMDataExports::EndpointParameters.new(
68
- region: context.config.region,
69
- use_fips: context.config.use_fips_endpoint,
70
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
71
- )
72
- end
73
- end
74
15
 
75
- class ListExports
76
- def self.build(context)
77
- Aws::BCMDataExports::EndpointParameters.new(
78
- region: context.config.region,
79
- use_fips: context.config.use_fips_endpoint,
80
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
81
- )
82
- end
16
+ def self.parameters_for_operation(context)
17
+ Aws::BCMDataExports::EndpointParameters.create(context.config)
83
18
  end
84
-
85
- class ListTables
86
- def self.build(context)
87
- Aws::BCMDataExports::EndpointParameters.new(
88
- region: context.config.region,
89
- use_fips: context.config.use_fips_endpoint,
90
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
91
- )
92
- end
93
- end
94
-
95
- class ListTagsForResource
96
- def self.build(context)
97
- Aws::BCMDataExports::EndpointParameters.new(
98
- region: context.config.region,
99
- use_fips: context.config.use_fips_endpoint,
100
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
101
- )
102
- end
103
- end
104
-
105
- class TagResource
106
- def self.build(context)
107
- Aws::BCMDataExports::EndpointParameters.new(
108
- region: context.config.region,
109
- use_fips: context.config.use_fips_endpoint,
110
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
111
- )
112
- end
113
- end
114
-
115
- class UntagResource
116
- def self.build(context)
117
- Aws::BCMDataExports::EndpointParameters.new(
118
- region: context.config.region,
119
- use_fips: context.config.use_fips_endpoint,
120
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
121
- )
122
- end
123
- end
124
-
125
- class UpdateExport
126
- def self.build(context)
127
- Aws::BCMDataExports::EndpointParameters.new(
128
- region: context.config.region,
129
- use_fips: context.config.use_fips_endpoint,
130
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
131
- )
132
- end
133
- end
134
-
135
19
  end
136
20
  end
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
27
27
  class Handler < Seahorse::Client::Handler
28
28
  def call(context)
29
29
  unless context[:discovered_endpoint]
30
- params = parameters_for_operation(context)
30
+ params = Aws::BCMDataExports::Endpoints.parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
@@ -67,35 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
67
67
  context.http_request.headers[key] = value
68
68
  end
69
69
  end
70
-
71
- def parameters_for_operation(context)
72
- case context.operation_name
73
- when :create_export
74
- Aws::BCMDataExports::Endpoints::CreateExport.build(context)
75
- when :delete_export
76
- Aws::BCMDataExports::Endpoints::DeleteExport.build(context)
77
- when :get_execution
78
- Aws::BCMDataExports::Endpoints::GetExecution.build(context)
79
- when :get_export
80
- Aws::BCMDataExports::Endpoints::GetExport.build(context)
81
- when :get_table
82
- Aws::BCMDataExports::Endpoints::GetTable.build(context)
83
- when :list_executions
84
- Aws::BCMDataExports::Endpoints::ListExecutions.build(context)
85
- when :list_exports
86
- Aws::BCMDataExports::Endpoints::ListExports.build(context)
87
- when :list_tables
88
- Aws::BCMDataExports::Endpoints::ListTables.build(context)
89
- when :list_tags_for_resource
90
- Aws::BCMDataExports::Endpoints::ListTagsForResource.build(context)
91
- when :tag_resource
92
- Aws::BCMDataExports::Endpoints::TagResource.build(context)
93
- when :untag_resource
94
- Aws::BCMDataExports::Endpoints::UntagResource.build(context)
95
- when :update_export
96
- Aws::BCMDataExports::Endpoints::UpdateExport.build(context)
97
- end
98
- end
99
70
  end
100
71
 
101
72
  def add_handlers(handlers, _config)
@@ -54,7 +54,7 @@ module Aws::BCMDataExports
54
54
  autoload :EndpointProvider, 'aws-sdk-bcmdataexports/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-bcmdataexports/endpoints'
56
56
 
57
- GEM_VERSION = '1.14.0'
57
+ GEM_VERSION = '1.16.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bcmdataexports
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.16.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: 2024-09-24 00:00:00.000000000 Z
11
+ date: 2025-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.207.0
22
+ version: 3.216.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.207.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement