@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.
- package/README.md +206 -45
- package/dist-cjs/PartnerCentralSelling.js +42 -0
- package/dist-cjs/commands/AcceptEngagementInvitationCommand.js +26 -0
- package/dist-cjs/commands/CreateEngagementCommand.js +27 -0
- package/dist-cjs/commands/CreateEngagementInvitationCommand.js +27 -0
- package/dist-cjs/commands/CreateResourceSnapshotCommand.js +26 -0
- package/dist-cjs/commands/CreateResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/DeleteResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/GetEngagementCommand.js +27 -0
- package/dist-cjs/commands/GetResourceSnapshotCommand.js +27 -0
- package/dist-cjs/commands/GetResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/GetSellingSystemSettingsCommand.js +26 -0
- package/dist-cjs/commands/ListEngagementByAcceptingInvitationTasksCommand.js +26 -0
- package/dist-cjs/commands/ListEngagementFromOpportunityTasksCommand.js +26 -0
- package/dist-cjs/commands/ListEngagementInvitationsCommand.js +1 -1
- package/dist-cjs/commands/ListEngagementMembersCommand.js +27 -0
- package/dist-cjs/commands/ListEngagementResourceAssociationsCommand.js +27 -0
- package/dist-cjs/commands/ListEngagementsCommand.js +27 -0
- package/dist-cjs/commands/ListResourceSnapshotJobsCommand.js +26 -0
- package/dist-cjs/commands/ListResourceSnapshotsCommand.js +27 -0
- package/dist-cjs/commands/PutSellingSystemSettingsCommand.js +26 -0
- package/dist-cjs/commands/StartResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/StopResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/SubmitOpportunityCommand.js +26 -0
- package/dist-cjs/commands/index.js +21 -0
- package/dist-cjs/models/models_0.js +281 -87
- package/dist-cjs/pagination/ListEngagementByAcceptingInvitationTasksPaginator.js +7 -0
- package/dist-cjs/pagination/ListEngagementFromOpportunityTasksPaginator.js +7 -0
- package/dist-cjs/pagination/ListEngagementMembersPaginator.js +7 -0
- package/dist-cjs/pagination/ListEngagementResourceAssociationsPaginator.js +7 -0
- package/dist-cjs/pagination/ListEngagementsPaginator.js +7 -0
- package/dist-cjs/pagination/ListResourceSnapshotJobsPaginator.js +7 -0
- package/dist-cjs/pagination/ListResourceSnapshotsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_json1_0.js +599 -1
- package/dist-es/PartnerCentralSelling.js +42 -0
- package/dist-es/commands/AcceptEngagementInvitationCommand.js +22 -0
- package/dist-es/commands/CreateEngagementCommand.js +23 -0
- package/dist-es/commands/CreateEngagementInvitationCommand.js +23 -0
- package/dist-es/commands/CreateResourceSnapshotCommand.js +22 -0
- package/dist-es/commands/CreateResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/DeleteResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/GetEngagementCommand.js +23 -0
- package/dist-es/commands/GetResourceSnapshotCommand.js +23 -0
- package/dist-es/commands/GetResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/GetSellingSystemSettingsCommand.js +22 -0
- package/dist-es/commands/ListEngagementByAcceptingInvitationTasksCommand.js +22 -0
- package/dist-es/commands/ListEngagementFromOpportunityTasksCommand.js +22 -0
- package/dist-es/commands/ListEngagementInvitationsCommand.js +2 -2
- package/dist-es/commands/ListEngagementMembersCommand.js +23 -0
- package/dist-es/commands/ListEngagementResourceAssociationsCommand.js +23 -0
- package/dist-es/commands/ListEngagementsCommand.js +23 -0
- package/dist-es/commands/ListResourceSnapshotJobsCommand.js +22 -0
- package/dist-es/commands/ListResourceSnapshotsCommand.js +23 -0
- package/dist-es/commands/PutSellingSystemSettingsCommand.js +22 -0
- package/dist-es/commands/StartResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/StopResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/SubmitOpportunityCommand.js +22 -0
- package/dist-es/commands/index.js +21 -0
- package/dist-es/models/models_0.js +249 -81
- package/dist-es/pagination/ListEngagementByAcceptingInvitationTasksPaginator.js +4 -0
- package/dist-es/pagination/ListEngagementFromOpportunityTasksPaginator.js +4 -0
- package/dist-es/pagination/ListEngagementMembersPaginator.js +4 -0
- package/dist-es/pagination/ListEngagementResourceAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListEngagementsPaginator.js +4 -0
- package/dist-es/pagination/ListResourceSnapshotJobsPaginator.js +4 -0
- package/dist-es/pagination/ListResourceSnapshotsPaginator.js +4 -0
- package/dist-es/pagination/index.js +7 -0
- package/dist-es/protocols/Aws_json1_0.js +556 -1
- package/dist-types/PartnerCentralSelling.d.ts +182 -42
- package/dist-types/PartnerCentralSellingClient.d.ts +58 -44
- package/dist-types/commands/AcceptEngagementInvitationCommand.d.ts +103 -0
- package/dist-types/commands/AssignOpportunityCommand.d.ts +27 -32
- package/dist-types/commands/AssociateOpportunityCommand.d.ts +40 -46
- package/dist-types/commands/CreateEngagementCommand.d.ts +136 -0
- package/dist-types/commands/CreateEngagementInvitationCommand.d.ts +158 -0
- package/dist-types/commands/CreateOpportunityCommand.d.ts +40 -46
- package/dist-types/commands/CreateResourceSnapshotCommand.d.ts +117 -0
- package/dist-types/commands/CreateResourceSnapshotJobCommand.d.ts +119 -0
- package/dist-types/commands/DeleteResourceSnapshotJobCommand.d.ts +96 -0
- package/dist-types/commands/DisassociateOpportunityCommand.d.ts +29 -34
- package/dist-types/commands/GetAwsOpportunitySummaryCommand.d.ts +24 -28
- package/dist-types/commands/GetEngagementCommand.d.ts +124 -0
- package/dist-types/commands/GetEngagementInvitationCommand.d.ts +34 -24
- package/dist-types/commands/GetOpportunityCommand.d.ts +24 -29
- package/dist-types/commands/GetResourceSnapshotCommand.d.ts +186 -0
- package/dist-types/commands/GetResourceSnapshotJobCommand.d.ts +109 -0
- package/dist-types/commands/GetSellingSystemSettingsCommand.d.ts +95 -0
- package/dist-types/commands/ListEngagementByAcceptingInvitationTasksCommand.d.ts +128 -0
- package/dist-types/commands/ListEngagementFromOpportunityTasksCommand.d.ts +129 -0
- package/dist-types/commands/ListEngagementInvitationsCommand.d.ts +34 -25
- package/dist-types/commands/ListEngagementMembersCommand.d.ts +109 -0
- package/dist-types/commands/ListEngagementResourceAssociationsCommand.d.ts +112 -0
- package/dist-types/commands/ListEngagementsCommand.d.ts +123 -0
- package/dist-types/commands/ListOpportunitiesCommand.d.ts +35 -39
- package/dist-types/commands/ListResourceSnapshotJobsCommand.d.ts +108 -0
- package/dist-types/commands/ListResourceSnapshotsCommand.d.ts +113 -0
- package/dist-types/commands/ListSolutionsCommand.d.ts +20 -20
- package/dist-types/commands/PutSellingSystemSettingsCommand.d.ts +96 -0
- package/dist-types/commands/RejectEngagementInvitationCommand.d.ts +22 -27
- package/dist-types/commands/StartEngagementByAcceptingInvitationTaskCommand.d.ts +37 -35
- package/dist-types/commands/StartEngagementFromOpportunityTaskCommand.d.ts +37 -35
- package/dist-types/commands/StartResourceSnapshotJobCommand.d.ts +95 -0
- package/dist-types/commands/StopResourceSnapshotJobCommand.d.ts +95 -0
- package/dist-types/commands/SubmitOpportunityCommand.d.ts +106 -0
- package/dist-types/commands/UpdateOpportunityCommand.d.ts +33 -35
- package/dist-types/commands/index.d.ts +21 -0
- package/dist-types/index.d.ts +35 -42
- package/dist-types/models/models_0.d.ts +4764 -2209
- package/dist-types/pagination/ListEngagementByAcceptingInvitationTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEngagementFromOpportunityTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEngagementMembersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEngagementResourceAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEngagementsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListResourceSnapshotJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListResourceSnapshotsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +7 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +189 -0
- package/dist-types/ts3.4/PartnerCentralSelling.d.ts +375 -0
- package/dist-types/ts3.4/PartnerCentralSellingClient.d.ts +126 -0
- package/dist-types/ts3.4/commands/AcceptEngagementInvitationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateEngagementCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateEngagementInvitationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateResourceSnapshotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateResourceSnapshotJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteResourceSnapshotJobCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetEngagementCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetResourceSnapshotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetResourceSnapshotJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSellingSystemSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementByAcceptingInvitationTasksCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementFromOpportunityTasksCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementMembersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementResourceAssociationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListResourceSnapshotJobsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListResourceSnapshotsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutSellingSystemSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartResourceSnapshotJobCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/StopResourceSnapshotJobCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/SubmitOpportunityCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/index.d.ts +21 -0
- package/dist-types/ts3.4/models/models_0.d.ts +587 -86
- package/dist-types/ts3.4/pagination/ListEngagementByAcceptingInvitationTasksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEngagementFromOpportunityTasksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEngagementMembersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEngagementResourceAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEngagementsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListResourceSnapshotJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListResourceSnapshotsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +252 -0
- 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
|
-
*
|
|
32
|
-
*
|
|
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
|
-
*
|
|
84
|
-
*
|
|
85
|
-
*
|
|
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.
|
|
90
|
-
*
|
|
91
|
-
* <p>Suggested action: This is usually a transient error. Retry after the provided retry
|
|
92
|
-
*
|
|
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
|
|
96
|
-
*
|
|
97
|
-
* <p>Suggested action: Verify that the resource ID is correct and the resource is in the
|
|
98
|
-
*
|
|
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
|
|
102
|
-
*
|
|
103
|
-
* <p>Suggested action: Review the error message, including the failed fields and reasons,
|
|
104
|
-
*
|
|
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
|
-
*
|
|
32
|
-
*
|
|
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
|
-
*
|
|
60
|
-
*
|
|
61
|
-
*
|
|
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.
|
|
66
|
-
*
|
|
67
|
-
* <p>Suggested action: This is usually a transient error. Retry after the provided retry
|
|
68
|
-
*
|
|
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
|
|
72
|
-
*
|
|
73
|
-
* <p>Suggested action: Verify that the resource ID is correct and the resource is in the
|
|
74
|
-
*
|
|
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
|
|
78
|
-
* usage to avoid throttling
|
|
79
|
-
*
|
|
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
|
|
86
|
-
*
|
|
87
|
-
* <p>Suggested action: Review the error message, including the failed fields and reasons,
|
|
88
|
-
*
|
|
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>.
|
|
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" || "
|
|
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
|
-
*
|
|
66
|
-
*
|
|
67
|
-
*
|
|
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
|
|
72
|
-
*
|
|
73
|
-
*
|
|
74
|
-
*
|
|
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.
|
|
78
|
-
*
|
|
79
|
-
* <p>Suggested action: This is usually a transient error. Retry after the provided retry
|
|
80
|
-
*
|
|
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
|
|
84
|
-
*
|
|
85
|
-
* <p>Suggested action: Verify that the resource ID is correct and the resource is in the
|
|
86
|
-
*
|
|
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
|
-
*
|
|
91
|
-
*
|
|
92
|
-
* <p>Suggested action: Review the
|
|
93
|
-
*
|
|
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
|
|
98
|
-
* usage to avoid throttling
|
|
99
|
-
*
|
|
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
|
|
106
|
-
*
|
|
107
|
-
* <p>Suggested action: Review the error message, including the failed fields and reasons,
|
|
108
|
-
*
|
|
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
|
|
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" || "
|
|
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
|
-
*
|
|
69
|
-
*
|
|
70
|
-
*
|
|
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
|
|
75
|
-
*
|
|
76
|
-
*
|
|
77
|
-
*
|
|
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.
|
|
81
|
-
*
|
|
82
|
-
* <p>Suggested action: This is usually a transient error. Retry after the provided retry
|
|
83
|
-
*
|
|
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
|
|
87
|
-
*
|
|
88
|
-
* <p>Suggested action: Verify that the resource ID is correct and the resource is in the
|
|
89
|
-
*
|
|
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
|
-
*
|
|
94
|
-
*
|
|
95
|
-
* <p>Suggested action: Review the
|
|
96
|
-
*
|
|
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
|
|
101
|
-
* usage to avoid throttling
|
|
102
|
-
*
|
|
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
|
|
109
|
-
*
|
|
110
|
-
* <p>Suggested action: Review the error message, including the failed fields and reasons,
|
|
111
|
-
*
|
|
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>
|