@aws-sdk/client-partnercentral-selling 3.699.0 → 3.709.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.
Files changed (153) hide show
  1. package/README.md +206 -45
  2. package/dist-cjs/PartnerCentralSelling.js +42 -0
  3. package/dist-cjs/commands/AcceptEngagementInvitationCommand.js +26 -0
  4. package/dist-cjs/commands/CreateEngagementCommand.js +27 -0
  5. package/dist-cjs/commands/CreateEngagementInvitationCommand.js +27 -0
  6. package/dist-cjs/commands/CreateResourceSnapshotCommand.js +26 -0
  7. package/dist-cjs/commands/CreateResourceSnapshotJobCommand.js +26 -0
  8. package/dist-cjs/commands/DeleteResourceSnapshotJobCommand.js +26 -0
  9. package/dist-cjs/commands/GetEngagementCommand.js +27 -0
  10. package/dist-cjs/commands/GetResourceSnapshotCommand.js +27 -0
  11. package/dist-cjs/commands/GetResourceSnapshotJobCommand.js +26 -0
  12. package/dist-cjs/commands/GetSellingSystemSettingsCommand.js +26 -0
  13. package/dist-cjs/commands/ListEngagementByAcceptingInvitationTasksCommand.js +26 -0
  14. package/dist-cjs/commands/ListEngagementFromOpportunityTasksCommand.js +26 -0
  15. package/dist-cjs/commands/ListEngagementInvitationsCommand.js +1 -1
  16. package/dist-cjs/commands/ListEngagementMembersCommand.js +27 -0
  17. package/dist-cjs/commands/ListEngagementResourceAssociationsCommand.js +27 -0
  18. package/dist-cjs/commands/ListEngagementsCommand.js +27 -0
  19. package/dist-cjs/commands/ListResourceSnapshotJobsCommand.js +26 -0
  20. package/dist-cjs/commands/ListResourceSnapshotsCommand.js +27 -0
  21. package/dist-cjs/commands/PutSellingSystemSettingsCommand.js +26 -0
  22. package/dist-cjs/commands/StartResourceSnapshotJobCommand.js +26 -0
  23. package/dist-cjs/commands/StopResourceSnapshotJobCommand.js +26 -0
  24. package/dist-cjs/commands/SubmitOpportunityCommand.js +26 -0
  25. package/dist-cjs/commands/index.js +21 -0
  26. package/dist-cjs/models/models_0.js +281 -87
  27. package/dist-cjs/pagination/ListEngagementByAcceptingInvitationTasksPaginator.js +7 -0
  28. package/dist-cjs/pagination/ListEngagementFromOpportunityTasksPaginator.js +7 -0
  29. package/dist-cjs/pagination/ListEngagementMembersPaginator.js +7 -0
  30. package/dist-cjs/pagination/ListEngagementResourceAssociationsPaginator.js +7 -0
  31. package/dist-cjs/pagination/ListEngagementsPaginator.js +7 -0
  32. package/dist-cjs/pagination/ListResourceSnapshotJobsPaginator.js +7 -0
  33. package/dist-cjs/pagination/ListResourceSnapshotsPaginator.js +7 -0
  34. package/dist-cjs/pagination/index.js +7 -0
  35. package/dist-cjs/protocols/Aws_json1_0.js +599 -1
  36. package/dist-es/PartnerCentralSelling.js +42 -0
  37. package/dist-es/commands/AcceptEngagementInvitationCommand.js +22 -0
  38. package/dist-es/commands/CreateEngagementCommand.js +23 -0
  39. package/dist-es/commands/CreateEngagementInvitationCommand.js +23 -0
  40. package/dist-es/commands/CreateResourceSnapshotCommand.js +22 -0
  41. package/dist-es/commands/CreateResourceSnapshotJobCommand.js +22 -0
  42. package/dist-es/commands/DeleteResourceSnapshotJobCommand.js +22 -0
  43. package/dist-es/commands/GetEngagementCommand.js +23 -0
  44. package/dist-es/commands/GetResourceSnapshotCommand.js +23 -0
  45. package/dist-es/commands/GetResourceSnapshotJobCommand.js +22 -0
  46. package/dist-es/commands/GetSellingSystemSettingsCommand.js +22 -0
  47. package/dist-es/commands/ListEngagementByAcceptingInvitationTasksCommand.js +22 -0
  48. package/dist-es/commands/ListEngagementFromOpportunityTasksCommand.js +22 -0
  49. package/dist-es/commands/ListEngagementInvitationsCommand.js +2 -2
  50. package/dist-es/commands/ListEngagementMembersCommand.js +23 -0
  51. package/dist-es/commands/ListEngagementResourceAssociationsCommand.js +23 -0
  52. package/dist-es/commands/ListEngagementsCommand.js +23 -0
  53. package/dist-es/commands/ListResourceSnapshotJobsCommand.js +22 -0
  54. package/dist-es/commands/ListResourceSnapshotsCommand.js +23 -0
  55. package/dist-es/commands/PutSellingSystemSettingsCommand.js +22 -0
  56. package/dist-es/commands/StartResourceSnapshotJobCommand.js +22 -0
  57. package/dist-es/commands/StopResourceSnapshotJobCommand.js +22 -0
  58. package/dist-es/commands/SubmitOpportunityCommand.js +22 -0
  59. package/dist-es/commands/index.js +21 -0
  60. package/dist-es/models/models_0.js +249 -81
  61. package/dist-es/pagination/ListEngagementByAcceptingInvitationTasksPaginator.js +4 -0
  62. package/dist-es/pagination/ListEngagementFromOpportunityTasksPaginator.js +4 -0
  63. package/dist-es/pagination/ListEngagementMembersPaginator.js +4 -0
  64. package/dist-es/pagination/ListEngagementResourceAssociationsPaginator.js +4 -0
  65. package/dist-es/pagination/ListEngagementsPaginator.js +4 -0
  66. package/dist-es/pagination/ListResourceSnapshotJobsPaginator.js +4 -0
  67. package/dist-es/pagination/ListResourceSnapshotsPaginator.js +4 -0
  68. package/dist-es/pagination/index.js +7 -0
  69. package/dist-es/protocols/Aws_json1_0.js +556 -1
  70. package/dist-types/PartnerCentralSelling.d.ts +182 -42
  71. package/dist-types/PartnerCentralSellingClient.d.ts +58 -44
  72. package/dist-types/commands/AcceptEngagementInvitationCommand.d.ts +103 -0
  73. package/dist-types/commands/AssignOpportunityCommand.d.ts +27 -32
  74. package/dist-types/commands/AssociateOpportunityCommand.d.ts +40 -46
  75. package/dist-types/commands/CreateEngagementCommand.d.ts +136 -0
  76. package/dist-types/commands/CreateEngagementInvitationCommand.d.ts +158 -0
  77. package/dist-types/commands/CreateOpportunityCommand.d.ts +40 -46
  78. package/dist-types/commands/CreateResourceSnapshotCommand.d.ts +117 -0
  79. package/dist-types/commands/CreateResourceSnapshotJobCommand.d.ts +119 -0
  80. package/dist-types/commands/DeleteResourceSnapshotJobCommand.d.ts +96 -0
  81. package/dist-types/commands/DisassociateOpportunityCommand.d.ts +29 -34
  82. package/dist-types/commands/GetAwsOpportunitySummaryCommand.d.ts +24 -28
  83. package/dist-types/commands/GetEngagementCommand.d.ts +124 -0
  84. package/dist-types/commands/GetEngagementInvitationCommand.d.ts +34 -24
  85. package/dist-types/commands/GetOpportunityCommand.d.ts +24 -29
  86. package/dist-types/commands/GetResourceSnapshotCommand.d.ts +186 -0
  87. package/dist-types/commands/GetResourceSnapshotJobCommand.d.ts +109 -0
  88. package/dist-types/commands/GetSellingSystemSettingsCommand.d.ts +95 -0
  89. package/dist-types/commands/ListEngagementByAcceptingInvitationTasksCommand.d.ts +128 -0
  90. package/dist-types/commands/ListEngagementFromOpportunityTasksCommand.d.ts +129 -0
  91. package/dist-types/commands/ListEngagementInvitationsCommand.d.ts +34 -25
  92. package/dist-types/commands/ListEngagementMembersCommand.d.ts +109 -0
  93. package/dist-types/commands/ListEngagementResourceAssociationsCommand.d.ts +112 -0
  94. package/dist-types/commands/ListEngagementsCommand.d.ts +123 -0
  95. package/dist-types/commands/ListOpportunitiesCommand.d.ts +35 -39
  96. package/dist-types/commands/ListResourceSnapshotJobsCommand.d.ts +108 -0
  97. package/dist-types/commands/ListResourceSnapshotsCommand.d.ts +113 -0
  98. package/dist-types/commands/ListSolutionsCommand.d.ts +20 -20
  99. package/dist-types/commands/PutSellingSystemSettingsCommand.d.ts +96 -0
  100. package/dist-types/commands/RejectEngagementInvitationCommand.d.ts +22 -27
  101. package/dist-types/commands/StartEngagementByAcceptingInvitationTaskCommand.d.ts +37 -35
  102. package/dist-types/commands/StartEngagementFromOpportunityTaskCommand.d.ts +37 -35
  103. package/dist-types/commands/StartResourceSnapshotJobCommand.d.ts +95 -0
  104. package/dist-types/commands/StopResourceSnapshotJobCommand.d.ts +95 -0
  105. package/dist-types/commands/SubmitOpportunityCommand.d.ts +106 -0
  106. package/dist-types/commands/UpdateOpportunityCommand.d.ts +33 -35
  107. package/dist-types/commands/index.d.ts +21 -0
  108. package/dist-types/index.d.ts +35 -42
  109. package/dist-types/models/models_0.d.ts +4764 -2209
  110. package/dist-types/pagination/ListEngagementByAcceptingInvitationTasksPaginator.d.ts +7 -0
  111. package/dist-types/pagination/ListEngagementFromOpportunityTasksPaginator.d.ts +7 -0
  112. package/dist-types/pagination/ListEngagementMembersPaginator.d.ts +7 -0
  113. package/dist-types/pagination/ListEngagementResourceAssociationsPaginator.d.ts +7 -0
  114. package/dist-types/pagination/ListEngagementsPaginator.d.ts +7 -0
  115. package/dist-types/pagination/ListResourceSnapshotJobsPaginator.d.ts +7 -0
  116. package/dist-types/pagination/ListResourceSnapshotsPaginator.d.ts +7 -0
  117. package/dist-types/pagination/index.d.ts +7 -0
  118. package/dist-types/protocols/Aws_json1_0.d.ts +189 -0
  119. package/dist-types/ts3.4/PartnerCentralSelling.d.ts +375 -0
  120. package/dist-types/ts3.4/PartnerCentralSellingClient.d.ts +126 -0
  121. package/dist-types/ts3.4/commands/AcceptEngagementInvitationCommand.d.ts +47 -0
  122. package/dist-types/ts3.4/commands/CreateEngagementCommand.d.ts +50 -0
  123. package/dist-types/ts3.4/commands/CreateEngagementInvitationCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/CreateResourceSnapshotCommand.d.ts +51 -0
  125. package/dist-types/ts3.4/commands/CreateResourceSnapshotJobCommand.d.ts +51 -0
  126. package/dist-types/ts3.4/commands/DeleteResourceSnapshotJobCommand.d.ts +47 -0
  127. package/dist-types/ts3.4/commands/GetEngagementCommand.d.ts +50 -0
  128. package/dist-types/ts3.4/commands/GetResourceSnapshotCommand.d.ts +51 -0
  129. package/dist-types/ts3.4/commands/GetResourceSnapshotJobCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/GetSellingSystemSettingsCommand.d.ts +51 -0
  131. package/dist-types/ts3.4/commands/ListEngagementByAcceptingInvitationTasksCommand.d.ts +51 -0
  132. package/dist-types/ts3.4/commands/ListEngagementFromOpportunityTasksCommand.d.ts +51 -0
  133. package/dist-types/ts3.4/commands/ListEngagementMembersCommand.d.ts +51 -0
  134. package/dist-types/ts3.4/commands/ListEngagementResourceAssociationsCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/ListEngagementsCommand.d.ts +50 -0
  136. package/dist-types/ts3.4/commands/ListResourceSnapshotJobsCommand.d.ts +51 -0
  137. package/dist-types/ts3.4/commands/ListResourceSnapshotsCommand.d.ts +51 -0
  138. package/dist-types/ts3.4/commands/PutSellingSystemSettingsCommand.d.ts +51 -0
  139. package/dist-types/ts3.4/commands/StartResourceSnapshotJobCommand.d.ts +47 -0
  140. package/dist-types/ts3.4/commands/StopResourceSnapshotJobCommand.d.ts +47 -0
  141. package/dist-types/ts3.4/commands/SubmitOpportunityCommand.d.ts +46 -0
  142. package/dist-types/ts3.4/commands/index.d.ts +21 -0
  143. package/dist-types/ts3.4/models/models_0.d.ts +587 -86
  144. package/dist-types/ts3.4/pagination/ListEngagementByAcceptingInvitationTasksPaginator.d.ts +11 -0
  145. package/dist-types/ts3.4/pagination/ListEngagementFromOpportunityTasksPaginator.d.ts +11 -0
  146. package/dist-types/ts3.4/pagination/ListEngagementMembersPaginator.d.ts +11 -0
  147. package/dist-types/ts3.4/pagination/ListEngagementResourceAssociationsPaginator.d.ts +11 -0
  148. package/dist-types/ts3.4/pagination/ListEngagementsPaginator.d.ts +11 -0
  149. package/dist-types/ts3.4/pagination/ListResourceSnapshotJobsPaginator.d.ts +11 -0
  150. package/dist-types/ts3.4/pagination/ListResourceSnapshotsPaginator.d.ts +11 -0
  151. package/dist-types/ts3.4/pagination/index.d.ts +7 -0
  152. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +252 -0
  153. package/package.json +35 -35
@@ -0,0 +1,113 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListResourceSnapshotsRequest, ListResourceSnapshotsResponse } from "../models/models_0";
4
+ import { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralSellingClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListResourceSnapshotsCommand}.
14
+ */
15
+ export interface ListResourceSnapshotsCommandInput extends ListResourceSnapshotsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListResourceSnapshotsCommand}.
21
+ */
22
+ export interface ListResourceSnapshotsCommandOutput extends ListResourceSnapshotsResponse, __MetadataBearer {
23
+ }
24
+ declare const ListResourceSnapshotsCommand_base: {
25
+ new (input: ListResourceSnapshotsCommandInput): import("@smithy/smithy-client").CommandImpl<ListResourceSnapshotsCommandInput, ListResourceSnapshotsCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: ListResourceSnapshotsCommandInput): import("@smithy/smithy-client").CommandImpl<ListResourceSnapshotsCommandInput, ListResourceSnapshotsCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>
31
+ * Retrieves a list of resource view snapshots based on specified criteria.
32
+ * </p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { PartnerCentralSellingClient, ListResourceSnapshotsCommand } from "@aws-sdk/client-partnercentral-selling"; // ES Modules import
37
+ * // const { PartnerCentralSellingClient, ListResourceSnapshotsCommand } = require("@aws-sdk/client-partnercentral-selling"); // CommonJS import
38
+ * const client = new PartnerCentralSellingClient(config);
39
+ * const input = { // ListResourceSnapshotsRequest
40
+ * Catalog: "STRING_VALUE", // required
41
+ * MaxResults: Number("int"),
42
+ * NextToken: "STRING_VALUE",
43
+ * EngagementIdentifier: "STRING_VALUE", // required
44
+ * ResourceType: "Opportunity",
45
+ * ResourceIdentifier: "STRING_VALUE",
46
+ * ResourceSnapshotTemplateIdentifier: "STRING_VALUE",
47
+ * CreatedBy: "STRING_VALUE",
48
+ * };
49
+ * const command = new ListResourceSnapshotsCommand(input);
50
+ * const response = await client.send(command);
51
+ * // { // ListResourceSnapshotsResponse
52
+ * // ResourceSnapshotSummaries: [ // ResourceSnapshotSummaryList // required
53
+ * // { // ResourceSnapshotSummary
54
+ * // Arn: "STRING_VALUE",
55
+ * // Revision: Number("int"),
56
+ * // ResourceType: "Opportunity",
57
+ * // ResourceId: "STRING_VALUE",
58
+ * // ResourceSnapshotTemplateName: "STRING_VALUE",
59
+ * // CreatedBy: "STRING_VALUE",
60
+ * // },
61
+ * // ],
62
+ * // NextToken: "STRING_VALUE",
63
+ * // };
64
+ *
65
+ * ```
66
+ *
67
+ * @param ListResourceSnapshotsCommandInput - {@link ListResourceSnapshotsCommandInput}
68
+ * @returns {@link ListResourceSnapshotsCommandOutput}
69
+ * @see {@link ListResourceSnapshotsCommandInput} for command's `input` shape.
70
+ * @see {@link ListResourceSnapshotsCommandOutput} for command's `response` shape.
71
+ * @see {@link PartnerCentralSellingClientResolvedConfig | config} for PartnerCentralSellingClient's `config` shape.
72
+ *
73
+ * @throws {@link AccessDeniedException} (client fault)
74
+ * <p>This error occurs when you don't have permission to perform the requested
75
+ * action.</p>
76
+ * <p>You don’t have access to this action or resource. Review IAM policies or contact your
77
+ * AWS administrator for assistance.</p>
78
+ *
79
+ * @throws {@link ResourceNotFoundException} (client fault)
80
+ * <p>This error occurs when the specified resource can't be found. The resource might not
81
+ * exist, or isn't visible with the current credentials.</p>
82
+ * <p>Suggested action: Verify that the resource ID is correct and the resource is in the
83
+ * expected AWS region. Check IAM permissions for accessing the resource.</p>
84
+ *
85
+ * @throws {@link ThrottlingException} (client fault)
86
+ * <p>This error occurs when there are too many requests sent. Review the provided quotas
87
+ * and adapt your usage to avoid throttling.</p>
88
+ * <p>This error occurs when there are too many requests sent. Review the provided <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> and retry after the provided delay.</p>
89
+ *
90
+ * @throws {@link ValidationException} (client fault)
91
+ * <p>The input fails to satisfy the constraints specified by the service or business
92
+ * validation rules.</p>
93
+ * <p>Suggested action: Review the error message, including the failed fields and reasons,
94
+ * to correct the request payload.</p>
95
+ *
96
+ * @throws {@link PartnerCentralSellingServiceException}
97
+ * <p>Base exception class for all service exceptions from PartnerCentralSelling service.</p>
98
+ *
99
+ * @public
100
+ */
101
+ export declare class ListResourceSnapshotsCommand extends ListResourceSnapshotsCommand_base {
102
+ /** @internal type navigation helper, not in runtime. */
103
+ protected static __types: {
104
+ api: {
105
+ input: ListResourceSnapshotsRequest;
106
+ output: ListResourceSnapshotsResponse;
107
+ };
108
+ sdk: {
109
+ input: ListResourceSnapshotsCommandInput;
110
+ output: ListResourceSnapshotsCommandOutput;
111
+ };
112
+ };
113
+ }
@@ -27,9 +27,9 @@ declare const ListSolutionsCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>
31
- * Retrieves a list of Partner Solutions that the partner registered on Partner Central. This API is used to generate a list of solutions that an end user selects from for association with an opportunity.
32
- * </p>
30
+ * <p>Retrieves a list of Partner Solutions that the partner registered on Partner Central.
31
+ * This API is used to generate a list of solutions that an end user selects from for
32
+ * association with an opportunity.</p>
33
33
  * @example
34
34
  * Use a bare-bones client and the command you need to make an API call.
35
35
  * ```javascript
@@ -61,6 +61,7 @@ declare const ListSolutionsCommand_base: {
61
61
  * // { // SolutionBase
62
62
  * // Catalog: "STRING_VALUE", // required
63
63
  * // Id: "STRING_VALUE", // required
64
+ * // Arn: "STRING_VALUE",
64
65
  * // Name: "STRING_VALUE", // required
65
66
  * // Status: "Active" || "Inactive" || "Draft", // required
66
67
  * // Category: "STRING_VALUE", // required
@@ -79,29 +80,28 @@ declare const ListSolutionsCommand_base: {
79
80
  * @see {@link PartnerCentralSellingClientResolvedConfig | config} for PartnerCentralSellingClient's `config` shape.
80
81
  *
81
82
  * @throws {@link AccessDeniedException} (client fault)
82
- * <p>This error occurs when you don't have permission to perform the
83
- * requested action.
84
- * </p>
85
- * <p>You don’t have access to this action or resource. Review IAM policies or contact your AWS administrator for assistance.
86
- * </p>
83
+ * <p>This error occurs when you don't have permission to perform the requested
84
+ * action.</p>
85
+ * <p>You don’t have access to this action or resource. Review IAM policies or contact your
86
+ * AWS administrator for assistance.</p>
87
87
  *
88
88
  * @throws {@link InternalServerException} (server fault)
89
- * <p>This error occurs when the specified resource can’t be found or doesn't exist. Resource ID and type might be incorrect.
90
- * </p>
91
- * <p>Suggested action: This is usually a transient error. Retry after the provided retry delay or a short interval. If the problem persists, contact AWS support.
92
- * </p>
89
+ * <p>This error occurs when the specified resource can’t be found or doesn't exist.
90
+ * Resource ID and type might be incorrect.</p>
91
+ * <p>Suggested action: This is usually a transient error. Retry after the provided retry
92
+ * delay or a short interval. If the problem persists, contact AWS support.</p>
93
93
  *
94
94
  * @throws {@link ResourceNotFoundException} (client fault)
95
- * <p>This error occurs when the specified resource can't be found. The resource might not exist, or isn't visible with the current credentials.
96
- * </p>
97
- * <p>Suggested action: Verify that the resource ID is correct and the resource is in the expected AWS region. Check IAM permissions for accessing the resource.
98
- * </p>
95
+ * <p>This error occurs when the specified resource can't be found. The resource might not
96
+ * exist, or isn't visible with the current credentials.</p>
97
+ * <p>Suggested action: Verify that the resource ID is correct and the resource is in the
98
+ * expected AWS region. Check IAM permissions for accessing the resource.</p>
99
99
  *
100
100
  * @throws {@link ValidationException} (client fault)
101
- * <p>The input fails to satisfy the constraints specified by the service or business validation rules.
102
- * </p>
103
- * <p>Suggested action: Review the error message, including the failed fields and reasons, to correct the request payload.
104
- * </p>
101
+ * <p>The input fails to satisfy the constraints specified by the service or business
102
+ * validation rules.</p>
103
+ * <p>Suggested action: Review the error message, including the failed fields and reasons,
104
+ * to correct the request payload.</p>
105
105
  *
106
106
  * @throws {@link PartnerCentralSellingServiceException}
107
107
  * <p>Base exception class for all service exceptions from PartnerCentralSelling service.</p>
@@ -0,0 +1,96 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { PutSellingSystemSettingsRequest, PutSellingSystemSettingsResponse } from "../models/models_0";
4
+ import { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralSellingClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link PutSellingSystemSettingsCommand}.
14
+ */
15
+ export interface PutSellingSystemSettingsCommandInput extends PutSellingSystemSettingsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link PutSellingSystemSettingsCommand}.
21
+ */
22
+ export interface PutSellingSystemSettingsCommandOutput extends PutSellingSystemSettingsResponse, __MetadataBearer {
23
+ }
24
+ declare const PutSellingSystemSettingsCommand_base: {
25
+ new (input: PutSellingSystemSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<PutSellingSystemSettingsCommandInput, PutSellingSystemSettingsCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: PutSellingSystemSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<PutSellingSystemSettingsCommandInput, PutSellingSystemSettingsCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Updates the currently set system settings, which include the IAM Role used for resource snapshot jobs.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { PartnerCentralSellingClient, PutSellingSystemSettingsCommand } from "@aws-sdk/client-partnercentral-selling"; // ES Modules import
35
+ * // const { PartnerCentralSellingClient, PutSellingSystemSettingsCommand } = require("@aws-sdk/client-partnercentral-selling"); // CommonJS import
36
+ * const client = new PartnerCentralSellingClient(config);
37
+ * const input = { // PutSellingSystemSettingsRequest
38
+ * Catalog: "STRING_VALUE", // required
39
+ * ResourceSnapshotJobRoleIdentifier: "STRING_VALUE",
40
+ * };
41
+ * const command = new PutSellingSystemSettingsCommand(input);
42
+ * const response = await client.send(command);
43
+ * // { // PutSellingSystemSettingsResponse
44
+ * // Catalog: "STRING_VALUE", // required
45
+ * // ResourceSnapshotJobRoleArn: "STRING_VALUE",
46
+ * // };
47
+ *
48
+ * ```
49
+ *
50
+ * @param PutSellingSystemSettingsCommandInput - {@link PutSellingSystemSettingsCommandInput}
51
+ * @returns {@link PutSellingSystemSettingsCommandOutput}
52
+ * @see {@link PutSellingSystemSettingsCommandInput} for command's `input` shape.
53
+ * @see {@link PutSellingSystemSettingsCommandOutput} for command's `response` shape.
54
+ * @see {@link PartnerCentralSellingClientResolvedConfig | config} for PartnerCentralSellingClient's `config` shape.
55
+ *
56
+ * @throws {@link AccessDeniedException} (client fault)
57
+ * <p>This error occurs when you don't have permission to perform the requested
58
+ * action.</p>
59
+ * <p>You don’t have access to this action or resource. Review IAM policies or contact your
60
+ * AWS administrator for assistance.</p>
61
+ *
62
+ * @throws {@link ResourceNotFoundException} (client fault)
63
+ * <p>This error occurs when the specified resource can't be found. The resource might not
64
+ * exist, or isn't visible with the current credentials.</p>
65
+ * <p>Suggested action: Verify that the resource ID is correct and the resource is in the
66
+ * expected AWS region. Check IAM permissions for accessing the resource.</p>
67
+ *
68
+ * @throws {@link ThrottlingException} (client fault)
69
+ * <p>This error occurs when there are too many requests sent. Review the provided quotas
70
+ * and adapt your usage to avoid throttling.</p>
71
+ * <p>This error occurs when there are too many requests sent. Review the provided <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> and retry after the provided delay.</p>
72
+ *
73
+ * @throws {@link ValidationException} (client fault)
74
+ * <p>The input fails to satisfy the constraints specified by the service or business
75
+ * validation rules.</p>
76
+ * <p>Suggested action: Review the error message, including the failed fields and reasons,
77
+ * to correct the request payload.</p>
78
+ *
79
+ * @throws {@link PartnerCentralSellingServiceException}
80
+ * <p>Base exception class for all service exceptions from PartnerCentralSelling service.</p>
81
+ *
82
+ * @public
83
+ */
84
+ export declare class PutSellingSystemSettingsCommand extends PutSellingSystemSettingsCommand_base {
85
+ /** @internal type navigation helper, not in runtime. */
86
+ protected static __types: {
87
+ api: {
88
+ input: PutSellingSystemSettingsRequest;
89
+ output: PutSellingSystemSettingsResponse;
90
+ };
91
+ sdk: {
92
+ input: PutSellingSystemSettingsCommandInput;
93
+ output: PutSellingSystemSettingsCommandOutput;
94
+ };
95
+ };
96
+ }
@@ -27,10 +27,9 @@ declare const RejectEngagementInvitationCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>This action rejects an <code>EngagementInvitation</code> that AWS
31
- * shared. Rejecting an invitation indicates that the partner doesn't want to
32
- * pursue the opportunity, and all related data will become inaccessible
33
- * thereafter.</p>
30
+ * <p>This action rejects an <code>EngagementInvitation</code> that AWS shared. Rejecting an
31
+ * invitation indicates that the partner doesn't want to pursue the opportunity, and all
32
+ * related data will become inaccessible thereafter.</p>
34
33
  * @example
35
34
  * Use a bare-bones client and the command you need to make an API call.
36
35
  * ```javascript
@@ -55,37 +54,33 @@ declare const RejectEngagementInvitationCommand_base: {
55
54
  * @see {@link PartnerCentralSellingClientResolvedConfig | config} for PartnerCentralSellingClient's `config` shape.
56
55
  *
57
56
  * @throws {@link AccessDeniedException} (client fault)
58
- * <p>This error occurs when you don't have permission to perform the
59
- * requested action.
60
- * </p>
61
- * <p>You don’t have access to this action or resource. Review IAM policies or contact your AWS administrator for assistance.
62
- * </p>
57
+ * <p>This error occurs when you don't have permission to perform the requested
58
+ * action.</p>
59
+ * <p>You don’t have access to this action or resource. Review IAM policies or contact your
60
+ * AWS administrator for assistance.</p>
63
61
  *
64
62
  * @throws {@link InternalServerException} (server fault)
65
- * <p>This error occurs when the specified resource can’t be found or doesn't exist. Resource ID and type might be incorrect.
66
- * </p>
67
- * <p>Suggested action: This is usually a transient error. Retry after the provided retry delay or a short interval. If the problem persists, contact AWS support.
68
- * </p>
63
+ * <p>This error occurs when the specified resource can’t be found or doesn't exist.
64
+ * Resource ID and type might be incorrect.</p>
65
+ * <p>Suggested action: This is usually a transient error. Retry after the provided retry
66
+ * delay or a short interval. If the problem persists, contact AWS support.</p>
69
67
  *
70
68
  * @throws {@link ResourceNotFoundException} (client fault)
71
- * <p>This error occurs when the specified resource can't be found. The resource might not exist, or isn't visible with the current credentials.
72
- * </p>
73
- * <p>Suggested action: Verify that the resource ID is correct and the resource is in the expected AWS region. Check IAM permissions for accessing the resource.
74
- * </p>
69
+ * <p>This error occurs when the specified resource can't be found. The resource might not
70
+ * exist, or isn't visible with the current credentials.</p>
71
+ * <p>Suggested action: Verify that the resource ID is correct and the resource is in the
72
+ * expected AWS region. Check IAM permissions for accessing the resource.</p>
75
73
  *
76
74
  * @throws {@link ThrottlingException} (client fault)
77
- * <p>This error occurs when there are too many requests sent. Review the provided quotas and adapt your
78
- * usage to avoid throttling.
79
- * </p>
80
- * <p>This error occurs when there are too many requests sent. Review the provided
81
- * <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> and retry after the provided delay.
82
- * </p>
75
+ * <p>This error occurs when there are too many requests sent. Review the provided quotas
76
+ * and adapt your usage to avoid throttling.</p>
77
+ * <p>This error occurs when there are too many requests sent. Review the provided <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> and retry after the provided delay.</p>
83
78
  *
84
79
  * @throws {@link ValidationException} (client fault)
85
- * <p>The input fails to satisfy the constraints specified by the service or business validation rules.
86
- * </p>
87
- * <p>Suggested action: Review the error message, including the failed fields and reasons, to correct the request payload.
88
- * </p>
80
+ * <p>The input fails to satisfy the constraints specified by the service or business
81
+ * validation rules.</p>
82
+ * <p>Suggested action: Review the error message, including the failed fields and reasons,
83
+ * to correct the request payload.</p>
89
84
  *
90
85
  * @throws {@link PartnerCentralSellingServiceException}
91
86
  * <p>Base exception class for all service exceptions from PartnerCentralSelling service.</p>
@@ -27,7 +27,12 @@ declare const StartEngagementByAcceptingInvitationTaskCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>This action starts the engagement by accepting an <code>EngagementInvitation</code>. The task is asynchronous and involves the following steps: accepting the invitation, creating an opportunity in the partner’s account from the AWS opportunity, and copying details for tracking. When completed, an <code>Opportunity Created</code> event is generated, indicating that the opportunity has been successfully created in the partner's account.</p>
30
+ * <p>This action starts the engagement by accepting an <code>EngagementInvitation</code>.
31
+ * The task is asynchronous and involves the following steps: accepting the invitation,
32
+ * creating an opportunity in the partner’s account from the AWS opportunity, and copying
33
+ * details for tracking. When completed, an <code>Opportunity Created</code> event is
34
+ * generated, indicating that the opportunity has been successfully created in the
35
+ * partner's account.</p>
31
36
  * @example
32
37
  * Use a bare-bones client and the command you need to make an API call.
33
38
  * ```javascript
@@ -47,8 +52,9 @@ declare const StartEngagementByAcceptingInvitationTaskCommand_base: {
47
52
  * // StartTime: new Date("TIMESTAMP"),
48
53
  * // TaskStatus: "IN_PROGRESS" || "COMPLETE" || "FAILED",
49
54
  * // Message: "STRING_VALUE",
50
- * // ReasonCode: "InvitationAccessDenied" || "EngagementAccessDenied" || "OpportunityAccessDenied" || "ResourceSnapshotJobAccessDenied" || "EngagementValidationFailed" || "OpportunitySubmissionFailed" || "EngagementInvitationConflict" || "InternalError" || "OpportunityValidationFailed" || "OpportunityConflict" || "ResourceSnapshotAccessDenied",
55
+ * // ReasonCode: "InvitationAccessDenied" || "InvitationValidationFailed" || "EngagementAccessDenied" || "OpportunityAccessDenied" || "ResourceSnapshotJobAccessDenied" || "ResourceSnapshotJobValidationFailed" || "ResourceSnapshotJobConflict" || "EngagementValidationFailed" || "EngagementConflict" || "OpportunitySubmissionFailed" || "EngagementInvitationConflict" || "OpportunityValidationFailed" || "OpportunityConflict" || "ResourceSnapshotAccessDenied" || "ResourceSnapshotValidationFailed" || "ResourceSnapshotConflict" || "InternalError" || "ServiceQuotaExceeded" || "RequestThrottled",
51
56
  * // OpportunityId: "STRING_VALUE",
57
+ * // ResourceSnapshotJobId: "STRING_VALUE",
52
58
  * // EngagementInvitationId: "STRING_VALUE",
53
59
  * // };
54
60
  *
@@ -61,51 +67,47 @@ declare const StartEngagementByAcceptingInvitationTaskCommand_base: {
61
67
  * @see {@link PartnerCentralSellingClientResolvedConfig | config} for PartnerCentralSellingClient's `config` shape.
62
68
  *
63
69
  * @throws {@link AccessDeniedException} (client fault)
64
- * <p>This error occurs when you don't have permission to perform the
65
- * requested action.
66
- * </p>
67
- * <p>You don’t have access to this action or resource. Review IAM policies or contact your AWS administrator for assistance.
68
- * </p>
70
+ * <p>This error occurs when you don't have permission to perform the requested
71
+ * action.</p>
72
+ * <p>You don’t have access to this action or resource. Review IAM policies or contact your
73
+ * AWS administrator for assistance.</p>
69
74
  *
70
75
  * @throws {@link ConflictException} (client fault)
71
- * <p>This error occurs when the request can’t be processed due to a conflict with the target resource's current state, which could result from updating or deleting the resource.
72
- * </p>
73
- * <p>Suggested action: Fetch the latest state of the resource, verify the state, and retry the request.
74
- * </p>
76
+ * <p>This error occurs when the request can’t be processed due to a conflict with the
77
+ * target resource's current state, which could result from updating or deleting the
78
+ * resource.</p>
79
+ * <p>Suggested action: Fetch the latest state of the resource, verify the state, and retry
80
+ * the request.</p>
75
81
  *
76
82
  * @throws {@link InternalServerException} (server fault)
77
- * <p>This error occurs when the specified resource can’t be found or doesn't exist. Resource ID and type might be incorrect.
78
- * </p>
79
- * <p>Suggested action: This is usually a transient error. Retry after the provided retry delay or a short interval. If the problem persists, contact AWS support.
80
- * </p>
83
+ * <p>This error occurs when the specified resource can’t be found or doesn't exist.
84
+ * Resource ID and type might be incorrect.</p>
85
+ * <p>Suggested action: This is usually a transient error. Retry after the provided retry
86
+ * delay or a short interval. If the problem persists, contact AWS support.</p>
81
87
  *
82
88
  * @throws {@link ResourceNotFoundException} (client fault)
83
- * <p>This error occurs when the specified resource can't be found. The resource might not exist, or isn't visible with the current credentials.
84
- * </p>
85
- * <p>Suggested action: Verify that the resource ID is correct and the resource is in the expected AWS region. Check IAM permissions for accessing the resource.
86
- * </p>
89
+ * <p>This error occurs when the specified resource can't be found. The resource might not
90
+ * exist, or isn't visible with the current credentials.</p>
91
+ * <p>Suggested action: Verify that the resource ID is correct and the resource is in the
92
+ * expected AWS region. Check IAM permissions for accessing the resource.</p>
87
93
  *
88
94
  * @throws {@link ServiceQuotaExceededException} (client fault)
89
- * <p>This error occurs when the request would cause a service quota to be exceeded.
90
- * Service quotas represent the maximum allowed use of a specific resource, and this error indicates that the request would surpass that limit.
91
- * </p>
92
- * <p>Suggested action: Review the
93
- * <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> for the resource, and either reduce usage or request a quota increase.
94
- * </p>
95
+ * <p>This error occurs when the request would cause a service quota to be exceeded. Service
96
+ * quotas represent the maximum allowed use of a specific resource, and this error
97
+ * indicates that the request would surpass that limit.</p>
98
+ * <p>Suggested action: Review the <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> for the
99
+ * resource, and either reduce usage or request a quota increase.</p>
95
100
  *
96
101
  * @throws {@link ThrottlingException} (client fault)
97
- * <p>This error occurs when there are too many requests sent. Review the provided quotas and adapt your
98
- * usage to avoid throttling.
99
- * </p>
100
- * <p>This error occurs when there are too many requests sent. Review the provided
101
- * <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> and retry after the provided delay.
102
- * </p>
102
+ * <p>This error occurs when there are too many requests sent. Review the provided quotas
103
+ * and adapt your usage to avoid throttling.</p>
104
+ * <p>This error occurs when there are too many requests sent. Review the provided <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> and retry after the provided delay.</p>
103
105
  *
104
106
  * @throws {@link ValidationException} (client fault)
105
- * <p>The input fails to satisfy the constraints specified by the service or business validation rules.
106
- * </p>
107
- * <p>Suggested action: Review the error message, including the failed fields and reasons, to correct the request payload.
108
- * </p>
107
+ * <p>The input fails to satisfy the constraints specified by the service or business
108
+ * validation rules.</p>
109
+ * <p>Suggested action: Review the error message, including the failed fields and reasons,
110
+ * to correct the request payload.</p>
109
111
  *
110
112
  * @throws {@link PartnerCentralSellingServiceException}
111
113
  * <p>Base exception class for all service exceptions from PartnerCentralSelling service.</p>
@@ -27,7 +27,10 @@ declare const StartEngagementFromOpportunityTaskCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>This action initiates the engagement process from an existing opportunity by accepting the engagement invitation and creating a corresponding opportunity in the partner’s system. Similar to <code>StartEngagementByAcceptingInvitationTask</code>, this action is asynchronous and performs multiple steps before completion.</p>
30
+ * <p>This action initiates the engagement process from an existing opportunity by accepting
31
+ * the engagement invitation and creating a corresponding opportunity in the partner’s
32
+ * system. Similar to <code>StartEngagementByAcceptingInvitationTask</code>, this action is
33
+ * asynchronous and performs multiple steps before completion.</p>
31
34
  * @example
32
35
  * Use a bare-bones client and the command you need to make an API call.
33
36
  * ```javascript
@@ -51,8 +54,11 @@ declare const StartEngagementFromOpportunityTaskCommand_base: {
51
54
  * // StartTime: new Date("TIMESTAMP"),
52
55
  * // TaskStatus: "IN_PROGRESS" || "COMPLETE" || "FAILED",
53
56
  * // Message: "STRING_VALUE",
54
- * // ReasonCode: "InvitationAccessDenied" || "EngagementAccessDenied" || "OpportunityAccessDenied" || "ResourceSnapshotJobAccessDenied" || "EngagementValidationFailed" || "OpportunitySubmissionFailed" || "EngagementInvitationConflict" || "InternalError" || "OpportunityValidationFailed" || "OpportunityConflict" || "ResourceSnapshotAccessDenied",
57
+ * // ReasonCode: "InvitationAccessDenied" || "InvitationValidationFailed" || "EngagementAccessDenied" || "OpportunityAccessDenied" || "ResourceSnapshotJobAccessDenied" || "ResourceSnapshotJobValidationFailed" || "ResourceSnapshotJobConflict" || "EngagementValidationFailed" || "EngagementConflict" || "OpportunitySubmissionFailed" || "EngagementInvitationConflict" || "OpportunityValidationFailed" || "OpportunityConflict" || "ResourceSnapshotAccessDenied" || "ResourceSnapshotValidationFailed" || "ResourceSnapshotConflict" || "InternalError" || "ServiceQuotaExceeded" || "RequestThrottled",
55
58
  * // OpportunityId: "STRING_VALUE",
59
+ * // ResourceSnapshotJobId: "STRING_VALUE",
60
+ * // EngagementId: "STRING_VALUE",
61
+ * // EngagementInvitationId: "STRING_VALUE",
56
62
  * // };
57
63
  *
58
64
  * ```
@@ -64,51 +70,47 @@ declare const StartEngagementFromOpportunityTaskCommand_base: {
64
70
  * @see {@link PartnerCentralSellingClientResolvedConfig | config} for PartnerCentralSellingClient's `config` shape.
65
71
  *
66
72
  * @throws {@link AccessDeniedException} (client fault)
67
- * <p>This error occurs when you don't have permission to perform the
68
- * requested action.
69
- * </p>
70
- * <p>You don’t have access to this action or resource. Review IAM policies or contact your AWS administrator for assistance.
71
- * </p>
73
+ * <p>This error occurs when you don't have permission to perform the requested
74
+ * action.</p>
75
+ * <p>You don’t have access to this action or resource. Review IAM policies or contact your
76
+ * AWS administrator for assistance.</p>
72
77
  *
73
78
  * @throws {@link ConflictException} (client fault)
74
- * <p>This error occurs when the request can’t be processed due to a conflict with the target resource's current state, which could result from updating or deleting the resource.
75
- * </p>
76
- * <p>Suggested action: Fetch the latest state of the resource, verify the state, and retry the request.
77
- * </p>
79
+ * <p>This error occurs when the request can’t be processed due to a conflict with the
80
+ * target resource's current state, which could result from updating or deleting the
81
+ * resource.</p>
82
+ * <p>Suggested action: Fetch the latest state of the resource, verify the state, and retry
83
+ * the request.</p>
78
84
  *
79
85
  * @throws {@link InternalServerException} (server fault)
80
- * <p>This error occurs when the specified resource can’t be found or doesn't exist. Resource ID and type might be incorrect.
81
- * </p>
82
- * <p>Suggested action: This is usually a transient error. Retry after the provided retry delay or a short interval. If the problem persists, contact AWS support.
83
- * </p>
86
+ * <p>This error occurs when the specified resource can’t be found or doesn't exist.
87
+ * Resource ID and type might be incorrect.</p>
88
+ * <p>Suggested action: This is usually a transient error. Retry after the provided retry
89
+ * delay or a short interval. If the problem persists, contact AWS support.</p>
84
90
  *
85
91
  * @throws {@link ResourceNotFoundException} (client fault)
86
- * <p>This error occurs when the specified resource can't be found. The resource might not exist, or isn't visible with the current credentials.
87
- * </p>
88
- * <p>Suggested action: Verify that the resource ID is correct and the resource is in the expected AWS region. Check IAM permissions for accessing the resource.
89
- * </p>
92
+ * <p>This error occurs when the specified resource can't be found. The resource might not
93
+ * exist, or isn't visible with the current credentials.</p>
94
+ * <p>Suggested action: Verify that the resource ID is correct and the resource is in the
95
+ * expected AWS region. Check IAM permissions for accessing the resource.</p>
90
96
  *
91
97
  * @throws {@link ServiceQuotaExceededException} (client fault)
92
- * <p>This error occurs when the request would cause a service quota to be exceeded.
93
- * Service quotas represent the maximum allowed use of a specific resource, and this error indicates that the request would surpass that limit.
94
- * </p>
95
- * <p>Suggested action: Review the
96
- * <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> for the resource, and either reduce usage or request a quota increase.
97
- * </p>
98
+ * <p>This error occurs when the request would cause a service quota to be exceeded. Service
99
+ * quotas represent the maximum allowed use of a specific resource, and this error
100
+ * indicates that the request would surpass that limit.</p>
101
+ * <p>Suggested action: Review the <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> for the
102
+ * resource, and either reduce usage or request a quota increase.</p>
98
103
  *
99
104
  * @throws {@link ThrottlingException} (client fault)
100
- * <p>This error occurs when there are too many requests sent. Review the provided quotas and adapt your
101
- * usage to avoid throttling.
102
- * </p>
103
- * <p>This error occurs when there are too many requests sent. Review the provided
104
- * <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> and retry after the provided delay.
105
- * </p>
105
+ * <p>This error occurs when there are too many requests sent. Review the provided quotas
106
+ * and adapt your usage to avoid throttling.</p>
107
+ * <p>This error occurs when there are too many requests sent. Review the provided <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> and retry after the provided delay.</p>
106
108
  *
107
109
  * @throws {@link ValidationException} (client fault)
108
- * <p>The input fails to satisfy the constraints specified by the service or business validation rules.
109
- * </p>
110
- * <p>Suggested action: Review the error message, including the failed fields and reasons, to correct the request payload.
111
- * </p>
110
+ * <p>The input fails to satisfy the constraints specified by the service or business
111
+ * validation rules.</p>
112
+ * <p>Suggested action: Review the error message, including the failed fields and reasons,
113
+ * to correct the request payload.</p>
112
114
  *
113
115
  * @throws {@link PartnerCentralSellingServiceException}
114
116
  * <p>Base exception class for all service exceptions from PartnerCentralSelling service.</p>