aws-sdk-b2bi 1.10.0 → 1.11.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: e7949f3e1b397314650c8b45b860221b3f1bfdaf4cecb6c8ff0cd1af32f774cd
4
+ data.tar.gz: 427c8da07a75b89c18ecef3f64dd465a8015ed5b925923991ae543b9e3b7cfe9
5
5
  SHA512:
6
- metadata.gz: e06ed63fd55d5257a9ca096f8abf2173411622c079e7d3c9c1d055769e11224ecf7177d26ea584b7ab16d731f70fb59042641260579103123671de9fc470ba28
7
- data.tar.gz: 48a7fe8bc0173fc0483c4d8cf4ac72e78bc8ea41e305b9c5d14dc9df41db7f7ede81813e29ca6d594e6d1207eb6c7bdbf1287655e31a7a6aa567d7e6a4e14d55
6
+ metadata.gz: c8501522b70bdf006fce271a9cd3a77185c049c5d9a4d83b983496443003c1896922ab31de37ac47c08a26ec4cd49827046f96a68567d3312965980daec14ae8
7
+ data.tar.gz: df7b44bd63a930444462d518a88f424a84395f79cab5b1159da27a45d3fff8c18dfea130066970f332c0235f550cb806be273af46d984e80c2c8982969cb86ec
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.11.0 (2024-06-07)
5
+ ------------------
6
+
7
+ * Feature - Added exceptions to B2Bi List operations and ConflictException to B2Bi StartTransformerJob operation. Also made capabilities field explicitly required when creating a Partnership.
8
+
4
9
  1.10.0 (2024-06-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.10.0
1
+ 1.11.0
@@ -621,7 +621,7 @@ module Aws::B2bi
621
621
  # @option params [String] :phone
622
622
  # Specifies the phone number associated with the partnership.
623
623
  #
624
- # @option params [Array<String>] :capabilities
624
+ # @option params [required, Array<String>] :capabilities
625
625
  # Specifies a list of the capabilities associated with this partnership.
626
626
  #
627
627
  # @option params [String] :client_token
@@ -689,7 +689,7 @@ module Aws::B2bi
689
689
  # name: "PartnerName", # required
690
690
  # email: "Email", # required
691
691
  # phone: "Phone",
692
- # capabilities: ["CapabilityId"],
692
+ # capabilities: ["CapabilityId"], # required
693
693
  # client_token: "String",
694
694
  # tags: [
695
695
  # {
@@ -2579,7 +2579,7 @@ module Aws::B2bi
2579
2579
  params: params,
2580
2580
  config: config)
2581
2581
  context[:gem_name] = 'aws-sdk-b2bi'
2582
- context[:gem_version] = '1.10.0'
2582
+ context[:gem_version] = '1.11.0'
2583
2583
  Seahorse::Client::Request.new(handlers, context)
2584
2584
  end
2585
2585
 
@@ -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.11.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.11.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-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core