aws-sdk-bedrockdataautomation 1.0.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bed80523a696af1fa8a108c18a8aab8d76791062494e5f264419899ff47c99ec
4
- data.tar.gz: 400df07e848ee2ab8282d42079eb9767cf79f646dea419ce6058123b8cddbbd5
3
+ metadata.gz: 42624e8d730fb77c012aa82eca7274d3d584734ba9712bcb9880f19b618e7bd6
4
+ data.tar.gz: a9f79dbad755d041f49f2b7c6d54cea6f115dd1ece76a2f09ccc9e4a2ba668f1
5
5
  SHA512:
6
- metadata.gz: 864e0f0d781c5226542405c60fad63b011868aed8bffb331c89059f7376440273d275bc078ea93edbe85afc7fe83376618f8085087849f5f8fac22dbed5497d6
7
- data.tar.gz: a19ff3aeabf0e2b7c68e43ac5fdce4a96049e65810d18cf6aa9f3fee0a93b934c8ff630a3e8b0c580efa297dc665e8c70f33f28d09ddde065b3b73b252545bac
6
+ metadata.gz: 8585fc382d82c63e731783c2f636a0a25eb0e9d7dd5ccad027d6b357ef12861723b042c244eca48e3e46aa25b5c496656fb7c1053ac2597e64fc0b044f6cfe1d
7
+ data.tar.gz: 748c746a3895f30ccb5fc0d57c948b871cc38fede5a56ac7886b048eea8bf500de57ecc3dc3c11edc02db44021a731f436da5f3350081b925ef93212a1e477fd
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.2.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.1.0 (2024-12-20)
10
+ ------------------
11
+
12
+ * Feature - Documentation update for Amazon Bedrock Data Automation
13
+
4
14
  1.0.0 (2024-12-04)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.2.0
@@ -257,11 +257,34 @@ module Aws::BedrockDataAutomation
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.
@@ -447,7 +470,7 @@ module Aws::BedrockDataAutomation
447
470
 
448
471
  # @!group API Operations
449
472
 
450
- # Creates an Amazon Bedrock Keystone Blueprint
473
+ # Creates an Amazon Bedrock Data Automation Blueprint
451
474
  #
452
475
  # @option params [required, String] :blueprint_name
453
476
  # Name of the Blueprint
@@ -513,7 +536,8 @@ module Aws::BedrockDataAutomation
513
536
  req.send_request(options)
514
537
  end
515
538
 
516
- # Creates a new version of an existing Amazon Bedrock Keystone Blueprint
539
+ # Creates a new version of an existing Amazon Bedrock Data Automation
540
+ # Blueprint
517
541
  #
518
542
  # @option params [required, String] :blueprint_arn
519
543
  # ARN generated at the server side when a Blueprint is created
@@ -558,7 +582,7 @@ module Aws::BedrockDataAutomation
558
582
  req.send_request(options)
559
583
  end
560
584
 
561
- # Creates an Amazon Bedrock Keystone DataAutomationProject
585
+ # Creates an Amazon Bedrock Data Automation Project
562
586
  #
563
587
  # @option params [required, String] :project_name
564
588
  # Name of the DataAutomationProject
@@ -704,7 +728,7 @@ module Aws::BedrockDataAutomation
704
728
  req.send_request(options)
705
729
  end
706
730
 
707
- # Deletes an existing Amazon Bedrock Keystone Blueprint
731
+ # Deletes an existing Amazon Bedrock Data Automation Blueprint
708
732
  #
709
733
  # @option params [required, String] :blueprint_arn
710
734
  # ARN generated at the server side when a Blueprint is created
@@ -730,7 +754,7 @@ module Aws::BedrockDataAutomation
730
754
  req.send_request(options)
731
755
  end
732
756
 
733
- # Deletes an existing Amazon Bedrock Keystone DataAutomationProject
757
+ # Deletes an existing Amazon Bedrock Data Automation Project
734
758
  #
735
759
  # @option params [required, String] :project_arn
736
760
  # ARN generated at the server side when a DataAutomationProject is
@@ -761,7 +785,7 @@ module Aws::BedrockDataAutomation
761
785
  req.send_request(options)
762
786
  end
763
787
 
764
- # Gets an existing Amazon Bedrock Keystone Blueprint
788
+ # Gets an existing Amazon Bedrock Data Automation Blueprint
765
789
  #
766
790
  # @option params [required, String] :blueprint_arn
767
791
  # ARN generated at the server side when a Blueprint is created
@@ -807,7 +831,7 @@ module Aws::BedrockDataAutomation
807
831
  req.send_request(options)
808
832
  end
809
833
 
810
- # Gets an existing Amazon Bedrock Keystone DataAutomationProject
834
+ # Gets an existing Amazon Bedrock Data Automation Project
811
835
  #
812
836
  # @option params [required, String] :project_arn
813
837
  # ARN generated at the server side when a DataAutomationProject is
@@ -881,7 +905,7 @@ module Aws::BedrockDataAutomation
881
905
  req.send_request(options)
882
906
  end
883
907
 
884
- # Lists all existing Amazon Bedrock Keystone Blueprints
908
+ # Lists all existing Amazon Bedrock Data Automation Blueprints
885
909
  #
886
910
  # @option params [String] :blueprint_arn
887
911
  # ARN of a Blueprint
@@ -942,7 +966,7 @@ module Aws::BedrockDataAutomation
942
966
  req.send_request(options)
943
967
  end
944
968
 
945
- # Lists all existing Amazon Bedrock Keystone DataAutomationProjects
969
+ # Lists all existing Amazon Bedrock Data Automation Projects
946
970
  #
947
971
  # @option params [Integer] :max_results
948
972
  # Max Results
@@ -998,7 +1022,7 @@ module Aws::BedrockDataAutomation
998
1022
  req.send_request(options)
999
1023
  end
1000
1024
 
1001
- # Updates an existing Amazon Bedrock Blueprint
1025
+ # Updates an existing Amazon Bedrock Data Automation Blueprint
1002
1026
  #
1003
1027
  # @option params [required, String] :blueprint_arn
1004
1028
  # ARN generated at the server side when a Blueprint is created
@@ -1044,7 +1068,7 @@ module Aws::BedrockDataAutomation
1044
1068
  req.send_request(options)
1045
1069
  end
1046
1070
 
1047
- # Updates an existing Amazon Bedrock DataAutomationProject
1071
+ # Updates an existing Amazon Bedrock Data Automation Project
1048
1072
  #
1049
1073
  # @option params [required, String] :project_arn
1050
1074
  # ARN generated at the server side when a DataAutomationProject is
@@ -1193,7 +1217,7 @@ module Aws::BedrockDataAutomation
1193
1217
  tracer: tracer
1194
1218
  )
1195
1219
  context[:gem_name] = 'aws-sdk-bedrockdataautomation'
1196
- context[:gem_version] = '1.0.0'
1220
+ context[:gem_version] = '1.2.0'
1197
1221
  Seahorse::Client::Request.new(handlers, context)
1198
1222
  end
1199
1223
 
@@ -54,7 +54,7 @@ module Aws::BedrockDataAutomation
54
54
  autoload :EndpointProvider, 'aws-sdk-bedrockdataautomation/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-bedrockdataautomation/endpoints'
56
56
 
57
- GEM_VERSION = '1.0.0'
57
+ GEM_VERSION = '1.2.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-bedrockdataautomation
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.2.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-12-04 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.210.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.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement