aws-sdk-b2bi 1.10.0 → 1.12.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: 44c17247a7bf6cd86f12c0f626e494dfe89d040b9f137d16c78669b243afdebe
4
- data.tar.gz: c2e3079fdf1235b34167317b20530bc5feef5942d701f81cff1072ae368a86c5
3
+ metadata.gz: 84138602dd869e5599a62bc090d00ba15646e349744f284f479371eec4ff68b6
4
+ data.tar.gz: a96c9099eda1e3be5c739e8a26d8acb336623addd52d6cc3ac551752b1eb140f
5
5
  SHA512:
6
- metadata.gz: e06ed63fd55d5257a9ca096f8abf2173411622c079e7d3c9c1d055769e11224ecf7177d26ea584b7ab16d731f70fb59042641260579103123671de9fc470ba28
7
- data.tar.gz: 48a7fe8bc0173fc0483c4d8cf4ac72e78bc8ea41e305b9c5d14dc9df41db7f7ede81813e29ca6d594e6d1207eb6c7bdbf1287655e31a7a6aa567d7e6a4e14d55
6
+ metadata.gz: 95c6d3d617d499f2092e3b26ea0fc781383e6e0ad5a0d814740708fa16c1aa5f1523c47c752148e6861c30b79fd3896b31417a5daefb6556068d1456e0adb39a
7
+ data.tar.gz: 837754a6c9b21b2a16fc3e4bd36ec0a2fa99e5ebe09f36888e43773d40b059315099c0b67264250d508fabaa27ff46854d113b80793fb0d2cd9423d522292041
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.12.0 (2024-06-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.11.0 (2024-06-07)
10
+ ------------------
11
+
12
+ * Feature - Added exceptions to B2Bi List operations and ConflictException to B2Bi StartTransformerJob operation. Also made capabilities field explicitly required when creating a Partnership.
13
+
4
14
  1.10.0 (2024-06-05)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.10.0
1
+ 1.12.0
@@ -89,6 +89,11 @@ module Aws::B2bi
89
89
 
90
90
  # @overload initialize(options)
91
91
  # @param [Hash] options
92
+ #
93
+ # @option options [Array<Seahorse::Client::Plugin>] :plugins ([]])
94
+ # A list of plugins to apply to the client. Each plugin is either a
95
+ # class name or an instance of a plugin class.
96
+ #
92
97
  # @option options [required, Aws::CredentialProvider] :credentials
93
98
  # Your AWS credentials. This can be an instance of any one of the
94
99
  # following classes:
@@ -209,7 +214,6 @@ module Aws::B2bi
209
214
  # 'https://example.com'
210
215
  # 'http://example.com:123'
211
216
  #
212
- #
213
217
  # @option options [Integer] :endpoint_cache_max_entries (1000)
214
218
  # Used for the maximum size limit of the LRU cache storing endpoints data
215
219
  # for endpoint discovery enabled operations. Defaults to 1000.
@@ -298,7 +302,6 @@ module Aws::B2bi
298
302
  # throttling. This is a provisional mode that may change behavior
299
303
  # in the future.
300
304
  #
301
- #
302
305
  # @option options [String] :sdk_ua_app_id
303
306
  # A unique and opaque application ID that is appended to the
304
307
  # User-Agent header as app/sdk_ua_app_id. It should have a
@@ -621,7 +624,7 @@ module Aws::B2bi
621
624
  # @option params [String] :phone
622
625
  # Specifies the phone number associated with the partnership.
623
626
  #
624
- # @option params [Array<String>] :capabilities
627
+ # @option params [required, Array<String>] :capabilities
625
628
  # Specifies a list of the capabilities associated with this partnership.
626
629
  #
627
630
  # @option params [String] :client_token
@@ -689,7 +692,7 @@ module Aws::B2bi
689
692
  # name: "PartnerName", # required
690
693
  # email: "Email", # required
691
694
  # phone: "Phone",
692
- # capabilities: ["CapabilityId"],
695
+ # capabilities: ["CapabilityId"], # required
693
696
  # client_token: "String",
694
697
  # tags: [
695
698
  # {
@@ -2579,7 +2582,7 @@ module Aws::B2bi
2579
2582
  params: params,
2580
2583
  config: config)
2581
2584
  context[:gem_name] = 'aws-sdk-b2bi'
2582
- context[:gem_version] = '1.10.0'
2585
+ context[:gem_version] = '1.12.0'
2583
2586
  Seahorse::Client::Request.new(handlers, context)
2584
2587
  end
2585
2588
 
@@ -167,7 +167,7 @@ module Aws::B2bi
167
167
  CreatePartnershipRequest.add_member(:name, Shapes::ShapeRef.new(shape: PartnerName, required: true, location_name: "name"))
168
168
  CreatePartnershipRequest.add_member(:email, Shapes::ShapeRef.new(shape: Email, required: true, location_name: "email"))
169
169
  CreatePartnershipRequest.add_member(:phone, Shapes::ShapeRef.new(shape: Phone, location_name: "phone"))
170
- CreatePartnershipRequest.add_member(:capabilities, Shapes::ShapeRef.new(shape: PartnershipCapabilities, location_name: "capabilities"))
170
+ CreatePartnershipRequest.add_member(:capabilities, Shapes::ShapeRef.new(shape: PartnershipCapabilities, required: true, location_name: "capabilities"))
171
171
  CreatePartnershipRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
172
172
  CreatePartnershipRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
173
173
  CreatePartnershipRequest.struct_class = Types::CreatePartnershipRequest
@@ -545,9 +545,11 @@ module Aws::B2bi
545
545
 
546
546
  api.metadata = {
547
547
  "apiVersion" => "2022-06-23",
548
+ "auth" => ["aws.auth#sigv4"],
548
549
  "endpointPrefix" => "b2bi",
549
550
  "jsonVersion" => "1.0",
550
551
  "protocol" => "json",
552
+ "protocols" => ["json"],
551
553
  "serviceAbbreviation" => "AWS B2BI",
552
554
  "serviceFullName" => "AWS B2B Data Interchange",
553
555
  "serviceId" => "b2bi",
@@ -744,6 +746,10 @@ module Aws::B2bi
744
746
  o.http_request_uri = "/"
745
747
  o.input = Shapes::ShapeRef.new(shape: ListCapabilitiesRequest)
746
748
  o.output = Shapes::ShapeRef.new(shape: ListCapabilitiesResponse)
749
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
750
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
751
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
752
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
747
753
  o[:pager] = Aws::Pager.new(
748
754
  limit_key: "max_results",
749
755
  tokens: {
@@ -777,6 +783,10 @@ module Aws::B2bi
777
783
  o.http_request_uri = "/"
778
784
  o.input = Shapes::ShapeRef.new(shape: ListProfilesRequest)
779
785
  o.output = Shapes::ShapeRef.new(shape: ListProfilesResponse)
786
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
787
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
788
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
789
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
780
790
  o[:pager] = Aws::Pager.new(
781
791
  limit_key: "max_results",
782
792
  tokens: {
@@ -802,6 +812,10 @@ module Aws::B2bi
802
812
  o.http_request_uri = "/"
803
813
  o.input = Shapes::ShapeRef.new(shape: ListTransformersRequest)
804
814
  o.output = Shapes::ShapeRef.new(shape: ListTransformersResponse)
815
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
816
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
817
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
818
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
805
819
  o[:pager] = Aws::Pager.new(
806
820
  limit_key: "max_results",
807
821
  tokens: {
@@ -816,6 +830,7 @@ module Aws::B2bi
816
830
  o.http_request_uri = "/"
817
831
  o.input = Shapes::ShapeRef.new(shape: StartTransformerJobRequest)
818
832
  o.output = Shapes::ShapeRef.new(shape: StartTransformerJobResponse)
833
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
819
834
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
820
835
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
821
836
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
data/lib/aws-sdk-b2bi.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-b2bi/customizations'
52
52
  # @!group service
53
53
  module Aws::B2bi
54
54
 
55
- GEM_VERSION = '1.10.0'
55
+ GEM_VERSION = '1.12.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -140,7 +140,7 @@ module Aws
140
140
  name: ::String,
141
141
  email: ::String,
142
142
  ?phone: ::String,
143
- ?capabilities: Array[::String],
143
+ capabilities: Array[::String],
144
144
  ?client_token: ::String,
145
145
  ?tags: Array[
146
146
  {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-b2bi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.12.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-06-05 00:00:00.000000000 Z
11
+ date: 2024-06-24 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.197.0
22
+ version: 3.198.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.197.0
32
+ version: 3.198.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement