@aws-sdk/client-b2bi 3.592.0 → 3.593.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.
@@ -40,7 +40,7 @@ declare const CreatePartnershipCommand_base: {
40
40
  * name: "STRING_VALUE", // required
41
41
  * email: "STRING_VALUE", // required
42
42
  * phone: "STRING_VALUE",
43
- * capabilities: [ // PartnershipCapabilities
43
+ * capabilities: [ // PartnershipCapabilities // required
44
44
  * "STRING_VALUE",
45
45
  * ],
46
46
  * clientToken: "STRING_VALUE",
@@ -61,6 +61,18 @@ declare const ListCapabilitiesCommand_base: {
61
61
  * @see {@link ListCapabilitiesCommandOutput} for command's `response` shape.
62
62
  * @see {@link B2biClientResolvedConfig | config} for B2biClient's `config` shape.
63
63
  *
64
+ * @throws {@link AccessDeniedException} (client fault)
65
+ * <p>You do not have sufficient access to perform this action.</p>
66
+ *
67
+ * @throws {@link InternalServerException} (server fault)
68
+ * <p>This exception is thrown when an error occurs in the Amazon Web Services B2B Data Interchange service.</p>
69
+ *
70
+ * @throws {@link ThrottlingException} (client fault)
71
+ * <p>The request was denied due to throttling: the data speed and rendering may be limited depending on various parameters and conditions.</p>
72
+ *
73
+ * @throws {@link ValidationException} (client fault)
74
+ * <p>Occurs when a B2BI object cannot be validated against a request from another object.</p>
75
+ *
64
76
  * @throws {@link B2biServiceException}
65
77
  * <p>Base exception class for all service exceptions from B2bi service.</p>
66
78
  *
@@ -64,6 +64,18 @@ declare const ListProfilesCommand_base: {
64
64
  * @see {@link ListProfilesCommandOutput} for command's `response` shape.
65
65
  * @see {@link B2biClientResolvedConfig | config} for B2biClient's `config` shape.
66
66
  *
67
+ * @throws {@link AccessDeniedException} (client fault)
68
+ * <p>You do not have sufficient access to perform this action.</p>
69
+ *
70
+ * @throws {@link InternalServerException} (server fault)
71
+ * <p>This exception is thrown when an error occurs in the Amazon Web Services B2B Data Interchange service.</p>
72
+ *
73
+ * @throws {@link ThrottlingException} (client fault)
74
+ * <p>The request was denied due to throttling: the data speed and rendering may be limited depending on various parameters and conditions.</p>
75
+ *
76
+ * @throws {@link ValidationException} (client fault)
77
+ * <p>Occurs when a B2BI object cannot be validated against a request from another object.</p>
78
+ *
67
79
  * @throws {@link B2biServiceException}
68
80
  * <p>Base exception class for all service exceptions from B2bi service.</p>
69
81
  *
@@ -72,6 +72,18 @@ declare const ListTransformersCommand_base: {
72
72
  * @see {@link ListTransformersCommandOutput} for command's `response` shape.
73
73
  * @see {@link B2biClientResolvedConfig | config} for B2biClient's `config` shape.
74
74
  *
75
+ * @throws {@link AccessDeniedException} (client fault)
76
+ * <p>You do not have sufficient access to perform this action.</p>
77
+ *
78
+ * @throws {@link InternalServerException} (server fault)
79
+ * <p>This exception is thrown when an error occurs in the Amazon Web Services B2B Data Interchange service.</p>
80
+ *
81
+ * @throws {@link ThrottlingException} (client fault)
82
+ * <p>The request was denied due to throttling: the data speed and rendering may be limited depending on various parameters and conditions.</p>
83
+ *
84
+ * @throws {@link ValidationException} (client fault)
85
+ * <p>Occurs when a B2BI object cannot be validated against a request from another object.</p>
86
+ *
75
87
  * @throws {@link B2biServiceException}
76
88
  * <p>Base exception class for all service exceptions from B2bi service.</p>
77
89
  *
@@ -65,6 +65,9 @@ declare const StartTransformerJobCommand_base: {
65
65
  * @throws {@link AccessDeniedException} (client fault)
66
66
  * <p>You do not have sufficient access to perform this action.</p>
67
67
  *
68
+ * @throws {@link ConflictException} (client fault)
69
+ * <p>A conflict exception is thrown when you attempt to delete a resource (such as a profile or a capability) that is being used by other resources.</p>
70
+ *
68
71
  * @throws {@link InternalServerException} (server fault)
69
72
  * <p>This exception is thrown when an error occurs in the Amazon Web Services B2B Data Interchange service.</p>
70
73
  *
@@ -744,7 +744,7 @@ export interface CreatePartnershipRequest {
744
744
  * <p>Specifies a list of the capabilities associated with this partnership.</p>
745
745
  * @public
746
746
  */
747
- capabilities?: string[];
747
+ capabilities: string[] | undefined;
748
748
  /**
749
749
  * <p>Reserved for future use.</p>
750
750
  * @public
@@ -290,7 +290,7 @@ export interface CreatePartnershipRequest {
290
290
  name: string | undefined;
291
291
  email: string | undefined;
292
292
  phone?: string;
293
- capabilities?: string[];
293
+ capabilities: string[] | undefined;
294
294
  clientToken?: string;
295
295
  tags?: Tag[];
296
296
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-b2bi",
3
3
  "description": "AWS SDK for JavaScript B2bi Client for Node.js, Browser and React Native",
4
- "version": "3.592.0",
4
+ "version": "3.593.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-b2bi",